react-dom 15.4.0-rc.3 → 15.4.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-dom-server.js +420 -364
- package/dist/react-dom-server.min.js +5 -5
- package/dist/react-dom.js +519 -464
- package/dist/react-dom.min.js +5 -5
- package/lib/EventPluginHub.js +27 -0
- package/lib/PooledClass.js +1 -13
- package/lib/ReactChildFiber.js +7 -9
- package/lib/ReactCompositeComponent.js +3 -3
- package/lib/ReactDOMComponent.js +10 -4
- package/lib/ReactDOMComponentTree.js +8 -1
- package/lib/ReactDOMInput.js +11 -1
- package/lib/ReactDOMTextarea.js +9 -3
- package/lib/ReactDOMUMDEntry.js +10 -9
- package/lib/ReactDebugTool.js +5 -6
- package/lib/ReactFiber.js +9 -9
- package/lib/ReactFiberBeginWork.js +26 -31
- package/lib/ReactFiberCommitWork.js +5 -7
- package/lib/ReactFiberCompleteWork.js +13 -14
- package/lib/ReactFiberReconciler.js +5 -8
- package/lib/ReactFiberRoot.js +2 -4
- package/lib/ReactFiberScheduler.js +13 -20
- package/lib/ReactHostComponent.js +1 -9
- package/lib/ReactInstanceType.js +9 -10
- package/lib/ReactOwner.js +2 -2
- package/lib/ReactPerf.js +45 -45
- package/lib/ReactReconciler.js +2 -2
- package/lib/ReactRef.js +5 -5
- package/lib/ReactReifiedYield.js +2 -4
- package/lib/ReactShallowRenderer.js +3 -4
- package/lib/ReactTestUtils.js +2 -2
- package/lib/ReactVersion.js +1 -1
- package/lib/ResponderTouchHistoryStore.js +3 -3
- package/lib/SimpleEventPlugin.js +1 -16
- package/lib/getNextDebugID.js +20 -0
- package/lib/instantiateReactComponent.js +13 -4
- package/lib/renderSubtreeIntoContainer.js +1 -2
- package/package.json +2 -2
package/dist/react-dom-server.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ReactDOMServer v15.4.
|
|
2
|
+
* ReactDOMServer v15.4.2
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
;(function(f) {
|
|
6
6
|
// CommonJS
|
|
7
7
|
if (typeof exports === "object" && typeof module !== "undefined") {
|
|
8
|
-
f(require('react'));
|
|
8
|
+
module.exports = f(require('react'));
|
|
9
9
|
|
|
10
10
|
// RequireJS
|
|
11
11
|
} else if (typeof define === "function" && define.amd) {
|
|
12
|
-
|
|
12
|
+
define(['react'], f);
|
|
13
13
|
|
|
14
14
|
// <script>
|
|
15
15
|
} else {
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
// see https://github.com/facebook/react/issues/3037
|
|
27
27
|
g = this;
|
|
28
28
|
}
|
|
29
|
-
f(g.React)
|
|
29
|
+
g.ReactDOMServer = f(g.React);
|
|
30
30
|
}
|
|
31
31
|
})(function(React) {
|
|
32
|
-
|
|
32
|
+
return (function(f){return 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){
|
|
33
33
|
/**
|
|
34
34
|
* Copyright 2013-present, Facebook, Inc.
|
|
35
35
|
* All rights reserved.
|
|
@@ -118,7 +118,7 @@ module.exports = ARIADOMPropertyConfig;
|
|
|
118
118
|
|
|
119
119
|
var ReactDOMComponentTree = _dereq_(32);
|
|
120
120
|
|
|
121
|
-
var focusNode = _dereq_(
|
|
121
|
+
var focusNode = _dereq_(134);
|
|
122
122
|
|
|
123
123
|
var AutoFocusUtils = {
|
|
124
124
|
focusDOMComponent: function () {
|
|
@@ -127,7 +127,7 @@ var AutoFocusUtils = {
|
|
|
127
127
|
};
|
|
128
128
|
|
|
129
129
|
module.exports = AutoFocusUtils;
|
|
130
|
-
},{"
|
|
130
|
+
},{"134":134,"32":32}],3:[function(_dereq_,module,exports){
|
|
131
131
|
/**
|
|
132
132
|
* Copyright 2013-present Facebook, Inc.
|
|
133
133
|
* All rights reserved.
|
|
@@ -141,7 +141,7 @@ module.exports = AutoFocusUtils;
|
|
|
141
141
|
'use strict';
|
|
142
142
|
|
|
143
143
|
var EventPropagators = _dereq_(19);
|
|
144
|
-
var ExecutionEnvironment = _dereq_(
|
|
144
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
145
145
|
var FallbackCompositionState = _dereq_(20);
|
|
146
146
|
var SyntheticCompositionEvent = _dereq_(82);
|
|
147
147
|
var SyntheticInputEvent = _dereq_(86);
|
|
@@ -512,7 +512,7 @@ var BeforeInputEventPlugin = {
|
|
|
512
512
|
};
|
|
513
513
|
|
|
514
514
|
module.exports = BeforeInputEventPlugin;
|
|
515
|
-
},{"
|
|
515
|
+
},{"126":126,"19":19,"20":20,"82":82,"86":86}],4:[function(_dereq_,module,exports){
|
|
516
516
|
/**
|
|
517
517
|
* Copyright 2013-present, Facebook, Inc.
|
|
518
518
|
* All rights reserved.
|
|
@@ -674,14 +674,14 @@ module.exports = CSSProperty;
|
|
|
674
674
|
'use strict';
|
|
675
675
|
|
|
676
676
|
var CSSProperty = _dereq_(4);
|
|
677
|
-
var ExecutionEnvironment = _dereq_(
|
|
677
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
678
678
|
var ReactInstrumentation = _dereq_(59);
|
|
679
679
|
|
|
680
|
-
var camelizeStyleName = _dereq_(
|
|
680
|
+
var camelizeStyleName = _dereq_(128);
|
|
681
681
|
var dangerousStyleValue = _dereq_(99);
|
|
682
|
-
var hyphenateStyleName = _dereq_(
|
|
683
|
-
var memoizeStringOnly = _dereq_(
|
|
684
|
-
var warning = _dereq_(
|
|
682
|
+
var hyphenateStyleName = _dereq_(139);
|
|
683
|
+
var memoizeStringOnly = _dereq_(143);
|
|
684
|
+
var warning = _dereq_(147);
|
|
685
685
|
|
|
686
686
|
var processStyleName = memoizeStringOnly(function (styleName) {
|
|
687
687
|
return hyphenateStyleName(styleName);
|
|
@@ -869,7 +869,7 @@ var CSSPropertyOperations = {
|
|
|
869
869
|
};
|
|
870
870
|
|
|
871
871
|
module.exports = CSSPropertyOperations;
|
|
872
|
-
},{"
|
|
872
|
+
},{"126":126,"128":128,"139":139,"143":143,"147":147,"4":4,"59":59,"99":99}],6:[function(_dereq_,module,exports){
|
|
873
873
|
/**
|
|
874
874
|
* Copyright 2013-present, Facebook, Inc.
|
|
875
875
|
* All rights reserved.
|
|
@@ -883,13 +883,13 @@ module.exports = CSSPropertyOperations;
|
|
|
883
883
|
|
|
884
884
|
'use strict';
|
|
885
885
|
|
|
886
|
-
var _prodInvariant = _dereq_(
|
|
886
|
+
var _prodInvariant = _dereq_(116);
|
|
887
887
|
|
|
888
888
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
889
889
|
|
|
890
890
|
var PooledClass = _dereq_(24);
|
|
891
891
|
|
|
892
|
-
var invariant = _dereq_(
|
|
892
|
+
var invariant = _dereq_(140);
|
|
893
893
|
|
|
894
894
|
/**
|
|
895
895
|
* A specialized pseudo-event module to help keep track of components waiting to
|
|
@@ -988,7 +988,7 @@ var CallbackQueue = function () {
|
|
|
988
988
|
}();
|
|
989
989
|
|
|
990
990
|
module.exports = PooledClass.addPoolingTo(CallbackQueue);
|
|
991
|
-
},{"
|
|
991
|
+
},{"116":116,"140":140,"24":24}],7:[function(_dereq_,module,exports){
|
|
992
992
|
/**
|
|
993
993
|
* Copyright 2013-present, Facebook, Inc.
|
|
994
994
|
* All rights reserved.
|
|
@@ -1003,14 +1003,14 @@ module.exports = PooledClass.addPoolingTo(CallbackQueue);
|
|
|
1003
1003
|
|
|
1004
1004
|
var EventPluginHub = _dereq_(16);
|
|
1005
1005
|
var EventPropagators = _dereq_(19);
|
|
1006
|
-
var ExecutionEnvironment = _dereq_(
|
|
1006
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
1007
1007
|
var ReactDOMComponentTree = _dereq_(32);
|
|
1008
1008
|
var ReactUpdates = _dereq_(75);
|
|
1009
1009
|
var SyntheticEvent = _dereq_(84);
|
|
1010
1010
|
|
|
1011
1011
|
var getEventTarget = _dereq_(106);
|
|
1012
|
-
var isEventSupported = _dereq_(
|
|
1013
|
-
var isTextInputElement = _dereq_(
|
|
1012
|
+
var isEventSupported = _dereq_(113);
|
|
1013
|
+
var isTextInputElement = _dereq_(114);
|
|
1014
1014
|
|
|
1015
1015
|
var eventTypes = {
|
|
1016
1016
|
change: {
|
|
@@ -1309,7 +1309,7 @@ var ChangeEventPlugin = {
|
|
|
1309
1309
|
};
|
|
1310
1310
|
|
|
1311
1311
|
module.exports = ChangeEventPlugin;
|
|
1312
|
-
},{"106":106,"
|
|
1312
|
+
},{"106":106,"113":113,"114":114,"126":126,"16":16,"19":19,"32":32,"75":75,"84":84}],8:[function(_dereq_,module,exports){
|
|
1313
1313
|
/**
|
|
1314
1314
|
* Copyright 2013-present, Facebook, Inc.
|
|
1315
1315
|
* All rights reserved.
|
|
@@ -1328,8 +1328,8 @@ var ReactDOMComponentTree = _dereq_(32);
|
|
|
1328
1328
|
var ReactInstrumentation = _dereq_(59);
|
|
1329
1329
|
|
|
1330
1330
|
var createMicrosoftUnsafeLocalFunction = _dereq_(98);
|
|
1331
|
-
var setInnerHTML = _dereq_(
|
|
1332
|
-
var setTextContent = _dereq_(
|
|
1331
|
+
var setInnerHTML = _dereq_(117);
|
|
1332
|
+
var setTextContent = _dereq_(118);
|
|
1333
1333
|
|
|
1334
1334
|
function getNodeAfter(parentNode, node) {
|
|
1335
1335
|
// Special case for text components, which return [open, close] comments
|
|
@@ -1534,7 +1534,7 @@ var DOMChildrenOperations = {
|
|
|
1534
1534
|
};
|
|
1535
1535
|
|
|
1536
1536
|
module.exports = DOMChildrenOperations;
|
|
1537
|
-
},{"
|
|
1537
|
+
},{"117":117,"118":118,"13":13,"32":32,"59":59,"9":9,"98":98}],9:[function(_dereq_,module,exports){
|
|
1538
1538
|
/**
|
|
1539
1539
|
* Copyright 2015-present, Facebook, Inc.
|
|
1540
1540
|
* All rights reserved.
|
|
@@ -1548,10 +1548,10 @@ module.exports = DOMChildrenOperations;
|
|
|
1548
1548
|
'use strict';
|
|
1549
1549
|
|
|
1550
1550
|
var DOMNamespaces = _dereq_(10);
|
|
1551
|
-
var setInnerHTML = _dereq_(
|
|
1551
|
+
var setInnerHTML = _dereq_(117);
|
|
1552
1552
|
|
|
1553
1553
|
var createMicrosoftUnsafeLocalFunction = _dereq_(98);
|
|
1554
|
-
var setTextContent = _dereq_(
|
|
1554
|
+
var setTextContent = _dereq_(118);
|
|
1555
1555
|
|
|
1556
1556
|
var ELEMENT_NODE_TYPE = 1;
|
|
1557
1557
|
var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
|
|
@@ -1652,7 +1652,7 @@ DOMLazyTree.queueHTML = queueHTML;
|
|
|
1652
1652
|
DOMLazyTree.queueText = queueText;
|
|
1653
1653
|
|
|
1654
1654
|
module.exports = DOMLazyTree;
|
|
1655
|
-
},{"10":10,"
|
|
1655
|
+
},{"10":10,"117":117,"118":118,"98":98}],10:[function(_dereq_,module,exports){
|
|
1656
1656
|
/**
|
|
1657
1657
|
* Copyright 2013-present, Facebook, Inc.
|
|
1658
1658
|
* All rights reserved.
|
|
@@ -1685,9 +1685,9 @@ module.exports = DOMNamespaces;
|
|
|
1685
1685
|
|
|
1686
1686
|
'use strict';
|
|
1687
1687
|
|
|
1688
|
-
var _prodInvariant = _dereq_(
|
|
1688
|
+
var _prodInvariant = _dereq_(116);
|
|
1689
1689
|
|
|
1690
|
-
var invariant = _dereq_(
|
|
1690
|
+
var invariant = _dereq_(140);
|
|
1691
1691
|
|
|
1692
1692
|
function checkMask(value, bitmask) {
|
|
1693
1693
|
return (value & bitmask) === bitmask;
|
|
@@ -1882,7 +1882,7 @@ var DOMProperty = {
|
|
|
1882
1882
|
};
|
|
1883
1883
|
|
|
1884
1884
|
module.exports = DOMProperty;
|
|
1885
|
-
},{"
|
|
1885
|
+
},{"116":116,"140":140}],12:[function(_dereq_,module,exports){
|
|
1886
1886
|
/**
|
|
1887
1887
|
* Copyright 2013-present, Facebook, Inc.
|
|
1888
1888
|
* All rights reserved.
|
|
@@ -1899,8 +1899,8 @@ var DOMProperty = _dereq_(11);
|
|
|
1899
1899
|
var ReactDOMComponentTree = _dereq_(32);
|
|
1900
1900
|
var ReactInstrumentation = _dereq_(59);
|
|
1901
1901
|
|
|
1902
|
-
var quoteAttributeValueForBrowser = _dereq_(
|
|
1903
|
-
var warning = _dereq_(
|
|
1902
|
+
var quoteAttributeValueForBrowser = _dereq_(115);
|
|
1903
|
+
var warning = _dereq_(147);
|
|
1904
1904
|
|
|
1905
1905
|
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
|
1906
1906
|
var illegalAttributeNameCache = {};
|
|
@@ -2119,7 +2119,7 @@ var DOMPropertyOperations = {
|
|
|
2119
2119
|
};
|
|
2120
2120
|
|
|
2121
2121
|
module.exports = DOMPropertyOperations;
|
|
2122
|
-
},{"11":11,"
|
|
2122
|
+
},{"11":11,"115":115,"147":147,"32":32,"59":59}],13:[function(_dereq_,module,exports){
|
|
2123
2123
|
/**
|
|
2124
2124
|
* Copyright 2013-present, Facebook, Inc.
|
|
2125
2125
|
* All rights reserved.
|
|
@@ -2132,14 +2132,14 @@ module.exports = DOMPropertyOperations;
|
|
|
2132
2132
|
|
|
2133
2133
|
'use strict';
|
|
2134
2134
|
|
|
2135
|
-
var _prodInvariant = _dereq_(
|
|
2135
|
+
var _prodInvariant = _dereq_(116);
|
|
2136
2136
|
|
|
2137
2137
|
var DOMLazyTree = _dereq_(9);
|
|
2138
|
-
var ExecutionEnvironment = _dereq_(
|
|
2138
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
2139
2139
|
|
|
2140
|
-
var createNodesFromMarkup = _dereq_(
|
|
2141
|
-
var emptyFunction = _dereq_(
|
|
2142
|
-
var invariant = _dereq_(
|
|
2140
|
+
var createNodesFromMarkup = _dereq_(131);
|
|
2141
|
+
var emptyFunction = _dereq_(132);
|
|
2142
|
+
var invariant = _dereq_(140);
|
|
2143
2143
|
|
|
2144
2144
|
var Danger = {
|
|
2145
2145
|
|
|
@@ -2167,7 +2167,7 @@ var Danger = {
|
|
|
2167
2167
|
};
|
|
2168
2168
|
|
|
2169
2169
|
module.exports = Danger;
|
|
2170
|
-
},{"
|
|
2170
|
+
},{"116":116,"126":126,"131":131,"132":132,"140":140,"9":9}],14:[function(_dereq_,module,exports){
|
|
2171
2171
|
/**
|
|
2172
2172
|
* Copyright 2013-present, Facebook, Inc.
|
|
2173
2173
|
* All rights reserved.
|
|
@@ -2306,7 +2306,7 @@ module.exports = EnterLeaveEventPlugin;
|
|
|
2306
2306
|
|
|
2307
2307
|
'use strict';
|
|
2308
2308
|
|
|
2309
|
-
var _prodInvariant = _dereq_(
|
|
2309
|
+
var _prodInvariant = _dereq_(116);
|
|
2310
2310
|
|
|
2311
2311
|
var EventPluginRegistry = _dereq_(17);
|
|
2312
2312
|
var EventPluginUtils = _dereq_(18);
|
|
@@ -2314,7 +2314,7 @@ var ReactErrorUtils = _dereq_(50);
|
|
|
2314
2314
|
|
|
2315
2315
|
var accumulateInto = _dereq_(95);
|
|
2316
2316
|
var forEachAccumulated = _dereq_(102);
|
|
2317
|
-
var invariant = _dereq_(
|
|
2317
|
+
var invariant = _dereq_(140);
|
|
2318
2318
|
|
|
2319
2319
|
/**
|
|
2320
2320
|
* Internal store for event listeners
|
|
@@ -2356,6 +2356,28 @@ var getDictionaryKey = function (inst) {
|
|
|
2356
2356
|
return '.' + inst._rootNodeID;
|
|
2357
2357
|
};
|
|
2358
2358
|
|
|
2359
|
+
function isInteractive(tag) {
|
|
2360
|
+
return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
function shouldPreventMouseEvent(name, type, props) {
|
|
2364
|
+
switch (name) {
|
|
2365
|
+
case 'onClick':
|
|
2366
|
+
case 'onClickCapture':
|
|
2367
|
+
case 'onDoubleClick':
|
|
2368
|
+
case 'onDoubleClickCapture':
|
|
2369
|
+
case 'onMouseDown':
|
|
2370
|
+
case 'onMouseDownCapture':
|
|
2371
|
+
case 'onMouseMove':
|
|
2372
|
+
case 'onMouseMoveCapture':
|
|
2373
|
+
case 'onMouseUp':
|
|
2374
|
+
case 'onMouseUpCapture':
|
|
2375
|
+
return !!(props.disabled && isInteractive(type));
|
|
2376
|
+
default:
|
|
2377
|
+
return false;
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2359
2381
|
/**
|
|
2360
2382
|
* This is a unified interface for event plugins to be installed and configured.
|
|
2361
2383
|
*
|
|
@@ -2424,7 +2446,12 @@ var EventPluginHub = {
|
|
|
2424
2446
|
* @return {?function} The stored callback.
|
|
2425
2447
|
*/
|
|
2426
2448
|
getListener: function (inst, registrationName) {
|
|
2449
|
+
// TODO: shouldPreventMouseEvent is DOM-specific and definitely should not
|
|
2450
|
+
// live here; needs to be moved to a better place soon
|
|
2427
2451
|
var bankForRegistrationName = listenerBank[registrationName];
|
|
2452
|
+
if (shouldPreventMouseEvent(registrationName, inst._currentElement.type, inst._currentElement.props)) {
|
|
2453
|
+
return null;
|
|
2454
|
+
}
|
|
2428
2455
|
var key = getDictionaryKey(inst);
|
|
2429
2456
|
return bankForRegistrationName && bankForRegistrationName[key];
|
|
2430
2457
|
},
|
|
@@ -2544,7 +2571,7 @@ var EventPluginHub = {
|
|
|
2544
2571
|
};
|
|
2545
2572
|
|
|
2546
2573
|
module.exports = EventPluginHub;
|
|
2547
|
-
},{"102":102,"
|
|
2574
|
+
},{"102":102,"116":116,"140":140,"17":17,"18":18,"50":50,"95":95}],17:[function(_dereq_,module,exports){
|
|
2548
2575
|
/**
|
|
2549
2576
|
* Copyright 2013-present, Facebook, Inc.
|
|
2550
2577
|
* All rights reserved.
|
|
@@ -2558,9 +2585,9 @@ module.exports = EventPluginHub;
|
|
|
2558
2585
|
|
|
2559
2586
|
'use strict';
|
|
2560
2587
|
|
|
2561
|
-
var _prodInvariant = _dereq_(
|
|
2588
|
+
var _prodInvariant = _dereq_(116);
|
|
2562
2589
|
|
|
2563
|
-
var invariant = _dereq_(
|
|
2590
|
+
var invariant = _dereq_(140);
|
|
2564
2591
|
|
|
2565
2592
|
/**
|
|
2566
2593
|
* Injectable ordering of event plugins.
|
|
@@ -2799,7 +2826,7 @@ var EventPluginRegistry = {
|
|
|
2799
2826
|
};
|
|
2800
2827
|
|
|
2801
2828
|
module.exports = EventPluginRegistry;
|
|
2802
|
-
},{"
|
|
2829
|
+
},{"116":116,"140":140}],18:[function(_dereq_,module,exports){
|
|
2803
2830
|
/**
|
|
2804
2831
|
* Copyright 2013-present, Facebook, Inc.
|
|
2805
2832
|
* All rights reserved.
|
|
@@ -2812,12 +2839,12 @@ module.exports = EventPluginRegistry;
|
|
|
2812
2839
|
|
|
2813
2840
|
'use strict';
|
|
2814
2841
|
|
|
2815
|
-
var _prodInvariant = _dereq_(
|
|
2842
|
+
var _prodInvariant = _dereq_(116);
|
|
2816
2843
|
|
|
2817
2844
|
var ReactErrorUtils = _dereq_(50);
|
|
2818
2845
|
|
|
2819
|
-
var invariant = _dereq_(
|
|
2820
|
-
var warning = _dereq_(
|
|
2846
|
+
var invariant = _dereq_(140);
|
|
2847
|
+
var warning = _dereq_(147);
|
|
2821
2848
|
|
|
2822
2849
|
/**
|
|
2823
2850
|
* Injected dependencies:
|
|
@@ -3025,7 +3052,7 @@ var EventPluginUtils = {
|
|
|
3025
3052
|
};
|
|
3026
3053
|
|
|
3027
3054
|
module.exports = EventPluginUtils;
|
|
3028
|
-
},{"
|
|
3055
|
+
},{"116":116,"140":140,"147":147,"50":50}],19:[function(_dereq_,module,exports){
|
|
3029
3056
|
/**
|
|
3030
3057
|
* Copyright 2013-present, Facebook, Inc.
|
|
3031
3058
|
* All rights reserved.
|
|
@@ -3043,7 +3070,7 @@ var EventPluginUtils = _dereq_(18);
|
|
|
3043
3070
|
|
|
3044
3071
|
var accumulateInto = _dereq_(95);
|
|
3045
3072
|
var forEachAccumulated = _dereq_(102);
|
|
3046
|
-
var warning = _dereq_(
|
|
3073
|
+
var warning = _dereq_(147);
|
|
3047
3074
|
|
|
3048
3075
|
var getListener = EventPluginHub.getListener;
|
|
3049
3076
|
|
|
@@ -3159,7 +3186,7 @@ var EventPropagators = {
|
|
|
3159
3186
|
};
|
|
3160
3187
|
|
|
3161
3188
|
module.exports = EventPropagators;
|
|
3162
|
-
},{"102":102,"
|
|
3189
|
+
},{"102":102,"147":147,"16":16,"18":18,"95":95}],20:[function(_dereq_,module,exports){
|
|
3163
3190
|
/**
|
|
3164
3191
|
* Copyright 2013-present, Facebook, Inc.
|
|
3165
3192
|
* All rights reserved.
|
|
@@ -3172,11 +3199,11 @@ module.exports = EventPropagators;
|
|
|
3172
3199
|
|
|
3173
3200
|
'use strict';
|
|
3174
3201
|
|
|
3175
|
-
var _assign = _dereq_(
|
|
3202
|
+
var _assign = _dereq_(148);
|
|
3176
3203
|
|
|
3177
3204
|
var PooledClass = _dereq_(24);
|
|
3178
3205
|
|
|
3179
|
-
var getTextContentAccessor = _dereq_(
|
|
3206
|
+
var getTextContentAccessor = _dereq_(110);
|
|
3180
3207
|
|
|
3181
3208
|
/**
|
|
3182
3209
|
* This helper class stores information about text content of a target node,
|
|
@@ -3254,7 +3281,7 @@ _assign(FallbackCompositionState.prototype, {
|
|
|
3254
3281
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3255
3282
|
|
|
3256
3283
|
module.exports = FallbackCompositionState;
|
|
3257
|
-
},{"
|
|
3284
|
+
},{"110":110,"148":148,"24":24}],21:[function(_dereq_,module,exports){
|
|
3258
3285
|
/**
|
|
3259
3286
|
* Copyright 2013-present, Facebook, Inc.
|
|
3260
3287
|
* All rights reserved.
|
|
@@ -3538,13 +3565,13 @@ module.exports = KeyEscapeUtils;
|
|
|
3538
3565
|
|
|
3539
3566
|
'use strict';
|
|
3540
3567
|
|
|
3541
|
-
var _prodInvariant = _dereq_(
|
|
3568
|
+
var _prodInvariant = _dereq_(116);
|
|
3542
3569
|
|
|
3543
|
-
var React = _dereq_(
|
|
3570
|
+
var React = _dereq_(124);
|
|
3544
3571
|
var ReactPropTypesSecret = _dereq_(66);
|
|
3545
3572
|
|
|
3546
|
-
var invariant = _dereq_(
|
|
3547
|
-
var warning = _dereq_(
|
|
3573
|
+
var invariant = _dereq_(140);
|
|
3574
|
+
var warning = _dereq_(147);
|
|
3548
3575
|
|
|
3549
3576
|
var hasReadOnlyValue = {
|
|
3550
3577
|
'button': true,
|
|
@@ -3660,7 +3687,7 @@ var LinkedValueUtils = {
|
|
|
3660
3687
|
};
|
|
3661
3688
|
|
|
3662
3689
|
module.exports = LinkedValueUtils;
|
|
3663
|
-
},{"
|
|
3690
|
+
},{"116":116,"124":124,"140":140,"147":147,"66":66}],24:[function(_dereq_,module,exports){
|
|
3664
3691
|
/**
|
|
3665
3692
|
* Copyright 2013-present, Facebook, Inc.
|
|
3666
3693
|
* All rights reserved.
|
|
@@ -3674,9 +3701,9 @@ module.exports = LinkedValueUtils;
|
|
|
3674
3701
|
|
|
3675
3702
|
'use strict';
|
|
3676
3703
|
|
|
3677
|
-
var _prodInvariant = _dereq_(
|
|
3704
|
+
var _prodInvariant = _dereq_(116);
|
|
3678
3705
|
|
|
3679
|
-
var invariant = _dereq_(
|
|
3706
|
+
var invariant = _dereq_(140);
|
|
3680
3707
|
|
|
3681
3708
|
/**
|
|
3682
3709
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3729,17 +3756,6 @@ var fourArgumentPooler = function (a1, a2, a3, a4) {
|
|
|
3729
3756
|
}
|
|
3730
3757
|
};
|
|
3731
3758
|
|
|
3732
|
-
var fiveArgumentPooler = function (a1, a2, a3, a4, a5) {
|
|
3733
|
-
var Klass = this;
|
|
3734
|
-
if (Klass.instancePool.length) {
|
|
3735
|
-
var instance = Klass.instancePool.pop();
|
|
3736
|
-
Klass.call(instance, a1, a2, a3, a4, a5);
|
|
3737
|
-
return instance;
|
|
3738
|
-
} else {
|
|
3739
|
-
return new Klass(a1, a2, a3, a4, a5);
|
|
3740
|
-
}
|
|
3741
|
-
};
|
|
3742
|
-
|
|
3743
3759
|
var standardReleaser = function (instance) {
|
|
3744
3760
|
var Klass = this;
|
|
3745
3761
|
!(instance instanceof Klass) ? "development" !== 'production' ? invariant(false, 'Trying to release an instance into a pool of a different type.') : _prodInvariant('25') : void 0;
|
|
@@ -3779,12 +3795,11 @@ var PooledClass = {
|
|
|
3779
3795
|
oneArgumentPooler: oneArgumentPooler,
|
|
3780
3796
|
twoArgumentPooler: twoArgumentPooler,
|
|
3781
3797
|
threeArgumentPooler: threeArgumentPooler,
|
|
3782
|
-
fourArgumentPooler: fourArgumentPooler
|
|
3783
|
-
fiveArgumentPooler: fiveArgumentPooler
|
|
3798
|
+
fourArgumentPooler: fourArgumentPooler
|
|
3784
3799
|
};
|
|
3785
3800
|
|
|
3786
3801
|
module.exports = PooledClass;
|
|
3787
|
-
},{"
|
|
3802
|
+
},{"116":116,"140":140}],25:[function(_dereq_,module,exports){
|
|
3788
3803
|
/**
|
|
3789
3804
|
* Copyright 2013-present, Facebook, Inc.
|
|
3790
3805
|
* All rights reserved.
|
|
@@ -3797,14 +3812,14 @@ module.exports = PooledClass;
|
|
|
3797
3812
|
|
|
3798
3813
|
'use strict';
|
|
3799
3814
|
|
|
3800
|
-
var _assign = _dereq_(
|
|
3815
|
+
var _assign = _dereq_(148);
|
|
3801
3816
|
|
|
3802
3817
|
var EventPluginRegistry = _dereq_(17);
|
|
3803
3818
|
var ReactEventEmitterMixin = _dereq_(51);
|
|
3804
3819
|
var ViewportMetrics = _dereq_(94);
|
|
3805
3820
|
|
|
3806
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
3807
|
-
var isEventSupported = _dereq_(
|
|
3821
|
+
var getVendorPrefixedEventName = _dereq_(111);
|
|
3822
|
+
var isEventSupported = _dereq_(113);
|
|
3808
3823
|
|
|
3809
3824
|
/**
|
|
3810
3825
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4112,7 +4127,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4112
4127
|
});
|
|
4113
4128
|
|
|
4114
4129
|
module.exports = ReactBrowserEventEmitter;
|
|
4115
|
-
},{"
|
|
4130
|
+
},{"111":111,"113":113,"148":148,"17":17,"51":51,"94":94}],26:[function(_dereq_,module,exports){
|
|
4116
4131
|
(function (process){
|
|
4117
4132
|
/**
|
|
4118
4133
|
* Copyright 2014-present, Facebook, Inc.
|
|
@@ -4128,11 +4143,11 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4128
4143
|
|
|
4129
4144
|
var ReactReconciler = _dereq_(68);
|
|
4130
4145
|
|
|
4131
|
-
var instantiateReactComponent = _dereq_(
|
|
4146
|
+
var instantiateReactComponent = _dereq_(112);
|
|
4132
4147
|
var KeyEscapeUtils = _dereq_(22);
|
|
4133
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4134
|
-
var traverseAllChildren = _dereq_(
|
|
4135
|
-
var warning = _dereq_(
|
|
4148
|
+
var shouldUpdateReactComponent = _dereq_(119);
|
|
4149
|
+
var traverseAllChildren = _dereq_(120);
|
|
4150
|
+
var warning = _dereq_(147);
|
|
4136
4151
|
|
|
4137
4152
|
var ReactComponentTreeHook;
|
|
4138
4153
|
|
|
@@ -4142,7 +4157,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
|
4142
4157
|
// https://github.com/facebook/react/issues/7240
|
|
4143
4158
|
// Remove the inline requires when we don't need them anymore:
|
|
4144
4159
|
// https://github.com/facebook/react/pull/7178
|
|
4145
|
-
ReactComponentTreeHook = _dereq_(
|
|
4160
|
+
ReactComponentTreeHook = _dereq_(122);
|
|
4146
4161
|
}
|
|
4147
4162
|
|
|
4148
4163
|
function instantiateChild(childInstances, child, name, selfDebugID) {
|
|
@@ -4150,7 +4165,7 @@ function instantiateChild(childInstances, child, name, selfDebugID) {
|
|
|
4150
4165
|
var keyUnique = childInstances[name] === undefined;
|
|
4151
4166
|
if ("development" !== 'production') {
|
|
4152
4167
|
if (!ReactComponentTreeHook) {
|
|
4153
|
-
ReactComponentTreeHook = _dereq_(
|
|
4168
|
+
ReactComponentTreeHook = _dereq_(122);
|
|
4154
4169
|
}
|
|
4155
4170
|
if (!keyUnique) {
|
|
4156
4171
|
"development" !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;
|
|
@@ -4268,7 +4283,7 @@ var ReactChildReconciler = {
|
|
|
4268
4283
|
|
|
4269
4284
|
module.exports = ReactChildReconciler;
|
|
4270
4285
|
}).call(this,undefined)
|
|
4271
|
-
},{"
|
|
4286
|
+
},{"112":112,"119":119,"120":120,"122":122,"147":147,"22":22,"68":68}],27:[function(_dereq_,module,exports){
|
|
4272
4287
|
/**
|
|
4273
4288
|
* Copyright 2013-present, Facebook, Inc.
|
|
4274
4289
|
* All rights reserved.
|
|
@@ -4312,9 +4327,9 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
4312
4327
|
|
|
4313
4328
|
'use strict';
|
|
4314
4329
|
|
|
4315
|
-
var _prodInvariant = _dereq_(
|
|
4330
|
+
var _prodInvariant = _dereq_(116);
|
|
4316
4331
|
|
|
4317
|
-
var invariant = _dereq_(
|
|
4332
|
+
var invariant = _dereq_(140);
|
|
4318
4333
|
|
|
4319
4334
|
var injected = false;
|
|
4320
4335
|
|
|
@@ -4344,7 +4359,7 @@ var ReactComponentEnvironment = {
|
|
|
4344
4359
|
};
|
|
4345
4360
|
|
|
4346
4361
|
module.exports = ReactComponentEnvironment;
|
|
4347
|
-
},{"
|
|
4362
|
+
},{"116":116,"140":140}],29:[function(_dereq_,module,exports){
|
|
4348
4363
|
/**
|
|
4349
4364
|
* Copyright 2013-present, Facebook, Inc.
|
|
4350
4365
|
* All rights reserved.
|
|
@@ -4357,12 +4372,12 @@ module.exports = ReactComponentEnvironment;
|
|
|
4357
4372
|
|
|
4358
4373
|
'use strict';
|
|
4359
4374
|
|
|
4360
|
-
var _prodInvariant = _dereq_(
|
|
4361
|
-
_assign = _dereq_(
|
|
4375
|
+
var _prodInvariant = _dereq_(116),
|
|
4376
|
+
_assign = _dereq_(148);
|
|
4362
4377
|
|
|
4363
|
-
var React = _dereq_(
|
|
4378
|
+
var React = _dereq_(124);
|
|
4364
4379
|
var ReactComponentEnvironment = _dereq_(28);
|
|
4365
|
-
var ReactCurrentOwner = _dereq_(
|
|
4380
|
+
var ReactCurrentOwner = _dereq_(123);
|
|
4366
4381
|
var ReactErrorUtils = _dereq_(50);
|
|
4367
4382
|
var ReactInstanceMap = _dereq_(58);
|
|
4368
4383
|
var ReactInstrumentation = _dereq_(59);
|
|
@@ -4373,11 +4388,11 @@ if ("development" !== 'production') {
|
|
|
4373
4388
|
var checkReactTypeSpec = _dereq_(97);
|
|
4374
4389
|
}
|
|
4375
4390
|
|
|
4376
|
-
var emptyObject = _dereq_(
|
|
4377
|
-
var invariant = _dereq_(
|
|
4378
|
-
var shallowEqual = _dereq_(
|
|
4379
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4380
|
-
var warning = _dereq_(
|
|
4391
|
+
var emptyObject = _dereq_(133);
|
|
4392
|
+
var invariant = _dereq_(140);
|
|
4393
|
+
var shallowEqual = _dereq_(146);
|
|
4394
|
+
var shouldUpdateReactComponent = _dereq_(119);
|
|
4395
|
+
var warning = _dereq_(147);
|
|
4381
4396
|
|
|
4382
4397
|
var CompositeTypes = {
|
|
4383
4398
|
ImpureClass: 0,
|
|
@@ -4579,7 +4594,7 @@ var ReactCompositeComponent = {
|
|
|
4579
4594
|
// Since plain JS classes are defined without any special initialization
|
|
4580
4595
|
// logic, we can not catch common errors early. Therefore, we have to
|
|
4581
4596
|
// catch them here, at initialization time, instead.
|
|
4582
|
-
"development" !== 'production' ? warning(!inst.getInitialState || inst.getInitialState.isReactClassApproved, 'getInitialState was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Did you mean to define a state property instead?', this.getName() || 'a component') : void 0;
|
|
4597
|
+
"development" !== 'production' ? warning(!inst.getInitialState || inst.getInitialState.isReactClassApproved || inst.state, 'getInitialState was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Did you mean to define a state property instead?', this.getName() || 'a component') : void 0;
|
|
4583
4598
|
"development" !== 'production' ? warning(!inst.getDefaultProps || inst.getDefaultProps.isReactClassApproved, 'getDefaultProps was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Use a static property to define defaultProps instead.', this.getName() || 'a component') : void 0;
|
|
4584
4599
|
"development" !== 'production' ? warning(!inst.propTypes, 'propTypes was defined as an instance property on %s. Use a static ' + 'property to define propTypes instead.', this.getName() || 'a component') : void 0;
|
|
4585
4600
|
"development" !== 'production' ? warning(!inst.contextTypes, 'contextTypes was defined as an instance property on %s. Use a ' + 'static property to define contextTypes instead.', this.getName() || 'a component') : void 0;
|
|
@@ -5188,10 +5203,10 @@ var ReactCompositeComponent = {
|
|
|
5188
5203
|
* @final
|
|
5189
5204
|
* @private
|
|
5190
5205
|
*/
|
|
5191
|
-
attachRef: function (ref, component
|
|
5206
|
+
attachRef: function (ref, component) {
|
|
5192
5207
|
var inst = this.getPublicInstance();
|
|
5193
5208
|
!(inst != null) ? "development" !== 'production' ? invariant(false, 'Stateless function components cannot have refs.') : _prodInvariant('110') : void 0;
|
|
5194
|
-
var publicComponentInstance = component.getPublicInstance(
|
|
5209
|
+
var publicComponentInstance = component.getPublicInstance();
|
|
5195
5210
|
if ("development" !== 'production') {
|
|
5196
5211
|
var componentName = component && component.getName ? component.getName() : 'a component';
|
|
5197
5212
|
"development" !== 'production' ? warning(publicComponentInstance != null || component._compositeType !== CompositeTypes.StatelessFunctional, 'Stateless function components cannot be given refs ' + '(See ref "%s" in %s created by %s). ' + 'Attempts to access this ref will fail.', ref, componentName, this.getName()) : void 0;
|
|
@@ -5246,7 +5261,7 @@ var ReactCompositeComponent = {
|
|
|
5246
5261
|
};
|
|
5247
5262
|
|
|
5248
5263
|
module.exports = ReactCompositeComponent;
|
|
5249
|
-
},{"
|
|
5264
|
+
},{"116":116,"119":119,"123":123,"124":124,"133":133,"140":140,"146":146,"147":147,"148":148,"28":28,"50":50,"58":58,"59":59,"63":63,"68":68,"97":97}],30:[function(_dereq_,module,exports){
|
|
5250
5265
|
/**
|
|
5251
5266
|
* Copyright 2013-present, Facebook, Inc.
|
|
5252
5267
|
* All rights reserved.
|
|
@@ -5261,8 +5276,8 @@ module.exports = ReactCompositeComponent;
|
|
|
5261
5276
|
|
|
5262
5277
|
'use strict';
|
|
5263
5278
|
|
|
5264
|
-
var _prodInvariant = _dereq_(
|
|
5265
|
-
_assign = _dereq_(
|
|
5279
|
+
var _prodInvariant = _dereq_(116),
|
|
5280
|
+
_assign = _dereq_(148);
|
|
5266
5281
|
|
|
5267
5282
|
var AutoFocusUtils = _dereq_(2);
|
|
5268
5283
|
var CSSPropertyOperations = _dereq_(5);
|
|
@@ -5283,13 +5298,13 @@ var ReactInstrumentation = _dereq_(59);
|
|
|
5283
5298
|
var ReactMultiChild = _dereq_(62);
|
|
5284
5299
|
var ReactServerRenderingTransaction = _dereq_(72);
|
|
5285
5300
|
|
|
5286
|
-
var emptyFunction = _dereq_(
|
|
5301
|
+
var emptyFunction = _dereq_(132);
|
|
5287
5302
|
var escapeTextContentForBrowser = _dereq_(100);
|
|
5288
|
-
var invariant = _dereq_(
|
|
5289
|
-
var isEventSupported = _dereq_(
|
|
5290
|
-
var shallowEqual = _dereq_(
|
|
5291
|
-
var validateDOMNesting = _dereq_(
|
|
5292
|
-
var warning = _dereq_(
|
|
5303
|
+
var invariant = _dereq_(140);
|
|
5304
|
+
var isEventSupported = _dereq_(113);
|
|
5305
|
+
var shallowEqual = _dereq_(146);
|
|
5306
|
+
var validateDOMNesting = _dereq_(121);
|
|
5307
|
+
var warning = _dereq_(147);
|
|
5293
5308
|
|
|
5294
5309
|
var Flags = ReactDOMComponentFlags;
|
|
5295
5310
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -5930,12 +5945,18 @@ ReactDOMComponent.Mixin = {
|
|
|
5930
5945
|
} else {
|
|
5931
5946
|
var contentToUse = CONTENT_TYPES[typeof props.children] ? props.children : null;
|
|
5932
5947
|
var childrenToUse = contentToUse != null ? null : props.children;
|
|
5948
|
+
// TODO: Validate that text is allowed as a child of this node
|
|
5933
5949
|
if (contentToUse != null) {
|
|
5934
|
-
//
|
|
5935
|
-
|
|
5936
|
-
|
|
5950
|
+
// Avoid setting textContent when the text is empty. In IE11 setting
|
|
5951
|
+
// textContent on a text area will cause the placeholder to not
|
|
5952
|
+
// show within the textarea until it has been focused and blurred again.
|
|
5953
|
+
// https://github.com/facebook/react/issues/6731#issuecomment-254874553
|
|
5954
|
+
if (contentToUse !== '') {
|
|
5955
|
+
if ("development" !== 'production') {
|
|
5956
|
+
setAndValidateContentChildDev.call(this, contentToUse);
|
|
5957
|
+
}
|
|
5958
|
+
DOMLazyTree.queueText(lazyTree, contentToUse);
|
|
5937
5959
|
}
|
|
5938
|
-
DOMLazyTree.queueText(lazyTree, contentToUse);
|
|
5939
5960
|
} else if (childrenToUse != null) {
|
|
5940
5961
|
var mountImages = this.mountChildren(childrenToUse, transaction, context);
|
|
5941
5962
|
for (var i = 0; i < mountImages.length; i++) {
|
|
@@ -6241,7 +6262,7 @@ ReactDOMComponent.Mixin = {
|
|
|
6241
6262
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
6242
6263
|
|
|
6243
6264
|
module.exports = ReactDOMComponent;
|
|
6244
|
-
},{"10":10,"100":100,"11":11,"
|
|
6265
|
+
},{"10":10,"100":100,"11":11,"113":113,"116":116,"12":12,"121":121,"132":132,"140":140,"146":146,"147":147,"148":148,"16":16,"17":17,"2":2,"25":25,"31":31,"32":32,"36":36,"37":37,"38":38,"43":43,"5":5,"59":59,"62":62,"72":72,"9":9}],31:[function(_dereq_,module,exports){
|
|
6245
6266
|
/**
|
|
6246
6267
|
* Copyright 2015-present, Facebook, Inc.
|
|
6247
6268
|
* All rights reserved.
|
|
@@ -6272,18 +6293,25 @@ module.exports = ReactDOMComponentFlags;
|
|
|
6272
6293
|
|
|
6273
6294
|
'use strict';
|
|
6274
6295
|
|
|
6275
|
-
var _prodInvariant = _dereq_(
|
|
6296
|
+
var _prodInvariant = _dereq_(116);
|
|
6276
6297
|
|
|
6277
6298
|
var DOMProperty = _dereq_(11);
|
|
6278
6299
|
var ReactDOMComponentFlags = _dereq_(31);
|
|
6279
6300
|
|
|
6280
|
-
var invariant = _dereq_(
|
|
6301
|
+
var invariant = _dereq_(140);
|
|
6281
6302
|
|
|
6282
6303
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
6283
6304
|
var Flags = ReactDOMComponentFlags;
|
|
6284
6305
|
|
|
6285
6306
|
var internalInstanceKey = '__reactInternalInstance$' + Math.random().toString(36).slice(2);
|
|
6286
6307
|
|
|
6308
|
+
/**
|
|
6309
|
+
* Check if a given node should be cached.
|
|
6310
|
+
*/
|
|
6311
|
+
function shouldPrecacheNode(node, nodeID) {
|
|
6312
|
+
return node.nodeType === 1 && node.getAttribute(ATTR_NAME) === String(nodeID) || node.nodeType === 8 && node.nodeValue === ' react-text: ' + nodeID + ' ' || node.nodeType === 8 && node.nodeValue === ' react-empty: ' + nodeID + ' ';
|
|
6313
|
+
}
|
|
6314
|
+
|
|
6287
6315
|
/**
|
|
6288
6316
|
* Drill down (through composites and empty components) until we get a host or
|
|
6289
6317
|
* host text component.
|
|
@@ -6349,7 +6377,7 @@ function precacheChildNodes(inst, node) {
|
|
|
6349
6377
|
}
|
|
6350
6378
|
// We assume the child nodes are in the same order as the child instances.
|
|
6351
6379
|
for (; childNode !== null; childNode = childNode.nextSibling) {
|
|
6352
|
-
if (
|
|
6380
|
+
if (shouldPrecacheNode(childNode, childID)) {
|
|
6353
6381
|
precacheNode(childInst, childNode);
|
|
6354
6382
|
continue outer;
|
|
6355
6383
|
}
|
|
@@ -6447,7 +6475,7 @@ var ReactDOMComponentTree = {
|
|
|
6447
6475
|
};
|
|
6448
6476
|
|
|
6449
6477
|
module.exports = ReactDOMComponentTree;
|
|
6450
|
-
},{"11":11,"
|
|
6478
|
+
},{"11":11,"116":116,"140":140,"31":31}],33:[function(_dereq_,module,exports){
|
|
6451
6479
|
/**
|
|
6452
6480
|
* Copyright 2013-present, Facebook, Inc.
|
|
6453
6481
|
* All rights reserved.
|
|
@@ -6460,7 +6488,7 @@ module.exports = ReactDOMComponentTree;
|
|
|
6460
6488
|
|
|
6461
6489
|
'use strict';
|
|
6462
6490
|
|
|
6463
|
-
var validateDOMNesting = _dereq_(
|
|
6491
|
+
var validateDOMNesting = _dereq_(121);
|
|
6464
6492
|
|
|
6465
6493
|
var DOC_NODE_TYPE = 9;
|
|
6466
6494
|
|
|
@@ -6480,7 +6508,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
6480
6508
|
}
|
|
6481
6509
|
|
|
6482
6510
|
module.exports = ReactDOMContainerInfo;
|
|
6483
|
-
},{"
|
|
6511
|
+
},{"121":121}],34:[function(_dereq_,module,exports){
|
|
6484
6512
|
/**
|
|
6485
6513
|
* Copyright 2014-present, Facebook, Inc.
|
|
6486
6514
|
* All rights reserved.
|
|
@@ -6493,7 +6521,7 @@ module.exports = ReactDOMContainerInfo;
|
|
|
6493
6521
|
|
|
6494
6522
|
'use strict';
|
|
6495
6523
|
|
|
6496
|
-
var _assign = _dereq_(
|
|
6524
|
+
var _assign = _dereq_(148);
|
|
6497
6525
|
|
|
6498
6526
|
var DOMLazyTree = _dereq_(9);
|
|
6499
6527
|
var ReactDOMComponentTree = _dereq_(32);
|
|
@@ -6540,7 +6568,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
6540
6568
|
});
|
|
6541
6569
|
|
|
6542
6570
|
module.exports = ReactDOMEmptyComponent;
|
|
6543
|
-
},{"
|
|
6571
|
+
},{"148":148,"32":32,"9":9}],35:[function(_dereq_,module,exports){
|
|
6544
6572
|
/**
|
|
6545
6573
|
* Copyright 2013-present, Facebook, Inc.
|
|
6546
6574
|
* All rights reserved.
|
|
@@ -6587,16 +6615,16 @@ module.exports = ReactDOMIDOperations;
|
|
|
6587
6615
|
|
|
6588
6616
|
'use strict';
|
|
6589
6617
|
|
|
6590
|
-
var _prodInvariant = _dereq_(
|
|
6591
|
-
_assign = _dereq_(
|
|
6618
|
+
var _prodInvariant = _dereq_(116),
|
|
6619
|
+
_assign = _dereq_(148);
|
|
6592
6620
|
|
|
6593
6621
|
var DOMPropertyOperations = _dereq_(12);
|
|
6594
6622
|
var LinkedValueUtils = _dereq_(23);
|
|
6595
6623
|
var ReactDOMComponentTree = _dereq_(32);
|
|
6596
6624
|
var ReactUpdates = _dereq_(75);
|
|
6597
6625
|
|
|
6598
|
-
var invariant = _dereq_(
|
|
6599
|
-
var warning = _dereq_(
|
|
6626
|
+
var invariant = _dereq_(140);
|
|
6627
|
+
var warning = _dereq_(147);
|
|
6600
6628
|
|
|
6601
6629
|
var didWarnValueLink = false;
|
|
6602
6630
|
var didWarnCheckedLink = false;
|
|
@@ -6734,7 +6762,17 @@ var ReactDOMInput = {
|
|
|
6734
6762
|
}
|
|
6735
6763
|
} else {
|
|
6736
6764
|
if (props.value == null && props.defaultValue != null) {
|
|
6737
|
-
|
|
6765
|
+
// In Chrome, assigning defaultValue to certain input types triggers input validation.
|
|
6766
|
+
// For number inputs, the display value loses trailing decimal points. For email inputs,
|
|
6767
|
+
// Chrome raises "The specified value <x> is not a valid email address".
|
|
6768
|
+
//
|
|
6769
|
+
// Here we check to see if the defaultValue has actually changed, avoiding these problems
|
|
6770
|
+
// when the user is inputting text
|
|
6771
|
+
//
|
|
6772
|
+
// https://github.com/facebook/react/issues/7253
|
|
6773
|
+
if (node.defaultValue !== '' + props.defaultValue) {
|
|
6774
|
+
node.defaultValue = '' + props.defaultValue;
|
|
6775
|
+
}
|
|
6738
6776
|
}
|
|
6739
6777
|
if (props.checked == null && props.defaultChecked != null) {
|
|
6740
6778
|
node.defaultChecked = !!props.defaultChecked;
|
|
@@ -6842,7 +6880,7 @@ function _handleChange(event) {
|
|
|
6842
6880
|
}
|
|
6843
6881
|
|
|
6844
6882
|
module.exports = ReactDOMInput;
|
|
6845
|
-
},{"
|
|
6883
|
+
},{"116":116,"12":12,"140":140,"147":147,"148":148,"23":23,"32":32,"75":75}],37:[function(_dereq_,module,exports){
|
|
6846
6884
|
/**
|
|
6847
6885
|
* Copyright 2013-present, Facebook, Inc.
|
|
6848
6886
|
* All rights reserved.
|
|
@@ -6855,13 +6893,13 @@ module.exports = ReactDOMInput;
|
|
|
6855
6893
|
|
|
6856
6894
|
'use strict';
|
|
6857
6895
|
|
|
6858
|
-
var _assign = _dereq_(
|
|
6896
|
+
var _assign = _dereq_(148);
|
|
6859
6897
|
|
|
6860
|
-
var React = _dereq_(
|
|
6898
|
+
var React = _dereq_(124);
|
|
6861
6899
|
var ReactDOMComponentTree = _dereq_(32);
|
|
6862
6900
|
var ReactDOMSelect = _dereq_(38);
|
|
6863
6901
|
|
|
6864
|
-
var warning = _dereq_(
|
|
6902
|
+
var warning = _dereq_(147);
|
|
6865
6903
|
var didWarnInvalidOptionChildren = false;
|
|
6866
6904
|
|
|
6867
6905
|
function flattenChildren(children) {
|
|
@@ -6965,7 +7003,7 @@ var ReactDOMOption = {
|
|
|
6965
7003
|
};
|
|
6966
7004
|
|
|
6967
7005
|
module.exports = ReactDOMOption;
|
|
6968
|
-
},{"
|
|
7006
|
+
},{"124":124,"147":147,"148":148,"32":32,"38":38}],38:[function(_dereq_,module,exports){
|
|
6969
7007
|
/**
|
|
6970
7008
|
* Copyright 2013-present, Facebook, Inc.
|
|
6971
7009
|
* All rights reserved.
|
|
@@ -6978,13 +7016,13 @@ module.exports = ReactDOMOption;
|
|
|
6978
7016
|
|
|
6979
7017
|
'use strict';
|
|
6980
7018
|
|
|
6981
|
-
var _assign = _dereq_(
|
|
7019
|
+
var _assign = _dereq_(148);
|
|
6982
7020
|
|
|
6983
7021
|
var LinkedValueUtils = _dereq_(23);
|
|
6984
7022
|
var ReactDOMComponentTree = _dereq_(32);
|
|
6985
7023
|
var ReactUpdates = _dereq_(75);
|
|
6986
7024
|
|
|
6987
|
-
var warning = _dereq_(
|
|
7025
|
+
var warning = _dereq_(147);
|
|
6988
7026
|
|
|
6989
7027
|
var didWarnValueLink = false;
|
|
6990
7028
|
var didWarnValueDefaultValue = false;
|
|
@@ -7165,7 +7203,7 @@ function _handleChange(event) {
|
|
|
7165
7203
|
}
|
|
7166
7204
|
|
|
7167
7205
|
module.exports = ReactDOMSelect;
|
|
7168
|
-
},{"
|
|
7206
|
+
},{"147":147,"148":148,"23":23,"32":32,"75":75}],39:[function(_dereq_,module,exports){
|
|
7169
7207
|
/**
|
|
7170
7208
|
* Copyright 2013-present, Facebook, Inc.
|
|
7171
7209
|
* All rights reserved.
|
|
@@ -7178,10 +7216,10 @@ module.exports = ReactDOMSelect;
|
|
|
7178
7216
|
|
|
7179
7217
|
'use strict';
|
|
7180
7218
|
|
|
7181
|
-
var ExecutionEnvironment = _dereq_(
|
|
7219
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
7182
7220
|
|
|
7183
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
7184
|
-
var getTextContentAccessor = _dereq_(
|
|
7221
|
+
var getNodeForCharacterOffset = _dereq_(109);
|
|
7222
|
+
var getTextContentAccessor = _dereq_(110);
|
|
7185
7223
|
|
|
7186
7224
|
/**
|
|
7187
7225
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -7377,7 +7415,7 @@ var ReactDOMSelection = {
|
|
|
7377
7415
|
};
|
|
7378
7416
|
|
|
7379
7417
|
module.exports = ReactDOMSelection;
|
|
7380
|
-
},{"
|
|
7418
|
+
},{"109":109,"110":110,"126":126}],40:[function(_dereq_,module,exports){
|
|
7381
7419
|
/**
|
|
7382
7420
|
* Copyright 2013-present, Facebook, Inc.
|
|
7383
7421
|
* All rights reserved.
|
|
@@ -7432,16 +7470,16 @@ module.exports = ReactDOMServer;
|
|
|
7432
7470
|
|
|
7433
7471
|
'use strict';
|
|
7434
7472
|
|
|
7435
|
-
var _prodInvariant = _dereq_(
|
|
7436
|
-
_assign = _dereq_(
|
|
7473
|
+
var _prodInvariant = _dereq_(116),
|
|
7474
|
+
_assign = _dereq_(148);
|
|
7437
7475
|
|
|
7438
7476
|
var DOMChildrenOperations = _dereq_(8);
|
|
7439
7477
|
var DOMLazyTree = _dereq_(9);
|
|
7440
7478
|
var ReactDOMComponentTree = _dereq_(32);
|
|
7441
7479
|
|
|
7442
7480
|
var escapeTextContentForBrowser = _dereq_(100);
|
|
7443
|
-
var invariant = _dereq_(
|
|
7444
|
-
var validateDOMNesting = _dereq_(
|
|
7481
|
+
var invariant = _dereq_(140);
|
|
7482
|
+
var validateDOMNesting = _dereq_(121);
|
|
7445
7483
|
|
|
7446
7484
|
/**
|
|
7447
7485
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -7583,7 +7621,7 @@ _assign(ReactDOMTextComponent.prototype, {
|
|
|
7583
7621
|
});
|
|
7584
7622
|
|
|
7585
7623
|
module.exports = ReactDOMTextComponent;
|
|
7586
|
-
},{"100":100,"
|
|
7624
|
+
},{"100":100,"116":116,"121":121,"140":140,"148":148,"32":32,"8":8,"9":9}],43:[function(_dereq_,module,exports){
|
|
7587
7625
|
/**
|
|
7588
7626
|
* Copyright 2013-present, Facebook, Inc.
|
|
7589
7627
|
* All rights reserved.
|
|
@@ -7596,15 +7634,15 @@ module.exports = ReactDOMTextComponent;
|
|
|
7596
7634
|
|
|
7597
7635
|
'use strict';
|
|
7598
7636
|
|
|
7599
|
-
var _prodInvariant = _dereq_(
|
|
7600
|
-
_assign = _dereq_(
|
|
7637
|
+
var _prodInvariant = _dereq_(116),
|
|
7638
|
+
_assign = _dereq_(148);
|
|
7601
7639
|
|
|
7602
7640
|
var LinkedValueUtils = _dereq_(23);
|
|
7603
7641
|
var ReactDOMComponentTree = _dereq_(32);
|
|
7604
7642
|
var ReactUpdates = _dereq_(75);
|
|
7605
7643
|
|
|
7606
|
-
var invariant = _dereq_(
|
|
7607
|
-
var warning = _dereq_(
|
|
7644
|
+
var invariant = _dereq_(140);
|
|
7645
|
+
var warning = _dereq_(147);
|
|
7608
7646
|
|
|
7609
7647
|
var didWarnValueLink = false;
|
|
7610
7648
|
var didWarnValDefaultVal = false;
|
|
@@ -7723,9 +7761,15 @@ var ReactDOMTextarea = {
|
|
|
7723
7761
|
// This is in postMount because we need access to the DOM node, which is not
|
|
7724
7762
|
// available until after the component has mounted.
|
|
7725
7763
|
var node = ReactDOMComponentTree.getNodeFromInstance(inst);
|
|
7764
|
+
var textContent = node.textContent;
|
|
7726
7765
|
|
|
7727
|
-
//
|
|
7728
|
-
|
|
7766
|
+
// Only set node.value if textContent is equal to the expected
|
|
7767
|
+
// initial value. In IE10/IE11 there is a bug where the placeholder attribute
|
|
7768
|
+
// will populate textContent as well.
|
|
7769
|
+
// https://developer.microsoft.com/microsoft-edge/platform/issues/101525/
|
|
7770
|
+
if (textContent === inst._wrapperState.initialValue) {
|
|
7771
|
+
node.value = textContent;
|
|
7772
|
+
}
|
|
7729
7773
|
}
|
|
7730
7774
|
};
|
|
7731
7775
|
|
|
@@ -7737,7 +7781,7 @@ function _handleChange(event) {
|
|
|
7737
7781
|
}
|
|
7738
7782
|
|
|
7739
7783
|
module.exports = ReactDOMTextarea;
|
|
7740
|
-
},{"
|
|
7784
|
+
},{"116":116,"140":140,"147":147,"148":148,"23":23,"32":32,"75":75}],44:[function(_dereq_,module,exports){
|
|
7741
7785
|
/**
|
|
7742
7786
|
* Copyright 2015-present, Facebook, Inc.
|
|
7743
7787
|
* All rights reserved.
|
|
@@ -7750,9 +7794,9 @@ module.exports = ReactDOMTextarea;
|
|
|
7750
7794
|
|
|
7751
7795
|
'use strict';
|
|
7752
7796
|
|
|
7753
|
-
var _prodInvariant = _dereq_(
|
|
7797
|
+
var _prodInvariant = _dereq_(116);
|
|
7754
7798
|
|
|
7755
|
-
var invariant = _dereq_(
|
|
7799
|
+
var invariant = _dereq_(140);
|
|
7756
7800
|
|
|
7757
7801
|
/**
|
|
7758
7802
|
* Return the lowest common ancestor of A and B, or null if they are in
|
|
@@ -7873,7 +7917,7 @@ module.exports = {
|
|
|
7873
7917
|
traverseTwoPhase: traverseTwoPhase,
|
|
7874
7918
|
traverseEnterLeave: traverseEnterLeave
|
|
7875
7919
|
};
|
|
7876
|
-
},{"
|
|
7920
|
+
},{"116":116,"140":140}],45:[function(_dereq_,module,exports){
|
|
7877
7921
|
/**
|
|
7878
7922
|
* Copyright 2016-present, Facebook, Inc.
|
|
7879
7923
|
* All rights reserved.
|
|
@@ -7889,11 +7933,11 @@ module.exports = {
|
|
|
7889
7933
|
|
|
7890
7934
|
var ReactInvalidSetStateWarningHook = _dereq_(60);
|
|
7891
7935
|
var ReactHostOperationHistoryHook = _dereq_(55);
|
|
7892
|
-
var ReactComponentTreeHook = _dereq_(
|
|
7893
|
-
var ExecutionEnvironment = _dereq_(
|
|
7936
|
+
var ReactComponentTreeHook = _dereq_(122);
|
|
7937
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
7894
7938
|
|
|
7895
|
-
var performanceNow = _dereq_(
|
|
7896
|
-
var warning = _dereq_(
|
|
7939
|
+
var performanceNow = _dereq_(145);
|
|
7940
|
+
var warning = _dereq_(147);
|
|
7897
7941
|
|
|
7898
7942
|
var hooks = [];
|
|
7899
7943
|
var didHookThrowForEvent = {};
|
|
@@ -8040,12 +8084,11 @@ function pauseCurrentLifeCycleTimer() {
|
|
|
8040
8084
|
}
|
|
8041
8085
|
|
|
8042
8086
|
function resumeCurrentLifeCycleTimer() {
|
|
8043
|
-
var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop()
|
|
8044
|
-
|
|
8045
|
-
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
var timerType = _lifeCycleTimerStack$.timerType;
|
|
8087
|
+
var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop(),
|
|
8088
|
+
startTime = _lifeCycleTimerStack$.startTime,
|
|
8089
|
+
nestedFlushStartTime = _lifeCycleTimerStack$.nestedFlushStartTime,
|
|
8090
|
+
debugID = _lifeCycleTimerStack$.debugID,
|
|
8091
|
+
timerType = _lifeCycleTimerStack$.timerType;
|
|
8049
8092
|
|
|
8050
8093
|
var nestedFlushDuration = performanceNow() - nestedFlushStartTime;
|
|
8051
8094
|
currentTimerStartTime = startTime;
|
|
@@ -8235,7 +8278,7 @@ if (/[?&]react_perf\b/.test(url)) {
|
|
|
8235
8278
|
}
|
|
8236
8279
|
|
|
8237
8280
|
module.exports = ReactDebugTool;
|
|
8238
|
-
},{"
|
|
8281
|
+
},{"122":122,"126":126,"145":145,"147":147,"55":55,"60":60}],46:[function(_dereq_,module,exports){
|
|
8239
8282
|
/**
|
|
8240
8283
|
* Copyright 2013-present, Facebook, Inc.
|
|
8241
8284
|
* All rights reserved.
|
|
@@ -8248,12 +8291,12 @@ module.exports = ReactDebugTool;
|
|
|
8248
8291
|
|
|
8249
8292
|
'use strict';
|
|
8250
8293
|
|
|
8251
|
-
var _assign = _dereq_(
|
|
8294
|
+
var _assign = _dereq_(148);
|
|
8252
8295
|
|
|
8253
8296
|
var ReactUpdates = _dereq_(75);
|
|
8254
8297
|
var Transaction = _dereq_(93);
|
|
8255
8298
|
|
|
8256
|
-
var emptyFunction = _dereq_(
|
|
8299
|
+
var emptyFunction = _dereq_(132);
|
|
8257
8300
|
|
|
8258
8301
|
var RESET_BATCHED_UPDATES = {
|
|
8259
8302
|
initialize: emptyFunction,
|
|
@@ -8303,7 +8346,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
8303
8346
|
};
|
|
8304
8347
|
|
|
8305
8348
|
module.exports = ReactDefaultBatchingStrategy;
|
|
8306
|
-
},{"
|
|
8349
|
+
},{"132":132,"148":148,"75":75,"93":93}],47:[function(_dereq_,module,exports){
|
|
8307
8350
|
/**
|
|
8308
8351
|
* Copyright 2013-present, Facebook, Inc.
|
|
8309
8352
|
* All rights reserved.
|
|
@@ -8562,16 +8605,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
8562
8605
|
|
|
8563
8606
|
'use strict';
|
|
8564
8607
|
|
|
8565
|
-
var _assign = _dereq_(
|
|
8608
|
+
var _assign = _dereq_(148);
|
|
8566
8609
|
|
|
8567
|
-
var EventListener = _dereq_(
|
|
8568
|
-
var ExecutionEnvironment = _dereq_(
|
|
8610
|
+
var EventListener = _dereq_(125);
|
|
8611
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
8569
8612
|
var PooledClass = _dereq_(24);
|
|
8570
8613
|
var ReactDOMComponentTree = _dereq_(32);
|
|
8571
8614
|
var ReactUpdates = _dereq_(75);
|
|
8572
8615
|
|
|
8573
8616
|
var getEventTarget = _dereq_(106);
|
|
8574
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
8617
|
+
var getUnboundedScrollPosition = _dereq_(137);
|
|
8575
8618
|
|
|
8576
8619
|
/**
|
|
8577
8620
|
* Find the deepest React component completely containing the root of the
|
|
@@ -8704,7 +8747,7 @@ var ReactEventListener = {
|
|
|
8704
8747
|
};
|
|
8705
8748
|
|
|
8706
8749
|
module.exports = ReactEventListener;
|
|
8707
|
-
},{"106":106,"
|
|
8750
|
+
},{"106":106,"125":125,"126":126,"137":137,"148":148,"24":24,"32":32,"75":75}],53:[function(_dereq_,module,exports){
|
|
8708
8751
|
/**
|
|
8709
8752
|
* Copyright 2013-present, Facebook, Inc.
|
|
8710
8753
|
* All rights reserved.
|
|
@@ -8739,14 +8782,11 @@ module.exports = ReactFeatureFlags;
|
|
|
8739
8782
|
|
|
8740
8783
|
'use strict';
|
|
8741
8784
|
|
|
8742
|
-
var _prodInvariant = _dereq_(
|
|
8743
|
-
_assign = _dereq_(147);
|
|
8785
|
+
var _prodInvariant = _dereq_(116);
|
|
8744
8786
|
|
|
8745
|
-
var invariant = _dereq_(
|
|
8787
|
+
var invariant = _dereq_(140);
|
|
8746
8788
|
|
|
8747
8789
|
var genericComponentClass = null;
|
|
8748
|
-
// This registry keeps track of wrapper classes around host tags.
|
|
8749
|
-
var tagToComponentClass = {};
|
|
8750
8790
|
var textComponentClass = null;
|
|
8751
8791
|
|
|
8752
8792
|
var ReactHostComponentInjection = {
|
|
@@ -8759,11 +8799,6 @@ var ReactHostComponentInjection = {
|
|
|
8759
8799
|
// rendered as props.
|
|
8760
8800
|
injectTextComponentClass: function (componentClass) {
|
|
8761
8801
|
textComponentClass = componentClass;
|
|
8762
|
-
},
|
|
8763
|
-
// This accepts a keyed object with classes as values. Each key represents a
|
|
8764
|
-
// tag. That particular tag will use this class instead of the generic one.
|
|
8765
|
-
injectComponentClasses: function (componentClasses) {
|
|
8766
|
-
_assign(tagToComponentClass, componentClasses);
|
|
8767
8802
|
}
|
|
8768
8803
|
};
|
|
8769
8804
|
|
|
@@ -8802,7 +8837,7 @@ var ReactHostComponent = {
|
|
|
8802
8837
|
};
|
|
8803
8838
|
|
|
8804
8839
|
module.exports = ReactHostComponent;
|
|
8805
|
-
},{"
|
|
8840
|
+
},{"116":116,"140":140}],55:[function(_dereq_,module,exports){
|
|
8806
8841
|
/**
|
|
8807
8842
|
* Copyright 2016-present, Facebook, Inc.
|
|
8808
8843
|
* All rights reserved.
|
|
@@ -8885,9 +8920,9 @@ module.exports = ReactInjection;
|
|
|
8885
8920
|
|
|
8886
8921
|
var ReactDOMSelection = _dereq_(39);
|
|
8887
8922
|
|
|
8888
|
-
var containsNode = _dereq_(
|
|
8889
|
-
var focusNode = _dereq_(
|
|
8890
|
-
var getActiveElement = _dereq_(
|
|
8923
|
+
var containsNode = _dereq_(129);
|
|
8924
|
+
var focusNode = _dereq_(134);
|
|
8925
|
+
var getActiveElement = _dereq_(135);
|
|
8891
8926
|
|
|
8892
8927
|
function isInDocument(node) {
|
|
8893
8928
|
return containsNode(document.documentElement, node);
|
|
@@ -8994,7 +9029,7 @@ var ReactInputSelection = {
|
|
|
8994
9029
|
};
|
|
8995
9030
|
|
|
8996
9031
|
module.exports = ReactInputSelection;
|
|
8997
|
-
},{"
|
|
9032
|
+
},{"129":129,"134":134,"135":135,"39":39}],58:[function(_dereq_,module,exports){
|
|
8998
9033
|
/**
|
|
8999
9034
|
* Copyright 2013-present, Facebook, Inc.
|
|
9000
9035
|
* All rights reserved.
|
|
@@ -9080,7 +9115,7 @@ module.exports = { debugTool: debugTool };
|
|
|
9080
9115
|
|
|
9081
9116
|
'use strict';
|
|
9082
9117
|
|
|
9083
|
-
var warning = _dereq_(
|
|
9118
|
+
var warning = _dereq_(147);
|
|
9084
9119
|
|
|
9085
9120
|
if ("development" !== 'production') {
|
|
9086
9121
|
var processingChildContext = false;
|
|
@@ -9103,7 +9138,7 @@ var ReactInvalidSetStateWarningHook = {
|
|
|
9103
9138
|
};
|
|
9104
9139
|
|
|
9105
9140
|
module.exports = ReactInvalidSetStateWarningHook;
|
|
9106
|
-
},{"
|
|
9141
|
+
},{"147":147}],61:[function(_dereq_,module,exports){
|
|
9107
9142
|
/**
|
|
9108
9143
|
* Copyright 2013-present, Facebook, Inc.
|
|
9109
9144
|
* All rights reserved.
|
|
@@ -9166,19 +9201,19 @@ module.exports = ReactMarkupChecksum;
|
|
|
9166
9201
|
|
|
9167
9202
|
'use strict';
|
|
9168
9203
|
|
|
9169
|
-
var _prodInvariant = _dereq_(
|
|
9204
|
+
var _prodInvariant = _dereq_(116);
|
|
9170
9205
|
|
|
9171
9206
|
var ReactComponentEnvironment = _dereq_(28);
|
|
9172
9207
|
var ReactInstanceMap = _dereq_(58);
|
|
9173
9208
|
var ReactInstrumentation = _dereq_(59);
|
|
9174
9209
|
|
|
9175
|
-
var ReactCurrentOwner = _dereq_(
|
|
9210
|
+
var ReactCurrentOwner = _dereq_(123);
|
|
9176
9211
|
var ReactReconciler = _dereq_(68);
|
|
9177
9212
|
var ReactChildReconciler = _dereq_(26);
|
|
9178
9213
|
|
|
9179
|
-
var emptyFunction = _dereq_(
|
|
9214
|
+
var emptyFunction = _dereq_(132);
|
|
9180
9215
|
var flattenChildren = _dereq_(101);
|
|
9181
|
-
var invariant = _dereq_(
|
|
9216
|
+
var invariant = _dereq_(140);
|
|
9182
9217
|
|
|
9183
9218
|
/**
|
|
9184
9219
|
* Make an update for markup to be rendered and inserted at a supplied index.
|
|
@@ -9603,7 +9638,7 @@ var ReactMultiChild = {
|
|
|
9603
9638
|
};
|
|
9604
9639
|
|
|
9605
9640
|
module.exports = ReactMultiChild;
|
|
9606
|
-
},{"101":101,"
|
|
9641
|
+
},{"101":101,"116":116,"123":123,"132":132,"140":140,"26":26,"28":28,"58":58,"59":59,"68":68}],63:[function(_dereq_,module,exports){
|
|
9607
9642
|
/**
|
|
9608
9643
|
* Copyright 2013-present, Facebook, Inc.
|
|
9609
9644
|
* All rights reserved.
|
|
@@ -9617,11 +9652,11 @@ module.exports = ReactMultiChild;
|
|
|
9617
9652
|
|
|
9618
9653
|
'use strict';
|
|
9619
9654
|
|
|
9620
|
-
var _prodInvariant = _dereq_(
|
|
9655
|
+
var _prodInvariant = _dereq_(116);
|
|
9621
9656
|
|
|
9622
|
-
var React = _dereq_(
|
|
9657
|
+
var React = _dereq_(124);
|
|
9623
9658
|
|
|
9624
|
-
var invariant = _dereq_(
|
|
9659
|
+
var invariant = _dereq_(140);
|
|
9625
9660
|
|
|
9626
9661
|
var ReactNodeTypes = {
|
|
9627
9662
|
HOST: 0,
|
|
@@ -9643,7 +9678,7 @@ var ReactNodeTypes = {
|
|
|
9643
9678
|
};
|
|
9644
9679
|
|
|
9645
9680
|
module.exports = ReactNodeTypes;
|
|
9646
|
-
},{"
|
|
9681
|
+
},{"116":116,"124":124,"140":140}],64:[function(_dereq_,module,exports){
|
|
9647
9682
|
/**
|
|
9648
9683
|
* Copyright 2013-present, Facebook, Inc.
|
|
9649
9684
|
* All rights reserved.
|
|
@@ -9657,9 +9692,9 @@ module.exports = ReactNodeTypes;
|
|
|
9657
9692
|
|
|
9658
9693
|
'use strict';
|
|
9659
9694
|
|
|
9660
|
-
var _prodInvariant = _dereq_(
|
|
9695
|
+
var _prodInvariant = _dereq_(116);
|
|
9661
9696
|
|
|
9662
|
-
var invariant = _dereq_(
|
|
9697
|
+
var invariant = _dereq_(140);
|
|
9663
9698
|
|
|
9664
9699
|
/**
|
|
9665
9700
|
* @param {?object} object
|
|
@@ -9710,9 +9745,9 @@ var ReactOwner = {
|
|
|
9710
9745
|
* @final
|
|
9711
9746
|
* @internal
|
|
9712
9747
|
*/
|
|
9713
|
-
addComponentAsRefTo: function (component, ref, owner
|
|
9748
|
+
addComponentAsRefTo: function (component, ref, owner) {
|
|
9714
9749
|
!isValidOwner(owner) ? "development" !== 'production' ? invariant(false, 'addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component\'s `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-have-owner).') : _prodInvariant('119') : void 0;
|
|
9715
|
-
owner.attachRef(ref, component
|
|
9750
|
+
owner.attachRef(ref, component);
|
|
9716
9751
|
},
|
|
9717
9752
|
|
|
9718
9753
|
/**
|
|
@@ -9737,7 +9772,7 @@ var ReactOwner = {
|
|
|
9737
9772
|
};
|
|
9738
9773
|
|
|
9739
9774
|
module.exports = ReactOwner;
|
|
9740
|
-
},{"
|
|
9775
|
+
},{"116":116,"140":140}],65:[function(_dereq_,module,exports){
|
|
9741
9776
|
/**
|
|
9742
9777
|
* Copyright 2013-present, Facebook, Inc.
|
|
9743
9778
|
* All rights reserved.
|
|
@@ -9792,7 +9827,7 @@ module.exports = ReactPropTypesSecret;
|
|
|
9792
9827
|
|
|
9793
9828
|
'use strict';
|
|
9794
9829
|
|
|
9795
|
-
var _assign = _dereq_(
|
|
9830
|
+
var _assign = _dereq_(148);
|
|
9796
9831
|
|
|
9797
9832
|
var CallbackQueue = _dereq_(6);
|
|
9798
9833
|
var PooledClass = _dereq_(24);
|
|
@@ -9957,7 +9992,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction, Mixin);
|
|
|
9957
9992
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
9958
9993
|
|
|
9959
9994
|
module.exports = ReactReconcileTransaction;
|
|
9960
|
-
},{"
|
|
9995
|
+
},{"148":148,"24":24,"25":25,"57":57,"59":59,"6":6,"74":74,"93":93}],68:[function(_dereq_,module,exports){
|
|
9961
9996
|
/**
|
|
9962
9997
|
* Copyright 2013-present, Facebook, Inc.
|
|
9963
9998
|
* All rights reserved.
|
|
@@ -9973,14 +10008,14 @@ module.exports = ReactReconcileTransaction;
|
|
|
9973
10008
|
var ReactRef = _dereq_(69);
|
|
9974
10009
|
var ReactInstrumentation = _dereq_(59);
|
|
9975
10010
|
|
|
9976
|
-
var warning = _dereq_(
|
|
10011
|
+
var warning = _dereq_(147);
|
|
9977
10012
|
|
|
9978
10013
|
/**
|
|
9979
10014
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
9980
10015
|
* to avoid allocations in the transaction mount-ready queue.
|
|
9981
10016
|
*/
|
|
9982
|
-
function attachRefs(
|
|
9983
|
-
ReactRef.attachRefs(this, this._currentElement
|
|
10017
|
+
function attachRefs() {
|
|
10018
|
+
ReactRef.attachRefs(this, this._currentElement);
|
|
9984
10019
|
}
|
|
9985
10020
|
|
|
9986
10021
|
var ReactReconciler = {
|
|
@@ -10125,7 +10160,7 @@ var ReactReconciler = {
|
|
|
10125
10160
|
};
|
|
10126
10161
|
|
|
10127
10162
|
module.exports = ReactReconciler;
|
|
10128
|
-
},{"
|
|
10163
|
+
},{"147":147,"59":59,"69":69}],69:[function(_dereq_,module,exports){
|
|
10129
10164
|
/**
|
|
10130
10165
|
* Copyright 2013-present, Facebook, Inc.
|
|
10131
10166
|
* All rights reserved.
|
|
@@ -10143,12 +10178,12 @@ var ReactOwner = _dereq_(64);
|
|
|
10143
10178
|
|
|
10144
10179
|
var ReactRef = {};
|
|
10145
10180
|
|
|
10146
|
-
function attachRef(ref, component, owner
|
|
10181
|
+
function attachRef(ref, component, owner) {
|
|
10147
10182
|
if (typeof ref === 'function') {
|
|
10148
|
-
ref(component.getPublicInstance(
|
|
10183
|
+
ref(component.getPublicInstance());
|
|
10149
10184
|
} else {
|
|
10150
10185
|
// Legacy ref
|
|
10151
|
-
ReactOwner.addComponentAsRefTo(component, ref, owner
|
|
10186
|
+
ReactOwner.addComponentAsRefTo(component, ref, owner);
|
|
10152
10187
|
}
|
|
10153
10188
|
}
|
|
10154
10189
|
|
|
@@ -10161,13 +10196,13 @@ function detachRef(ref, component, owner) {
|
|
|
10161
10196
|
}
|
|
10162
10197
|
}
|
|
10163
10198
|
|
|
10164
|
-
ReactRef.attachRefs = function (instance, element
|
|
10199
|
+
ReactRef.attachRefs = function (instance, element) {
|
|
10165
10200
|
if (element === null || typeof element !== 'object') {
|
|
10166
10201
|
return;
|
|
10167
10202
|
}
|
|
10168
10203
|
var ref = element.ref;
|
|
10169
10204
|
if (ref != null) {
|
|
10170
|
-
attachRef(ref, instance, element._owner
|
|
10205
|
+
attachRef(ref, instance, element._owner);
|
|
10171
10206
|
}
|
|
10172
10207
|
};
|
|
10173
10208
|
|
|
@@ -10248,9 +10283,9 @@ module.exports = ReactServerBatchingStrategy;
|
|
|
10248
10283
|
*/
|
|
10249
10284
|
'use strict';
|
|
10250
10285
|
|
|
10251
|
-
var _prodInvariant = _dereq_(
|
|
10286
|
+
var _prodInvariant = _dereq_(116);
|
|
10252
10287
|
|
|
10253
|
-
var React = _dereq_(
|
|
10288
|
+
var React = _dereq_(124);
|
|
10254
10289
|
var ReactDOMContainerInfo = _dereq_(33);
|
|
10255
10290
|
var ReactDefaultBatchingStrategy = _dereq_(46);
|
|
10256
10291
|
var ReactInstrumentation = _dereq_(59);
|
|
@@ -10260,9 +10295,9 @@ var ReactServerBatchingStrategy = _dereq_(70);
|
|
|
10260
10295
|
var ReactServerRenderingTransaction = _dereq_(72);
|
|
10261
10296
|
var ReactUpdates = _dereq_(75);
|
|
10262
10297
|
|
|
10263
|
-
var emptyObject = _dereq_(
|
|
10264
|
-
var instantiateReactComponent = _dereq_(
|
|
10265
|
-
var invariant = _dereq_(
|
|
10298
|
+
var emptyObject = _dereq_(133);
|
|
10299
|
+
var instantiateReactComponent = _dereq_(112);
|
|
10300
|
+
var invariant = _dereq_(140);
|
|
10266
10301
|
|
|
10267
10302
|
var pendingTransactions = 0;
|
|
10268
10303
|
|
|
@@ -10326,7 +10361,7 @@ module.exports = {
|
|
|
10326
10361
|
renderToString: renderToString,
|
|
10327
10362
|
renderToStaticMarkup: renderToStaticMarkup
|
|
10328
10363
|
};
|
|
10329
|
-
},{"
|
|
10364
|
+
},{"112":112,"116":116,"124":124,"133":133,"140":140,"33":33,"46":46,"59":59,"61":61,"68":68,"70":70,"72":72,"75":75}],72:[function(_dereq_,module,exports){
|
|
10330
10365
|
/**
|
|
10331
10366
|
* Copyright 2014-present, Facebook, Inc.
|
|
10332
10367
|
* All rights reserved.
|
|
@@ -10339,7 +10374,7 @@ module.exports = {
|
|
|
10339
10374
|
|
|
10340
10375
|
'use strict';
|
|
10341
10376
|
|
|
10342
|
-
var _assign = _dereq_(
|
|
10377
|
+
var _assign = _dereq_(148);
|
|
10343
10378
|
|
|
10344
10379
|
var PooledClass = _dereq_(24);
|
|
10345
10380
|
var Transaction = _dereq_(93);
|
|
@@ -10416,7 +10451,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction, Mixin);
|
|
|
10416
10451
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
10417
10452
|
|
|
10418
10453
|
module.exports = ReactServerRenderingTransaction;
|
|
10419
|
-
},{"
|
|
10454
|
+
},{"148":148,"24":24,"59":59,"73":73,"93":93}],73:[function(_dereq_,module,exports){
|
|
10420
10455
|
/**
|
|
10421
10456
|
* Copyright 2015-present, Facebook, Inc.
|
|
10422
10457
|
* All rights reserved.
|
|
@@ -10434,7 +10469,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
10434
10469
|
|
|
10435
10470
|
var ReactUpdateQueue = _dereq_(74);
|
|
10436
10471
|
|
|
10437
|
-
var warning = _dereq_(
|
|
10472
|
+
var warning = _dereq_(147);
|
|
10438
10473
|
|
|
10439
10474
|
function warnNoop(publicInstance, callerName) {
|
|
10440
10475
|
if ("development" !== 'production') {
|
|
@@ -10555,7 +10590,7 @@ var ReactServerUpdateQueue = function () {
|
|
|
10555
10590
|
}();
|
|
10556
10591
|
|
|
10557
10592
|
module.exports = ReactServerUpdateQueue;
|
|
10558
|
-
},{"
|
|
10593
|
+
},{"147":147,"74":74}],74:[function(_dereq_,module,exports){
|
|
10559
10594
|
/**
|
|
10560
10595
|
* Copyright 2015-present, Facebook, Inc.
|
|
10561
10596
|
* All rights reserved.
|
|
@@ -10568,15 +10603,15 @@ module.exports = ReactServerUpdateQueue;
|
|
|
10568
10603
|
|
|
10569
10604
|
'use strict';
|
|
10570
10605
|
|
|
10571
|
-
var _prodInvariant = _dereq_(
|
|
10606
|
+
var _prodInvariant = _dereq_(116);
|
|
10572
10607
|
|
|
10573
|
-
var ReactCurrentOwner = _dereq_(
|
|
10608
|
+
var ReactCurrentOwner = _dereq_(123);
|
|
10574
10609
|
var ReactInstanceMap = _dereq_(58);
|
|
10575
10610
|
var ReactInstrumentation = _dereq_(59);
|
|
10576
10611
|
var ReactUpdates = _dereq_(75);
|
|
10577
10612
|
|
|
10578
|
-
var invariant = _dereq_(
|
|
10579
|
-
var warning = _dereq_(
|
|
10613
|
+
var invariant = _dereq_(140);
|
|
10614
|
+
var warning = _dereq_(147);
|
|
10580
10615
|
|
|
10581
10616
|
function enqueueUpdate(internalInstance) {
|
|
10582
10617
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -10781,7 +10816,7 @@ var ReactUpdateQueue = {
|
|
|
10781
10816
|
};
|
|
10782
10817
|
|
|
10783
10818
|
module.exports = ReactUpdateQueue;
|
|
10784
|
-
},{"
|
|
10819
|
+
},{"116":116,"123":123,"140":140,"147":147,"58":58,"59":59,"75":75}],75:[function(_dereq_,module,exports){
|
|
10785
10820
|
/**
|
|
10786
10821
|
* Copyright 2013-present, Facebook, Inc.
|
|
10787
10822
|
* All rights reserved.
|
|
@@ -10794,8 +10829,8 @@ module.exports = ReactUpdateQueue;
|
|
|
10794
10829
|
|
|
10795
10830
|
'use strict';
|
|
10796
10831
|
|
|
10797
|
-
var _prodInvariant = _dereq_(
|
|
10798
|
-
_assign = _dereq_(
|
|
10832
|
+
var _prodInvariant = _dereq_(116),
|
|
10833
|
+
_assign = _dereq_(148);
|
|
10799
10834
|
|
|
10800
10835
|
var CallbackQueue = _dereq_(6);
|
|
10801
10836
|
var PooledClass = _dereq_(24);
|
|
@@ -10803,7 +10838,7 @@ var ReactFeatureFlags = _dereq_(53);
|
|
|
10803
10838
|
var ReactReconciler = _dereq_(68);
|
|
10804
10839
|
var Transaction = _dereq_(93);
|
|
10805
10840
|
|
|
10806
|
-
var invariant = _dereq_(
|
|
10841
|
+
var invariant = _dereq_(140);
|
|
10807
10842
|
|
|
10808
10843
|
var dirtyComponents = [];
|
|
10809
10844
|
var updateBatchNumber = 0;
|
|
@@ -11032,7 +11067,7 @@ var ReactUpdates = {
|
|
|
11032
11067
|
};
|
|
11033
11068
|
|
|
11034
11069
|
module.exports = ReactUpdates;
|
|
11035
|
-
},{"
|
|
11070
|
+
},{"116":116,"140":140,"148":148,"24":24,"53":53,"6":6,"68":68,"93":93}],76:[function(_dereq_,module,exports){
|
|
11036
11071
|
/**
|
|
11037
11072
|
* Copyright 2013-present, Facebook, Inc.
|
|
11038
11073
|
* All rights reserved.
|
|
@@ -11045,7 +11080,7 @@ module.exports = ReactUpdates;
|
|
|
11045
11080
|
|
|
11046
11081
|
'use strict';
|
|
11047
11082
|
|
|
11048
|
-
module.exports = '15.4.
|
|
11083
|
+
module.exports = '15.4.2';
|
|
11049
11084
|
},{}],77:[function(_dereq_,module,exports){
|
|
11050
11085
|
/**
|
|
11051
11086
|
* Copyright 2013-present, Facebook, Inc.
|
|
@@ -11362,14 +11397,14 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
11362
11397
|
'use strict';
|
|
11363
11398
|
|
|
11364
11399
|
var EventPropagators = _dereq_(19);
|
|
11365
|
-
var ExecutionEnvironment = _dereq_(
|
|
11400
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
11366
11401
|
var ReactDOMComponentTree = _dereq_(32);
|
|
11367
11402
|
var ReactInputSelection = _dereq_(57);
|
|
11368
11403
|
var SyntheticEvent = _dereq_(84);
|
|
11369
11404
|
|
|
11370
|
-
var getActiveElement = _dereq_(
|
|
11371
|
-
var isTextInputElement = _dereq_(
|
|
11372
|
-
var shallowEqual = _dereq_(
|
|
11405
|
+
var getActiveElement = _dereq_(135);
|
|
11406
|
+
var isTextInputElement = _dereq_(114);
|
|
11407
|
+
var shallowEqual = _dereq_(146);
|
|
11373
11408
|
|
|
11374
11409
|
var skipSelectionChangeEvent = ExecutionEnvironment.canUseDOM && 'documentMode' in document && document.documentMode <= 11;
|
|
11375
11410
|
|
|
@@ -11539,7 +11574,7 @@ var SelectEventPlugin = {
|
|
|
11539
11574
|
};
|
|
11540
11575
|
|
|
11541
11576
|
module.exports = SelectEventPlugin;
|
|
11542
|
-
},{"
|
|
11577
|
+
},{"114":114,"126":126,"135":135,"146":146,"19":19,"32":32,"57":57,"84":84}],79:[function(_dereq_,module,exports){
|
|
11543
11578
|
/**
|
|
11544
11579
|
* Copyright 2013-present, Facebook, Inc.
|
|
11545
11580
|
* All rights reserved.
|
|
@@ -11553,9 +11588,9 @@ module.exports = SelectEventPlugin;
|
|
|
11553
11588
|
|
|
11554
11589
|
'use strict';
|
|
11555
11590
|
|
|
11556
|
-
var _prodInvariant = _dereq_(
|
|
11591
|
+
var _prodInvariant = _dereq_(116);
|
|
11557
11592
|
|
|
11558
|
-
var EventListener = _dereq_(
|
|
11593
|
+
var EventListener = _dereq_(125);
|
|
11559
11594
|
var EventPropagators = _dereq_(19);
|
|
11560
11595
|
var ReactDOMComponentTree = _dereq_(32);
|
|
11561
11596
|
var SyntheticAnimationEvent = _dereq_(80);
|
|
@@ -11570,9 +11605,9 @@ var SyntheticTransitionEvent = _dereq_(90);
|
|
|
11570
11605
|
var SyntheticUIEvent = _dereq_(91);
|
|
11571
11606
|
var SyntheticWheelEvent = _dereq_(92);
|
|
11572
11607
|
|
|
11573
|
-
var emptyFunction = _dereq_(
|
|
11608
|
+
var emptyFunction = _dereq_(132);
|
|
11574
11609
|
var getEventCharCode = _dereq_(103);
|
|
11575
|
-
var invariant = _dereq_(
|
|
11610
|
+
var invariant = _dereq_(140);
|
|
11576
11611
|
|
|
11577
11612
|
/**
|
|
11578
11613
|
* Turns
|
|
@@ -11622,18 +11657,6 @@ function isInteractive(tag) {
|
|
|
11622
11657
|
return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';
|
|
11623
11658
|
}
|
|
11624
11659
|
|
|
11625
|
-
function shouldPreventMouseEvent(inst) {
|
|
11626
|
-
if (inst) {
|
|
11627
|
-
var disabled = inst._currentElement && inst._currentElement.props.disabled;
|
|
11628
|
-
|
|
11629
|
-
if (disabled) {
|
|
11630
|
-
return isInteractive(inst._tag);
|
|
11631
|
-
}
|
|
11632
|
-
}
|
|
11633
|
-
|
|
11634
|
-
return false;
|
|
11635
|
-
}
|
|
11636
|
-
|
|
11637
11660
|
var SimpleEventPlugin = {
|
|
11638
11661
|
|
|
11639
11662
|
eventTypes: eventTypes,
|
|
@@ -11704,10 +11727,7 @@ var SimpleEventPlugin = {
|
|
|
11704
11727
|
case 'topMouseDown':
|
|
11705
11728
|
case 'topMouseMove':
|
|
11706
11729
|
case 'topMouseUp':
|
|
11707
|
-
|
|
11708
|
-
if (shouldPreventMouseEvent(targetInst)) {
|
|
11709
|
-
return null;
|
|
11710
|
-
}
|
|
11730
|
+
// TODO: Disabled elements should not respond to mouse events
|
|
11711
11731
|
/* falls through */
|
|
11712
11732
|
case 'topMouseOut':
|
|
11713
11733
|
case 'topMouseOver':
|
|
@@ -11782,7 +11802,7 @@ var SimpleEventPlugin = {
|
|
|
11782
11802
|
};
|
|
11783
11803
|
|
|
11784
11804
|
module.exports = SimpleEventPlugin;
|
|
11785
|
-
},{"103":103,"
|
|
11805
|
+
},{"103":103,"116":116,"125":125,"132":132,"140":140,"19":19,"32":32,"80":80,"81":81,"83":83,"84":84,"85":85,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92}],80:[function(_dereq_,module,exports){
|
|
11786
11806
|
/**
|
|
11787
11807
|
* Copyright 2013-present, Facebook, Inc.
|
|
11788
11808
|
* All rights reserved.
|
|
@@ -11944,12 +11964,12 @@ module.exports = SyntheticDragEvent;
|
|
|
11944
11964
|
|
|
11945
11965
|
'use strict';
|
|
11946
11966
|
|
|
11947
|
-
var _assign = _dereq_(
|
|
11967
|
+
var _assign = _dereq_(148);
|
|
11948
11968
|
|
|
11949
11969
|
var PooledClass = _dereq_(24);
|
|
11950
11970
|
|
|
11951
|
-
var emptyFunction = _dereq_(
|
|
11952
|
-
var warning = _dereq_(
|
|
11971
|
+
var emptyFunction = _dereq_(132);
|
|
11972
|
+
var warning = _dereq_(147);
|
|
11953
11973
|
|
|
11954
11974
|
var didWarnForAddedNewProperty = false;
|
|
11955
11975
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -12199,7 +12219,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
12199
12219
|
"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;
|
|
12200
12220
|
}
|
|
12201
12221
|
}
|
|
12202
|
-
},{"
|
|
12222
|
+
},{"132":132,"147":147,"148":148,"24":24}],85:[function(_dereq_,module,exports){
|
|
12203
12223
|
/**
|
|
12204
12224
|
* Copyright 2013-present, Facebook, Inc.
|
|
12205
12225
|
* All rights reserved.
|
|
@@ -12639,9 +12659,9 @@ module.exports = SyntheticWheelEvent;
|
|
|
12639
12659
|
|
|
12640
12660
|
'use strict';
|
|
12641
12661
|
|
|
12642
|
-
var _prodInvariant = _dereq_(
|
|
12662
|
+
var _prodInvariant = _dereq_(116);
|
|
12643
12663
|
|
|
12644
|
-
var invariant = _dereq_(
|
|
12664
|
+
var invariant = _dereq_(140);
|
|
12645
12665
|
|
|
12646
12666
|
var OBSERVED_ERROR = {};
|
|
12647
12667
|
|
|
@@ -12850,7 +12870,7 @@ var TransactionImpl = {
|
|
|
12850
12870
|
};
|
|
12851
12871
|
|
|
12852
12872
|
module.exports = TransactionImpl;
|
|
12853
|
-
},{"
|
|
12873
|
+
},{"116":116,"140":140}],94:[function(_dereq_,module,exports){
|
|
12854
12874
|
/**
|
|
12855
12875
|
* Copyright 2013-present, Facebook, Inc.
|
|
12856
12876
|
* All rights reserved.
|
|
@@ -12891,9 +12911,9 @@ module.exports = ViewportMetrics;
|
|
|
12891
12911
|
|
|
12892
12912
|
'use strict';
|
|
12893
12913
|
|
|
12894
|
-
var _prodInvariant = _dereq_(
|
|
12914
|
+
var _prodInvariant = _dereq_(116);
|
|
12895
12915
|
|
|
12896
|
-
var invariant = _dereq_(
|
|
12916
|
+
var invariant = _dereq_(140);
|
|
12897
12917
|
|
|
12898
12918
|
/**
|
|
12899
12919
|
* Accumulates items that must not be null or undefined into the first one. This
|
|
@@ -12935,7 +12955,7 @@ function accumulateInto(current, next) {
|
|
|
12935
12955
|
}
|
|
12936
12956
|
|
|
12937
12957
|
module.exports = accumulateInto;
|
|
12938
|
-
},{"
|
|
12958
|
+
},{"116":116,"140":140}],96:[function(_dereq_,module,exports){
|
|
12939
12959
|
/**
|
|
12940
12960
|
* Copyright 2013-present, Facebook, Inc.
|
|
12941
12961
|
* All rights reserved.
|
|
@@ -12993,13 +13013,13 @@ module.exports = adler32;
|
|
|
12993
13013
|
|
|
12994
13014
|
'use strict';
|
|
12995
13015
|
|
|
12996
|
-
var _prodInvariant = _dereq_(
|
|
13016
|
+
var _prodInvariant = _dereq_(116);
|
|
12997
13017
|
|
|
12998
13018
|
var ReactPropTypeLocationNames = _dereq_(65);
|
|
12999
13019
|
var ReactPropTypesSecret = _dereq_(66);
|
|
13000
13020
|
|
|
13001
|
-
var invariant = _dereq_(
|
|
13002
|
-
var warning = _dereq_(
|
|
13021
|
+
var invariant = _dereq_(140);
|
|
13022
|
+
var warning = _dereq_(147);
|
|
13003
13023
|
|
|
13004
13024
|
var ReactComponentTreeHook;
|
|
13005
13025
|
|
|
@@ -13009,7 +13029,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
|
13009
13029
|
// https://github.com/facebook/react/issues/7240
|
|
13010
13030
|
// Remove the inline requires when we don't need them anymore:
|
|
13011
13031
|
// https://github.com/facebook/react/pull/7178
|
|
13012
|
-
ReactComponentTreeHook = _dereq_(
|
|
13032
|
+
ReactComponentTreeHook = _dereq_(122);
|
|
13013
13033
|
}
|
|
13014
13034
|
|
|
13015
13035
|
var loggedTypeFailures = {};
|
|
@@ -13051,7 +13071,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
13051
13071
|
|
|
13052
13072
|
if ("development" !== 'production') {
|
|
13053
13073
|
if (!ReactComponentTreeHook) {
|
|
13054
|
-
ReactComponentTreeHook = _dereq_(
|
|
13074
|
+
ReactComponentTreeHook = _dereq_(122);
|
|
13055
13075
|
}
|
|
13056
13076
|
if (debugID !== null) {
|
|
13057
13077
|
componentStackInfo = ReactComponentTreeHook.getStackAddendumByID(debugID);
|
|
@@ -13068,7 +13088,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
13068
13088
|
|
|
13069
13089
|
module.exports = checkReactTypeSpec;
|
|
13070
13090
|
}).call(this,undefined)
|
|
13071
|
-
},{"
|
|
13091
|
+
},{"116":116,"122":122,"140":140,"147":147,"65":65,"66":66}],98:[function(_dereq_,module,exports){
|
|
13072
13092
|
/**
|
|
13073
13093
|
* Copyright 2013-present, Facebook, Inc.
|
|
13074
13094
|
* All rights reserved.
|
|
@@ -13114,7 +13134,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
13114
13134
|
'use strict';
|
|
13115
13135
|
|
|
13116
13136
|
var CSSProperty = _dereq_(4);
|
|
13117
|
-
var warning = _dereq_(
|
|
13137
|
+
var warning = _dereq_(147);
|
|
13118
13138
|
|
|
13119
13139
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
13120
13140
|
var styleWarnings = {};
|
|
@@ -13179,7 +13199,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
13179
13199
|
}
|
|
13180
13200
|
|
|
13181
13201
|
module.exports = dangerousStyleValue;
|
|
13182
|
-
},{"
|
|
13202
|
+
},{"147":147,"4":4}],100:[function(_dereq_,module,exports){
|
|
13183
13203
|
/**
|
|
13184
13204
|
* Copyright 2016-present, Facebook, Inc.
|
|
13185
13205
|
* All rights reserved.
|
|
@@ -13318,8 +13338,8 @@ module.exports = escapeTextContentForBrowser;
|
|
|
13318
13338
|
'use strict';
|
|
13319
13339
|
|
|
13320
13340
|
var KeyEscapeUtils = _dereq_(22);
|
|
13321
|
-
var traverseAllChildren = _dereq_(
|
|
13322
|
-
var warning = _dereq_(
|
|
13341
|
+
var traverseAllChildren = _dereq_(120);
|
|
13342
|
+
var warning = _dereq_(147);
|
|
13323
13343
|
|
|
13324
13344
|
var ReactComponentTreeHook;
|
|
13325
13345
|
|
|
@@ -13329,7 +13349,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
|
13329
13349
|
// https://github.com/facebook/react/issues/7240
|
|
13330
13350
|
// Remove the inline requires when we don't need them anymore:
|
|
13331
13351
|
// https://github.com/facebook/react/pull/7178
|
|
13332
|
-
ReactComponentTreeHook = _dereq_(
|
|
13352
|
+
ReactComponentTreeHook = _dereq_(122);
|
|
13333
13353
|
}
|
|
13334
13354
|
|
|
13335
13355
|
/**
|
|
@@ -13345,7 +13365,7 @@ function flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID
|
|
|
13345
13365
|
var keyUnique = result[name] === undefined;
|
|
13346
13366
|
if ("development" !== 'production') {
|
|
13347
13367
|
if (!ReactComponentTreeHook) {
|
|
13348
|
-
ReactComponentTreeHook = _dereq_(
|
|
13368
|
+
ReactComponentTreeHook = _dereq_(122);
|
|
13349
13369
|
}
|
|
13350
13370
|
if (!keyUnique) {
|
|
13351
13371
|
"development" !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;
|
|
@@ -13380,7 +13400,7 @@ function flattenChildren(children, selfDebugID) {
|
|
|
13380
13400
|
|
|
13381
13401
|
module.exports = flattenChildren;
|
|
13382
13402
|
}).call(this,undefined)
|
|
13383
|
-
},{"
|
|
13403
|
+
},{"120":120,"122":122,"147":147,"22":22}],102:[function(_dereq_,module,exports){
|
|
13384
13404
|
/**
|
|
13385
13405
|
* Copyright 2013-present, Facebook, Inc.
|
|
13386
13406
|
* All rights reserved.
|
|
@@ -13683,6 +13703,27 @@ function getIteratorFn(maybeIterable) {
|
|
|
13683
13703
|
|
|
13684
13704
|
module.exports = getIteratorFn;
|
|
13685
13705
|
},{}],108:[function(_dereq_,module,exports){
|
|
13706
|
+
/**
|
|
13707
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
13708
|
+
* All rights reserved.
|
|
13709
|
+
*
|
|
13710
|
+
* This source code is licensed under the BSD-style license found in the
|
|
13711
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
13712
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
13713
|
+
*
|
|
13714
|
+
*
|
|
13715
|
+
*/
|
|
13716
|
+
|
|
13717
|
+
'use strict';
|
|
13718
|
+
|
|
13719
|
+
var nextDebugID = 1;
|
|
13720
|
+
|
|
13721
|
+
function getNextDebugID() {
|
|
13722
|
+
return nextDebugID++;
|
|
13723
|
+
}
|
|
13724
|
+
|
|
13725
|
+
module.exports = getNextDebugID;
|
|
13726
|
+
},{}],109:[function(_dereq_,module,exports){
|
|
13686
13727
|
/**
|
|
13687
13728
|
* Copyright 2013-present, Facebook, Inc.
|
|
13688
13729
|
* All rights reserved.
|
|
@@ -13756,7 +13797,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
13756
13797
|
}
|
|
13757
13798
|
|
|
13758
13799
|
module.exports = getNodeForCharacterOffset;
|
|
13759
|
-
},{}],
|
|
13800
|
+
},{}],110:[function(_dereq_,module,exports){
|
|
13760
13801
|
/**
|
|
13761
13802
|
* Copyright 2013-present, Facebook, Inc.
|
|
13762
13803
|
* All rights reserved.
|
|
@@ -13769,7 +13810,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
13769
13810
|
|
|
13770
13811
|
'use strict';
|
|
13771
13812
|
|
|
13772
|
-
var ExecutionEnvironment = _dereq_(
|
|
13813
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
13773
13814
|
|
|
13774
13815
|
var contentKey = null;
|
|
13775
13816
|
|
|
@@ -13789,7 +13830,7 @@ function getTextContentAccessor() {
|
|
|
13789
13830
|
}
|
|
13790
13831
|
|
|
13791
13832
|
module.exports = getTextContentAccessor;
|
|
13792
|
-
},{"
|
|
13833
|
+
},{"126":126}],111:[function(_dereq_,module,exports){
|
|
13793
13834
|
/**
|
|
13794
13835
|
* Copyright 2013-present, Facebook, Inc.
|
|
13795
13836
|
* All rights reserved.
|
|
@@ -13802,7 +13843,7 @@ module.exports = getTextContentAccessor;
|
|
|
13802
13843
|
|
|
13803
13844
|
'use strict';
|
|
13804
13845
|
|
|
13805
|
-
var ExecutionEnvironment = _dereq_(
|
|
13846
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
13806
13847
|
|
|
13807
13848
|
/**
|
|
13808
13849
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -13890,7 +13931,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
13890
13931
|
}
|
|
13891
13932
|
|
|
13892
13933
|
module.exports = getVendorPrefixedEventName;
|
|
13893
|
-
},{"
|
|
13934
|
+
},{"126":126}],112:[function(_dereq_,module,exports){
|
|
13894
13935
|
/**
|
|
13895
13936
|
* Copyright 2013-present, Facebook, Inc.
|
|
13896
13937
|
* All rights reserved.
|
|
@@ -13903,15 +13944,16 @@ module.exports = getVendorPrefixedEventName;
|
|
|
13903
13944
|
|
|
13904
13945
|
'use strict';
|
|
13905
13946
|
|
|
13906
|
-
var _prodInvariant = _dereq_(
|
|
13907
|
-
_assign = _dereq_(
|
|
13947
|
+
var _prodInvariant = _dereq_(116),
|
|
13948
|
+
_assign = _dereq_(148);
|
|
13908
13949
|
|
|
13909
13950
|
var ReactCompositeComponent = _dereq_(29);
|
|
13910
13951
|
var ReactEmptyComponent = _dereq_(49);
|
|
13911
13952
|
var ReactHostComponent = _dereq_(54);
|
|
13912
13953
|
|
|
13913
|
-
var
|
|
13914
|
-
var
|
|
13954
|
+
var getNextDebugID = _dereq_(108);
|
|
13955
|
+
var invariant = _dereq_(140);
|
|
13956
|
+
var warning = _dereq_(147);
|
|
13915
13957
|
|
|
13916
13958
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
13917
13959
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -13942,8 +13984,6 @@ function isInternalComponentType(type) {
|
|
|
13942
13984
|
return typeof type === 'function' && typeof type.prototype !== 'undefined' && typeof type.prototype.mountComponent === 'function' && typeof type.prototype.receiveComponent === 'function';
|
|
13943
13985
|
}
|
|
13944
13986
|
|
|
13945
|
-
var nextDebugID = 1;
|
|
13946
|
-
|
|
13947
13987
|
/**
|
|
13948
13988
|
* Given a ReactNode, create an instance that will actually be mounted.
|
|
13949
13989
|
*
|
|
@@ -13959,7 +13999,17 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
13959
13999
|
instance = ReactEmptyComponent.create(instantiateReactComponent);
|
|
13960
14000
|
} else if (typeof node === 'object') {
|
|
13961
14001
|
var element = node;
|
|
13962
|
-
|
|
14002
|
+
var type = element.type;
|
|
14003
|
+
if (typeof type !== 'function' && typeof type !== 'string') {
|
|
14004
|
+
var info = '';
|
|
14005
|
+
if ("development" !== 'production') {
|
|
14006
|
+
if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
|
|
14007
|
+
info += ' You likely forgot to export your component from the file ' + 'it\'s defined in.';
|
|
14008
|
+
}
|
|
14009
|
+
}
|
|
14010
|
+
info += getDeclarationErrorAddendum(element._owner);
|
|
14011
|
+
!false ? "development" !== 'production' ? invariant(false, 'Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s', type == null ? type : typeof type, info) : _prodInvariant('130', type == null ? type : typeof type, info) : void 0;
|
|
14012
|
+
}
|
|
13963
14013
|
|
|
13964
14014
|
// Special case string values
|
|
13965
14015
|
if (typeof element.type === 'string') {
|
|
@@ -13994,7 +14044,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
13994
14044
|
instance._mountImage = null;
|
|
13995
14045
|
|
|
13996
14046
|
if ("development" !== 'production') {
|
|
13997
|
-
instance._debugID = shouldHaveDebugID ?
|
|
14047
|
+
instance._debugID = shouldHaveDebugID ? getNextDebugID() : 0;
|
|
13998
14048
|
}
|
|
13999
14049
|
|
|
14000
14050
|
// Internal instances should fully constructed at this point, so they should
|
|
@@ -14009,7 +14059,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
14009
14059
|
}
|
|
14010
14060
|
|
|
14011
14061
|
module.exports = instantiateReactComponent;
|
|
14012
|
-
},{"
|
|
14062
|
+
},{"108":108,"116":116,"140":140,"147":147,"148":148,"29":29,"49":49,"54":54}],113:[function(_dereq_,module,exports){
|
|
14013
14063
|
/**
|
|
14014
14064
|
* Copyright 2013-present, Facebook, Inc.
|
|
14015
14065
|
* All rights reserved.
|
|
@@ -14022,7 +14072,7 @@ module.exports = instantiateReactComponent;
|
|
|
14022
14072
|
|
|
14023
14073
|
'use strict';
|
|
14024
14074
|
|
|
14025
|
-
var ExecutionEnvironment = _dereq_(
|
|
14075
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
14026
14076
|
|
|
14027
14077
|
var useHasFeature;
|
|
14028
14078
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -14069,7 +14119,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
14069
14119
|
}
|
|
14070
14120
|
|
|
14071
14121
|
module.exports = isEventSupported;
|
|
14072
|
-
},{"
|
|
14122
|
+
},{"126":126}],114:[function(_dereq_,module,exports){
|
|
14073
14123
|
/**
|
|
14074
14124
|
* Copyright 2013-present, Facebook, Inc.
|
|
14075
14125
|
* All rights reserved.
|
|
@@ -14120,7 +14170,7 @@ function isTextInputElement(elem) {
|
|
|
14120
14170
|
}
|
|
14121
14171
|
|
|
14122
14172
|
module.exports = isTextInputElement;
|
|
14123
|
-
},{}],
|
|
14173
|
+
},{}],115:[function(_dereq_,module,exports){
|
|
14124
14174
|
/**
|
|
14125
14175
|
* Copyright 2013-present, Facebook, Inc.
|
|
14126
14176
|
* All rights reserved.
|
|
@@ -14146,7 +14196,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
14146
14196
|
}
|
|
14147
14197
|
|
|
14148
14198
|
module.exports = quoteAttributeValueForBrowser;
|
|
14149
|
-
},{"100":100}],
|
|
14199
|
+
},{"100":100}],116:[function(_dereq_,module,exports){
|
|
14150
14200
|
/**
|
|
14151
14201
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
14152
14202
|
* All rights reserved.
|
|
@@ -14185,7 +14235,7 @@ function reactProdInvariant(code) {
|
|
|
14185
14235
|
}
|
|
14186
14236
|
|
|
14187
14237
|
module.exports = reactProdInvariant;
|
|
14188
|
-
},{}],
|
|
14238
|
+
},{}],117:[function(_dereq_,module,exports){
|
|
14189
14239
|
/**
|
|
14190
14240
|
* Copyright 2013-present, Facebook, Inc.
|
|
14191
14241
|
* All rights reserved.
|
|
@@ -14198,7 +14248,7 @@ module.exports = reactProdInvariant;
|
|
|
14198
14248
|
|
|
14199
14249
|
'use strict';
|
|
14200
14250
|
|
|
14201
|
-
var ExecutionEnvironment = _dereq_(
|
|
14251
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
14202
14252
|
var DOMNamespaces = _dereq_(10);
|
|
14203
14253
|
|
|
14204
14254
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
@@ -14283,7 +14333,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
14283
14333
|
}
|
|
14284
14334
|
|
|
14285
14335
|
module.exports = setInnerHTML;
|
|
14286
|
-
},{"10":10,"
|
|
14336
|
+
},{"10":10,"126":126,"98":98}],118:[function(_dereq_,module,exports){
|
|
14287
14337
|
/**
|
|
14288
14338
|
* Copyright 2013-present, Facebook, Inc.
|
|
14289
14339
|
* All rights reserved.
|
|
@@ -14296,9 +14346,9 @@ module.exports = setInnerHTML;
|
|
|
14296
14346
|
|
|
14297
14347
|
'use strict';
|
|
14298
14348
|
|
|
14299
|
-
var ExecutionEnvironment = _dereq_(
|
|
14349
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
14300
14350
|
var escapeTextContentForBrowser = _dereq_(100);
|
|
14301
|
-
var setInnerHTML = _dereq_(
|
|
14351
|
+
var setInnerHTML = _dereq_(117);
|
|
14302
14352
|
|
|
14303
14353
|
/**
|
|
14304
14354
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -14335,7 +14385,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
14335
14385
|
}
|
|
14336
14386
|
|
|
14337
14387
|
module.exports = setTextContent;
|
|
14338
|
-
},{"100":100,"
|
|
14388
|
+
},{"100":100,"117":117,"126":126}],119:[function(_dereq_,module,exports){
|
|
14339
14389
|
/**
|
|
14340
14390
|
* Copyright 2013-present, Facebook, Inc.
|
|
14341
14391
|
* All rights reserved.
|
|
@@ -14377,7 +14427,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
14377
14427
|
}
|
|
14378
14428
|
|
|
14379
14429
|
module.exports = shouldUpdateReactComponent;
|
|
14380
|
-
},{}],
|
|
14430
|
+
},{}],120:[function(_dereq_,module,exports){
|
|
14381
14431
|
/**
|
|
14382
14432
|
* Copyright 2013-present, Facebook, Inc.
|
|
14383
14433
|
* All rights reserved.
|
|
@@ -14390,15 +14440,15 @@ module.exports = shouldUpdateReactComponent;
|
|
|
14390
14440
|
|
|
14391
14441
|
'use strict';
|
|
14392
14442
|
|
|
14393
|
-
var _prodInvariant = _dereq_(
|
|
14443
|
+
var _prodInvariant = _dereq_(116);
|
|
14394
14444
|
|
|
14395
|
-
var ReactCurrentOwner = _dereq_(
|
|
14445
|
+
var ReactCurrentOwner = _dereq_(123);
|
|
14396
14446
|
var REACT_ELEMENT_TYPE = _dereq_(48);
|
|
14397
14447
|
|
|
14398
14448
|
var getIteratorFn = _dereq_(107);
|
|
14399
|
-
var invariant = _dereq_(
|
|
14449
|
+
var invariant = _dereq_(140);
|
|
14400
14450
|
var KeyEscapeUtils = _dereq_(22);
|
|
14401
|
-
var warning = _dereq_(
|
|
14451
|
+
var warning = _dereq_(147);
|
|
14402
14452
|
|
|
14403
14453
|
var SEPARATOR = '.';
|
|
14404
14454
|
var SUBSEPARATOR = ':';
|
|
@@ -14553,7 +14603,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
14553
14603
|
}
|
|
14554
14604
|
|
|
14555
14605
|
module.exports = traverseAllChildren;
|
|
14556
|
-
},{"107":107,"
|
|
14606
|
+
},{"107":107,"116":116,"123":123,"140":140,"147":147,"22":22,"48":48}],121:[function(_dereq_,module,exports){
|
|
14557
14607
|
/**
|
|
14558
14608
|
* Copyright 2015-present, Facebook, Inc.
|
|
14559
14609
|
* All rights reserved.
|
|
@@ -14566,10 +14616,10 @@ module.exports = traverseAllChildren;
|
|
|
14566
14616
|
|
|
14567
14617
|
'use strict';
|
|
14568
14618
|
|
|
14569
|
-
var _assign = _dereq_(
|
|
14619
|
+
var _assign = _dereq_(148);
|
|
14570
14620
|
|
|
14571
|
-
var emptyFunction = _dereq_(
|
|
14572
|
-
var warning = _dereq_(
|
|
14621
|
+
var emptyFunction = _dereq_(132);
|
|
14622
|
+
var warning = _dereq_(147);
|
|
14573
14623
|
|
|
14574
14624
|
var validateDOMNesting = emptyFunction;
|
|
14575
14625
|
|
|
@@ -14935,7 +14985,7 @@ if ("development" !== 'production') {
|
|
|
14935
14985
|
}
|
|
14936
14986
|
|
|
14937
14987
|
module.exports = validateDOMNesting;
|
|
14938
|
-
},{"
|
|
14988
|
+
},{"132":132,"147":147,"148":148}],122:[function(_dereq_,module,exports){
|
|
14939
14989
|
/**
|
|
14940
14990
|
* Copyright 2013-present, Facebook, Inc.
|
|
14941
14991
|
* All rights reserved.
|
|
@@ -14953,7 +15003,7 @@ module.exports = validateDOMNesting;
|
|
|
14953
15003
|
var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
14954
15004
|
|
|
14955
15005
|
module.exports = ReactInternals.ReactComponentTreeHook;
|
|
14956
|
-
},{}],
|
|
15006
|
+
},{}],123:[function(_dereq_,module,exports){
|
|
14957
15007
|
/**
|
|
14958
15008
|
* Copyright 2013-present, Facebook, Inc.
|
|
14959
15009
|
* All rights reserved.
|
|
@@ -14971,7 +15021,7 @@ module.exports = ReactInternals.ReactComponentTreeHook;
|
|
|
14971
15021
|
var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
14972
15022
|
|
|
14973
15023
|
module.exports = ReactInternals.ReactCurrentOwner;
|
|
14974
|
-
},{}],
|
|
15024
|
+
},{}],124:[function(_dereq_,module,exports){
|
|
14975
15025
|
/**
|
|
14976
15026
|
* Copyright 2013-present, Facebook, Inc.
|
|
14977
15027
|
* All rights reserved.
|
|
@@ -14987,7 +15037,7 @@ module.exports = ReactInternals.ReactCurrentOwner;
|
|
|
14987
15037
|
'use strict';
|
|
14988
15038
|
|
|
14989
15039
|
module.exports = React;
|
|
14990
|
-
},{}],
|
|
15040
|
+
},{}],125:[function(_dereq_,module,exports){
|
|
14991
15041
|
'use strict';
|
|
14992
15042
|
|
|
14993
15043
|
/**
|
|
@@ -15008,7 +15058,7 @@ module.exports = React;
|
|
|
15008
15058
|
* @typechecks
|
|
15009
15059
|
*/
|
|
15010
15060
|
|
|
15011
|
-
var emptyFunction = _dereq_(
|
|
15061
|
+
var emptyFunction = _dereq_(132);
|
|
15012
15062
|
|
|
15013
15063
|
/**
|
|
15014
15064
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -15071,7 +15121,7 @@ var EventListener = {
|
|
|
15071
15121
|
};
|
|
15072
15122
|
|
|
15073
15123
|
module.exports = EventListener;
|
|
15074
|
-
},{"
|
|
15124
|
+
},{"132":132}],126:[function(_dereq_,module,exports){
|
|
15075
15125
|
/**
|
|
15076
15126
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15077
15127
|
* All rights reserved.
|
|
@@ -15107,7 +15157,7 @@ var ExecutionEnvironment = {
|
|
|
15107
15157
|
};
|
|
15108
15158
|
|
|
15109
15159
|
module.exports = ExecutionEnvironment;
|
|
15110
|
-
},{}],
|
|
15160
|
+
},{}],127:[function(_dereq_,module,exports){
|
|
15111
15161
|
"use strict";
|
|
15112
15162
|
|
|
15113
15163
|
/**
|
|
@@ -15139,7 +15189,7 @@ function camelize(string) {
|
|
|
15139
15189
|
}
|
|
15140
15190
|
|
|
15141
15191
|
module.exports = camelize;
|
|
15142
|
-
},{}],
|
|
15192
|
+
},{}],128:[function(_dereq_,module,exports){
|
|
15143
15193
|
/**
|
|
15144
15194
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15145
15195
|
* All rights reserved.
|
|
@@ -15153,7 +15203,7 @@ module.exports = camelize;
|
|
|
15153
15203
|
|
|
15154
15204
|
'use strict';
|
|
15155
15205
|
|
|
15156
|
-
var camelize = _dereq_(
|
|
15206
|
+
var camelize = _dereq_(127);
|
|
15157
15207
|
|
|
15158
15208
|
var msPattern = /^-ms-/;
|
|
15159
15209
|
|
|
@@ -15179,7 +15229,7 @@ function camelizeStyleName(string) {
|
|
|
15179
15229
|
}
|
|
15180
15230
|
|
|
15181
15231
|
module.exports = camelizeStyleName;
|
|
15182
|
-
},{"
|
|
15232
|
+
},{"127":127}],129:[function(_dereq_,module,exports){
|
|
15183
15233
|
'use strict';
|
|
15184
15234
|
|
|
15185
15235
|
/**
|
|
@@ -15193,7 +15243,7 @@ module.exports = camelizeStyleName;
|
|
|
15193
15243
|
*
|
|
15194
15244
|
*/
|
|
15195
15245
|
|
|
15196
|
-
var isTextNode = _dereq_(
|
|
15246
|
+
var isTextNode = _dereq_(142);
|
|
15197
15247
|
|
|
15198
15248
|
/*eslint-disable no-bitwise */
|
|
15199
15249
|
|
|
@@ -15219,7 +15269,7 @@ function containsNode(outerNode, innerNode) {
|
|
|
15219
15269
|
}
|
|
15220
15270
|
|
|
15221
15271
|
module.exports = containsNode;
|
|
15222
|
-
},{"
|
|
15272
|
+
},{"142":142}],130:[function(_dereq_,module,exports){
|
|
15223
15273
|
'use strict';
|
|
15224
15274
|
|
|
15225
15275
|
/**
|
|
@@ -15233,7 +15283,7 @@ module.exports = containsNode;
|
|
|
15233
15283
|
* @typechecks
|
|
15234
15284
|
*/
|
|
15235
15285
|
|
|
15236
|
-
var invariant = _dereq_(
|
|
15286
|
+
var invariant = _dereq_(140);
|
|
15237
15287
|
|
|
15238
15288
|
/**
|
|
15239
15289
|
* Convert array-like objects to arrays.
|
|
@@ -15346,7 +15396,7 @@ function createArrayFromMixed(obj) {
|
|
|
15346
15396
|
}
|
|
15347
15397
|
|
|
15348
15398
|
module.exports = createArrayFromMixed;
|
|
15349
|
-
},{"
|
|
15399
|
+
},{"140":140}],131:[function(_dereq_,module,exports){
|
|
15350
15400
|
'use strict';
|
|
15351
15401
|
|
|
15352
15402
|
/**
|
|
@@ -15362,11 +15412,11 @@ module.exports = createArrayFromMixed;
|
|
|
15362
15412
|
|
|
15363
15413
|
/*eslint-disable fb-www/unsafe-html*/
|
|
15364
15414
|
|
|
15365
|
-
var ExecutionEnvironment = _dereq_(
|
|
15415
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
15366
15416
|
|
|
15367
|
-
var createArrayFromMixed = _dereq_(
|
|
15368
|
-
var getMarkupWrap = _dereq_(
|
|
15369
|
-
var invariant = _dereq_(
|
|
15417
|
+
var createArrayFromMixed = _dereq_(130);
|
|
15418
|
+
var getMarkupWrap = _dereq_(136);
|
|
15419
|
+
var invariant = _dereq_(140);
|
|
15370
15420
|
|
|
15371
15421
|
/**
|
|
15372
15422
|
* Dummy container used to render all markup.
|
|
@@ -15430,7 +15480,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
15430
15480
|
}
|
|
15431
15481
|
|
|
15432
15482
|
module.exports = createNodesFromMarkup;
|
|
15433
|
-
},{"
|
|
15483
|
+
},{"126":126,"130":130,"136":136,"140":140}],132:[function(_dereq_,module,exports){
|
|
15434
15484
|
"use strict";
|
|
15435
15485
|
|
|
15436
15486
|
/**
|
|
@@ -15469,7 +15519,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
15469
15519
|
};
|
|
15470
15520
|
|
|
15471
15521
|
module.exports = emptyFunction;
|
|
15472
|
-
},{}],
|
|
15522
|
+
},{}],133:[function(_dereq_,module,exports){
|
|
15473
15523
|
/**
|
|
15474
15524
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15475
15525
|
* All rights reserved.
|
|
@@ -15489,7 +15539,7 @@ if ("development" !== 'production') {
|
|
|
15489
15539
|
}
|
|
15490
15540
|
|
|
15491
15541
|
module.exports = emptyObject;
|
|
15492
|
-
},{}],
|
|
15542
|
+
},{}],134:[function(_dereq_,module,exports){
|
|
15493
15543
|
/**
|
|
15494
15544
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15495
15545
|
* All rights reserved.
|
|
@@ -15516,7 +15566,7 @@ function focusNode(node) {
|
|
|
15516
15566
|
}
|
|
15517
15567
|
|
|
15518
15568
|
module.exports = focusNode;
|
|
15519
|
-
},{}],
|
|
15569
|
+
},{}],135:[function(_dereq_,module,exports){
|
|
15520
15570
|
'use strict';
|
|
15521
15571
|
|
|
15522
15572
|
/**
|
|
@@ -15551,7 +15601,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
15551
15601
|
}
|
|
15552
15602
|
|
|
15553
15603
|
module.exports = getActiveElement;
|
|
15554
|
-
},{}],
|
|
15604
|
+
},{}],136:[function(_dereq_,module,exports){
|
|
15555
15605
|
'use strict';
|
|
15556
15606
|
|
|
15557
15607
|
/**
|
|
@@ -15566,9 +15616,9 @@ module.exports = getActiveElement;
|
|
|
15566
15616
|
|
|
15567
15617
|
/*eslint-disable fb-www/unsafe-html */
|
|
15568
15618
|
|
|
15569
|
-
var ExecutionEnvironment = _dereq_(
|
|
15619
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
15570
15620
|
|
|
15571
|
-
var invariant = _dereq_(
|
|
15621
|
+
var invariant = _dereq_(140);
|
|
15572
15622
|
|
|
15573
15623
|
/**
|
|
15574
15624
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -15646,7 +15696,7 @@ function getMarkupWrap(nodeName) {
|
|
|
15646
15696
|
}
|
|
15647
15697
|
|
|
15648
15698
|
module.exports = getMarkupWrap;
|
|
15649
|
-
},{"
|
|
15699
|
+
},{"126":126,"140":140}],137:[function(_dereq_,module,exports){
|
|
15650
15700
|
/**
|
|
15651
15701
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15652
15702
|
* All rights reserved.
|
|
@@ -15685,7 +15735,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
15685
15735
|
}
|
|
15686
15736
|
|
|
15687
15737
|
module.exports = getUnboundedScrollPosition;
|
|
15688
|
-
},{}],
|
|
15738
|
+
},{}],138:[function(_dereq_,module,exports){
|
|
15689
15739
|
'use strict';
|
|
15690
15740
|
|
|
15691
15741
|
/**
|
|
@@ -15718,7 +15768,7 @@ function hyphenate(string) {
|
|
|
15718
15768
|
}
|
|
15719
15769
|
|
|
15720
15770
|
module.exports = hyphenate;
|
|
15721
|
-
},{}],
|
|
15771
|
+
},{}],139:[function(_dereq_,module,exports){
|
|
15722
15772
|
/**
|
|
15723
15773
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15724
15774
|
* All rights reserved.
|
|
@@ -15732,7 +15782,7 @@ module.exports = hyphenate;
|
|
|
15732
15782
|
|
|
15733
15783
|
'use strict';
|
|
15734
15784
|
|
|
15735
|
-
var hyphenate = _dereq_(
|
|
15785
|
+
var hyphenate = _dereq_(138);
|
|
15736
15786
|
|
|
15737
15787
|
var msPattern = /^ms-/;
|
|
15738
15788
|
|
|
@@ -15757,7 +15807,7 @@ function hyphenateStyleName(string) {
|
|
|
15757
15807
|
}
|
|
15758
15808
|
|
|
15759
15809
|
module.exports = hyphenateStyleName;
|
|
15760
|
-
},{"
|
|
15810
|
+
},{"138":138}],140:[function(_dereq_,module,exports){
|
|
15761
15811
|
/**
|
|
15762
15812
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15763
15813
|
* All rights reserved.
|
|
@@ -15781,12 +15831,18 @@ module.exports = hyphenateStyleName;
|
|
|
15781
15831
|
* will remain to ensure logic does not differ in production.
|
|
15782
15832
|
*/
|
|
15783
15833
|
|
|
15784
|
-
function
|
|
15785
|
-
|
|
15834
|
+
var validateFormat = function validateFormat(format) {};
|
|
15835
|
+
|
|
15836
|
+
if ("development" !== 'production') {
|
|
15837
|
+
validateFormat = function validateFormat(format) {
|
|
15786
15838
|
if (format === undefined) {
|
|
15787
15839
|
throw new Error('invariant requires an error message argument');
|
|
15788
15840
|
}
|
|
15789
|
-
}
|
|
15841
|
+
};
|
|
15842
|
+
}
|
|
15843
|
+
|
|
15844
|
+
function invariant(condition, format, a, b, c, d, e, f) {
|
|
15845
|
+
validateFormat(format);
|
|
15790
15846
|
|
|
15791
15847
|
if (!condition) {
|
|
15792
15848
|
var error;
|
|
@@ -15807,7 +15863,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
15807
15863
|
}
|
|
15808
15864
|
|
|
15809
15865
|
module.exports = invariant;
|
|
15810
|
-
},{}],
|
|
15866
|
+
},{}],141:[function(_dereq_,module,exports){
|
|
15811
15867
|
'use strict';
|
|
15812
15868
|
|
|
15813
15869
|
/**
|
|
@@ -15830,7 +15886,7 @@ function isNode(object) {
|
|
|
15830
15886
|
}
|
|
15831
15887
|
|
|
15832
15888
|
module.exports = isNode;
|
|
15833
|
-
},{}],
|
|
15889
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
15834
15890
|
'use strict';
|
|
15835
15891
|
|
|
15836
15892
|
/**
|
|
@@ -15844,7 +15900,7 @@ module.exports = isNode;
|
|
|
15844
15900
|
* @typechecks
|
|
15845
15901
|
*/
|
|
15846
15902
|
|
|
15847
|
-
var isNode = _dereq_(
|
|
15903
|
+
var isNode = _dereq_(141);
|
|
15848
15904
|
|
|
15849
15905
|
/**
|
|
15850
15906
|
* @param {*} object The object to check.
|
|
@@ -15855,7 +15911,7 @@ function isTextNode(object) {
|
|
|
15855
15911
|
}
|
|
15856
15912
|
|
|
15857
15913
|
module.exports = isTextNode;
|
|
15858
|
-
},{"
|
|
15914
|
+
},{"141":141}],143:[function(_dereq_,module,exports){
|
|
15859
15915
|
/**
|
|
15860
15916
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15861
15917
|
* All rights reserved.
|
|
@@ -15885,7 +15941,7 @@ function memoizeStringOnly(callback) {
|
|
|
15885
15941
|
}
|
|
15886
15942
|
|
|
15887
15943
|
module.exports = memoizeStringOnly;
|
|
15888
|
-
},{}],
|
|
15944
|
+
},{}],144:[function(_dereq_,module,exports){
|
|
15889
15945
|
/**
|
|
15890
15946
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15891
15947
|
* All rights reserved.
|
|
@@ -15899,7 +15955,7 @@ module.exports = memoizeStringOnly;
|
|
|
15899
15955
|
|
|
15900
15956
|
'use strict';
|
|
15901
15957
|
|
|
15902
|
-
var ExecutionEnvironment = _dereq_(
|
|
15958
|
+
var ExecutionEnvironment = _dereq_(126);
|
|
15903
15959
|
|
|
15904
15960
|
var performance;
|
|
15905
15961
|
|
|
@@ -15908,7 +15964,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
15908
15964
|
}
|
|
15909
15965
|
|
|
15910
15966
|
module.exports = performance || {};
|
|
15911
|
-
},{"
|
|
15967
|
+
},{"126":126}],145:[function(_dereq_,module,exports){
|
|
15912
15968
|
'use strict';
|
|
15913
15969
|
|
|
15914
15970
|
/**
|
|
@@ -15922,7 +15978,7 @@ module.exports = performance || {};
|
|
|
15922
15978
|
* @typechecks
|
|
15923
15979
|
*/
|
|
15924
15980
|
|
|
15925
|
-
var performance = _dereq_(
|
|
15981
|
+
var performance = _dereq_(144);
|
|
15926
15982
|
|
|
15927
15983
|
var performanceNow;
|
|
15928
15984
|
|
|
@@ -15942,7 +15998,7 @@ if (performance.now) {
|
|
|
15942
15998
|
}
|
|
15943
15999
|
|
|
15944
16000
|
module.exports = performanceNow;
|
|
15945
|
-
},{"
|
|
16001
|
+
},{"144":144}],146:[function(_dereq_,module,exports){
|
|
15946
16002
|
/**
|
|
15947
16003
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
15948
16004
|
* All rights reserved.
|
|
@@ -16010,7 +16066,7 @@ function shallowEqual(objA, objB) {
|
|
|
16010
16066
|
}
|
|
16011
16067
|
|
|
16012
16068
|
module.exports = shallowEqual;
|
|
16013
|
-
},{}],
|
|
16069
|
+
},{}],147:[function(_dereq_,module,exports){
|
|
16014
16070
|
/**
|
|
16015
16071
|
* Copyright 2014-2015, Facebook, Inc.
|
|
16016
16072
|
* All rights reserved.
|
|
@@ -16023,7 +16079,7 @@ module.exports = shallowEqual;
|
|
|
16023
16079
|
|
|
16024
16080
|
'use strict';
|
|
16025
16081
|
|
|
16026
|
-
var emptyFunction = _dereq_(
|
|
16082
|
+
var emptyFunction = _dereq_(132);
|
|
16027
16083
|
|
|
16028
16084
|
/**
|
|
16029
16085
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -16077,7 +16133,7 @@ if ("development" !== 'production') {
|
|
|
16077
16133
|
}
|
|
16078
16134
|
|
|
16079
16135
|
module.exports = warning;
|
|
16080
|
-
},{"
|
|
16136
|
+
},{"132":132}],148:[function(_dereq_,module,exports){
|
|
16081
16137
|
'use strict';
|
|
16082
16138
|
/* eslint-disable no-unused-vars */
|
|
16083
16139
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|