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.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ReactDOM v15.4.
|
|
2
|
+
* ReactDOM 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.ReactDOM = 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_(34);
|
|
120
120
|
|
|
121
|
-
var focusNode = _dereq_(
|
|
121
|
+
var focusNode = _dereq_(144);
|
|
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
|
+
},{"144":144,"34":34}],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_(20);
|
|
144
|
-
var ExecutionEnvironment = _dereq_(
|
|
144
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
145
145
|
var FallbackCompositionState = _dereq_(21);
|
|
146
146
|
var SyntheticCompositionEvent = _dereq_(89);
|
|
147
147
|
var SyntheticInputEvent = _dereq_(93);
|
|
@@ -512,7 +512,7 @@ var BeforeInputEventPlugin = {
|
|
|
512
512
|
};
|
|
513
513
|
|
|
514
514
|
module.exports = BeforeInputEventPlugin;
|
|
515
|
-
},{"
|
|
515
|
+
},{"136":136,"20":20,"21":21,"89":89,"93":93}],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_(136);
|
|
678
678
|
var ReactInstrumentation = _dereq_(64);
|
|
679
679
|
|
|
680
|
-
var camelizeStyleName = _dereq_(
|
|
680
|
+
var camelizeStyleName = _dereq_(138);
|
|
681
681
|
var dangerousStyleValue = _dereq_(106);
|
|
682
|
-
var hyphenateStyleName = _dereq_(
|
|
683
|
-
var memoizeStringOnly = _dereq_(
|
|
684
|
-
var warning = _dereq_(
|
|
682
|
+
var hyphenateStyleName = _dereq_(149);
|
|
683
|
+
var memoizeStringOnly = _dereq_(153);
|
|
684
|
+
var warning = _dereq_(157);
|
|
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
|
-
},{"106":106,"
|
|
872
|
+
},{"106":106,"136":136,"138":138,"149":149,"153":153,"157":157,"4":4,"64":64}],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_(125);
|
|
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_(25);
|
|
891
891
|
|
|
892
|
-
var invariant = _dereq_(
|
|
892
|
+
var invariant = _dereq_(150);
|
|
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
|
+
},{"125":125,"150":150,"25":25}],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_(17);
|
|
1005
1005
|
var EventPropagators = _dereq_(20);
|
|
1006
|
-
var ExecutionEnvironment = _dereq_(
|
|
1006
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
1007
1007
|
var ReactDOMComponentTree = _dereq_(34);
|
|
1008
1008
|
var ReactUpdates = _dereq_(82);
|
|
1009
1009
|
var SyntheticEvent = _dereq_(91);
|
|
1010
1010
|
|
|
1011
1011
|
var getEventTarget = _dereq_(114);
|
|
1012
|
-
var isEventSupported = _dereq_(
|
|
1013
|
-
var isTextInputElement = _dereq_(
|
|
1012
|
+
var isEventSupported = _dereq_(122);
|
|
1013
|
+
var isTextInputElement = _dereq_(123);
|
|
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
|
-
},{"114":114,"
|
|
1312
|
+
},{"114":114,"122":122,"123":123,"136":136,"17":17,"20":20,"34":34,"82":82,"91":91}],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_(34);
|
|
|
1328
1328
|
var ReactInstrumentation = _dereq_(64);
|
|
1329
1329
|
|
|
1330
1330
|
var createMicrosoftUnsafeLocalFunction = _dereq_(105);
|
|
1331
|
-
var setInnerHTML = _dereq_(
|
|
1332
|
-
var setTextContent = _dereq_(
|
|
1331
|
+
var setInnerHTML = _dereq_(127);
|
|
1332
|
+
var setTextContent = _dereq_(128);
|
|
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
|
-
},{"105":105,"
|
|
1537
|
+
},{"105":105,"127":127,"128":128,"13":13,"34":34,"64":64,"9":9}],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_(127);
|
|
1552
1552
|
|
|
1553
1553
|
var createMicrosoftUnsafeLocalFunction = _dereq_(105);
|
|
1554
|
-
var setTextContent = _dereq_(
|
|
1554
|
+
var setTextContent = _dereq_(128);
|
|
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,"105":105,"
|
|
1655
|
+
},{"10":10,"105":105,"127":127,"128":128}],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_(125);
|
|
1689
1689
|
|
|
1690
|
-
var invariant = _dereq_(
|
|
1690
|
+
var invariant = _dereq_(150);
|
|
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
|
+
},{"125":125,"150":150}],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_(34);
|
|
1900
1900
|
var ReactInstrumentation = _dereq_(64);
|
|
1901
1901
|
|
|
1902
|
-
var quoteAttributeValueForBrowser = _dereq_(
|
|
1903
|
-
var warning = _dereq_(
|
|
1902
|
+
var quoteAttributeValueForBrowser = _dereq_(124);
|
|
1903
|
+
var warning = _dereq_(157);
|
|
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,"124":124,"157":157,"34":34,"64":64}],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_(125);
|
|
2136
2136
|
|
|
2137
2137
|
var DOMLazyTree = _dereq_(9);
|
|
2138
|
-
var ExecutionEnvironment = _dereq_(
|
|
2138
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
2139
2139
|
|
|
2140
|
-
var createNodesFromMarkup = _dereq_(
|
|
2141
|
-
var emptyFunction = _dereq_(
|
|
2142
|
-
var invariant = _dereq_(
|
|
2140
|
+
var createNodesFromMarkup = _dereq_(141);
|
|
2141
|
+
var emptyFunction = _dereq_(142);
|
|
2142
|
+
var invariant = _dereq_(150);
|
|
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
|
+
},{"125":125,"136":136,"141":141,"142":142,"150":150,"9":9}],14:[function(_dereq_,module,exports){
|
|
2171
2171
|
/**
|
|
2172
2172
|
* Copyright 2013-present, Facebook, Inc.
|
|
2173
2173
|
* All rights reserved.
|
|
@@ -2398,7 +2398,7 @@ module.exports = EventConstants;
|
|
|
2398
2398
|
|
|
2399
2399
|
'use strict';
|
|
2400
2400
|
|
|
2401
|
-
var _prodInvariant = _dereq_(
|
|
2401
|
+
var _prodInvariant = _dereq_(125);
|
|
2402
2402
|
|
|
2403
2403
|
var EventPluginRegistry = _dereq_(18);
|
|
2404
2404
|
var EventPluginUtils = _dereq_(19);
|
|
@@ -2406,7 +2406,7 @@ var ReactErrorUtils = _dereq_(55);
|
|
|
2406
2406
|
|
|
2407
2407
|
var accumulateInto = _dereq_(102);
|
|
2408
2408
|
var forEachAccumulated = _dereq_(110);
|
|
2409
|
-
var invariant = _dereq_(
|
|
2409
|
+
var invariant = _dereq_(150);
|
|
2410
2410
|
|
|
2411
2411
|
/**
|
|
2412
2412
|
* Internal store for event listeners
|
|
@@ -2448,6 +2448,28 @@ var getDictionaryKey = function (inst) {
|
|
|
2448
2448
|
return '.' + inst._rootNodeID;
|
|
2449
2449
|
};
|
|
2450
2450
|
|
|
2451
|
+
function isInteractive(tag) {
|
|
2452
|
+
return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
function shouldPreventMouseEvent(name, type, props) {
|
|
2456
|
+
switch (name) {
|
|
2457
|
+
case 'onClick':
|
|
2458
|
+
case 'onClickCapture':
|
|
2459
|
+
case 'onDoubleClick':
|
|
2460
|
+
case 'onDoubleClickCapture':
|
|
2461
|
+
case 'onMouseDown':
|
|
2462
|
+
case 'onMouseDownCapture':
|
|
2463
|
+
case 'onMouseMove':
|
|
2464
|
+
case 'onMouseMoveCapture':
|
|
2465
|
+
case 'onMouseUp':
|
|
2466
|
+
case 'onMouseUpCapture':
|
|
2467
|
+
return !!(props.disabled && isInteractive(type));
|
|
2468
|
+
default:
|
|
2469
|
+
return false;
|
|
2470
|
+
}
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2451
2473
|
/**
|
|
2452
2474
|
* This is a unified interface for event plugins to be installed and configured.
|
|
2453
2475
|
*
|
|
@@ -2516,7 +2538,12 @@ var EventPluginHub = {
|
|
|
2516
2538
|
* @return {?function} The stored callback.
|
|
2517
2539
|
*/
|
|
2518
2540
|
getListener: function (inst, registrationName) {
|
|
2541
|
+
// TODO: shouldPreventMouseEvent is DOM-specific and definitely should not
|
|
2542
|
+
// live here; needs to be moved to a better place soon
|
|
2519
2543
|
var bankForRegistrationName = listenerBank[registrationName];
|
|
2544
|
+
if (shouldPreventMouseEvent(registrationName, inst._currentElement.type, inst._currentElement.props)) {
|
|
2545
|
+
return null;
|
|
2546
|
+
}
|
|
2520
2547
|
var key = getDictionaryKey(inst);
|
|
2521
2548
|
return bankForRegistrationName && bankForRegistrationName[key];
|
|
2522
2549
|
},
|
|
@@ -2636,7 +2663,7 @@ var EventPluginHub = {
|
|
|
2636
2663
|
};
|
|
2637
2664
|
|
|
2638
2665
|
module.exports = EventPluginHub;
|
|
2639
|
-
},{"102":102,"110":110,"
|
|
2666
|
+
},{"102":102,"110":110,"125":125,"150":150,"18":18,"19":19,"55":55}],18:[function(_dereq_,module,exports){
|
|
2640
2667
|
/**
|
|
2641
2668
|
* Copyright 2013-present, Facebook, Inc.
|
|
2642
2669
|
* All rights reserved.
|
|
@@ -2650,9 +2677,9 @@ module.exports = EventPluginHub;
|
|
|
2650
2677
|
|
|
2651
2678
|
'use strict';
|
|
2652
2679
|
|
|
2653
|
-
var _prodInvariant = _dereq_(
|
|
2680
|
+
var _prodInvariant = _dereq_(125);
|
|
2654
2681
|
|
|
2655
|
-
var invariant = _dereq_(
|
|
2682
|
+
var invariant = _dereq_(150);
|
|
2656
2683
|
|
|
2657
2684
|
/**
|
|
2658
2685
|
* Injectable ordering of event plugins.
|
|
@@ -2891,7 +2918,7 @@ var EventPluginRegistry = {
|
|
|
2891
2918
|
};
|
|
2892
2919
|
|
|
2893
2920
|
module.exports = EventPluginRegistry;
|
|
2894
|
-
},{"
|
|
2921
|
+
},{"125":125,"150":150}],19:[function(_dereq_,module,exports){
|
|
2895
2922
|
/**
|
|
2896
2923
|
* Copyright 2013-present, Facebook, Inc.
|
|
2897
2924
|
* All rights reserved.
|
|
@@ -2904,12 +2931,12 @@ module.exports = EventPluginRegistry;
|
|
|
2904
2931
|
|
|
2905
2932
|
'use strict';
|
|
2906
2933
|
|
|
2907
|
-
var _prodInvariant = _dereq_(
|
|
2934
|
+
var _prodInvariant = _dereq_(125);
|
|
2908
2935
|
|
|
2909
2936
|
var ReactErrorUtils = _dereq_(55);
|
|
2910
2937
|
|
|
2911
|
-
var invariant = _dereq_(
|
|
2912
|
-
var warning = _dereq_(
|
|
2938
|
+
var invariant = _dereq_(150);
|
|
2939
|
+
var warning = _dereq_(157);
|
|
2913
2940
|
|
|
2914
2941
|
/**
|
|
2915
2942
|
* Injected dependencies:
|
|
@@ -3117,7 +3144,7 @@ var EventPluginUtils = {
|
|
|
3117
3144
|
};
|
|
3118
3145
|
|
|
3119
3146
|
module.exports = EventPluginUtils;
|
|
3120
|
-
},{"
|
|
3147
|
+
},{"125":125,"150":150,"157":157,"55":55}],20:[function(_dereq_,module,exports){
|
|
3121
3148
|
/**
|
|
3122
3149
|
* Copyright 2013-present, Facebook, Inc.
|
|
3123
3150
|
* All rights reserved.
|
|
@@ -3135,7 +3162,7 @@ var EventPluginUtils = _dereq_(19);
|
|
|
3135
3162
|
|
|
3136
3163
|
var accumulateInto = _dereq_(102);
|
|
3137
3164
|
var forEachAccumulated = _dereq_(110);
|
|
3138
|
-
var warning = _dereq_(
|
|
3165
|
+
var warning = _dereq_(157);
|
|
3139
3166
|
|
|
3140
3167
|
var getListener = EventPluginHub.getListener;
|
|
3141
3168
|
|
|
@@ -3251,7 +3278,7 @@ var EventPropagators = {
|
|
|
3251
3278
|
};
|
|
3252
3279
|
|
|
3253
3280
|
module.exports = EventPropagators;
|
|
3254
|
-
},{"102":102,"110":110,"
|
|
3281
|
+
},{"102":102,"110":110,"157":157,"17":17,"19":19}],21:[function(_dereq_,module,exports){
|
|
3255
3282
|
/**
|
|
3256
3283
|
* Copyright 2013-present, Facebook, Inc.
|
|
3257
3284
|
* All rights reserved.
|
|
@@ -3264,11 +3291,11 @@ module.exports = EventPropagators;
|
|
|
3264
3291
|
|
|
3265
3292
|
'use strict';
|
|
3266
3293
|
|
|
3267
|
-
var _assign = _dereq_(
|
|
3294
|
+
var _assign = _dereq_(158);
|
|
3268
3295
|
|
|
3269
3296
|
var PooledClass = _dereq_(25);
|
|
3270
3297
|
|
|
3271
|
-
var getTextContentAccessor = _dereq_(
|
|
3298
|
+
var getTextContentAccessor = _dereq_(119);
|
|
3272
3299
|
|
|
3273
3300
|
/**
|
|
3274
3301
|
* This helper class stores information about text content of a target node,
|
|
@@ -3346,7 +3373,7 @@ _assign(FallbackCompositionState.prototype, {
|
|
|
3346
3373
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3347
3374
|
|
|
3348
3375
|
module.exports = FallbackCompositionState;
|
|
3349
|
-
},{"
|
|
3376
|
+
},{"119":119,"158":158,"25":25}],22:[function(_dereq_,module,exports){
|
|
3350
3377
|
/**
|
|
3351
3378
|
* Copyright 2013-present, Facebook, Inc.
|
|
3352
3379
|
* All rights reserved.
|
|
@@ -3630,13 +3657,13 @@ module.exports = KeyEscapeUtils;
|
|
|
3630
3657
|
|
|
3631
3658
|
'use strict';
|
|
3632
3659
|
|
|
3633
|
-
var _prodInvariant = _dereq_(
|
|
3660
|
+
var _prodInvariant = _dereq_(125);
|
|
3634
3661
|
|
|
3635
|
-
var React = _dereq_(
|
|
3662
|
+
var React = _dereq_(134);
|
|
3636
3663
|
var ReactPropTypesSecret = _dereq_(73);
|
|
3637
3664
|
|
|
3638
|
-
var invariant = _dereq_(
|
|
3639
|
-
var warning = _dereq_(
|
|
3665
|
+
var invariant = _dereq_(150);
|
|
3666
|
+
var warning = _dereq_(157);
|
|
3640
3667
|
|
|
3641
3668
|
var hasReadOnlyValue = {
|
|
3642
3669
|
'button': true,
|
|
@@ -3752,7 +3779,7 @@ var LinkedValueUtils = {
|
|
|
3752
3779
|
};
|
|
3753
3780
|
|
|
3754
3781
|
module.exports = LinkedValueUtils;
|
|
3755
|
-
},{"
|
|
3782
|
+
},{"125":125,"134":134,"150":150,"157":157,"73":73}],25:[function(_dereq_,module,exports){
|
|
3756
3783
|
/**
|
|
3757
3784
|
* Copyright 2013-present, Facebook, Inc.
|
|
3758
3785
|
* All rights reserved.
|
|
@@ -3766,9 +3793,9 @@ module.exports = LinkedValueUtils;
|
|
|
3766
3793
|
|
|
3767
3794
|
'use strict';
|
|
3768
3795
|
|
|
3769
|
-
var _prodInvariant = _dereq_(
|
|
3796
|
+
var _prodInvariant = _dereq_(125);
|
|
3770
3797
|
|
|
3771
|
-
var invariant = _dereq_(
|
|
3798
|
+
var invariant = _dereq_(150);
|
|
3772
3799
|
|
|
3773
3800
|
/**
|
|
3774
3801
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3821,17 +3848,6 @@ var fourArgumentPooler = function (a1, a2, a3, a4) {
|
|
|
3821
3848
|
}
|
|
3822
3849
|
};
|
|
3823
3850
|
|
|
3824
|
-
var fiveArgumentPooler = function (a1, a2, a3, a4, a5) {
|
|
3825
|
-
var Klass = this;
|
|
3826
|
-
if (Klass.instancePool.length) {
|
|
3827
|
-
var instance = Klass.instancePool.pop();
|
|
3828
|
-
Klass.call(instance, a1, a2, a3, a4, a5);
|
|
3829
|
-
return instance;
|
|
3830
|
-
} else {
|
|
3831
|
-
return new Klass(a1, a2, a3, a4, a5);
|
|
3832
|
-
}
|
|
3833
|
-
};
|
|
3834
|
-
|
|
3835
3851
|
var standardReleaser = function (instance) {
|
|
3836
3852
|
var Klass = this;
|
|
3837
3853
|
!(instance instanceof Klass) ? "development" !== 'production' ? invariant(false, 'Trying to release an instance into a pool of a different type.') : _prodInvariant('25') : void 0;
|
|
@@ -3871,12 +3887,11 @@ var PooledClass = {
|
|
|
3871
3887
|
oneArgumentPooler: oneArgumentPooler,
|
|
3872
3888
|
twoArgumentPooler: twoArgumentPooler,
|
|
3873
3889
|
threeArgumentPooler: threeArgumentPooler,
|
|
3874
|
-
fourArgumentPooler: fourArgumentPooler
|
|
3875
|
-
fiveArgumentPooler: fiveArgumentPooler
|
|
3890
|
+
fourArgumentPooler: fourArgumentPooler
|
|
3876
3891
|
};
|
|
3877
3892
|
|
|
3878
3893
|
module.exports = PooledClass;
|
|
3879
|
-
},{"
|
|
3894
|
+
},{"125":125,"150":150}],26:[function(_dereq_,module,exports){
|
|
3880
3895
|
/**
|
|
3881
3896
|
* Copyright 2013-present, Facebook, Inc.
|
|
3882
3897
|
* All rights reserved.
|
|
@@ -3889,14 +3904,14 @@ module.exports = PooledClass;
|
|
|
3889
3904
|
|
|
3890
3905
|
'use strict';
|
|
3891
3906
|
|
|
3892
|
-
var _assign = _dereq_(
|
|
3907
|
+
var _assign = _dereq_(158);
|
|
3893
3908
|
|
|
3894
3909
|
var EventPluginRegistry = _dereq_(18);
|
|
3895
3910
|
var ReactEventEmitterMixin = _dereq_(56);
|
|
3896
3911
|
var ViewportMetrics = _dereq_(101);
|
|
3897
3912
|
|
|
3898
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
3899
|
-
var isEventSupported = _dereq_(
|
|
3913
|
+
var getVendorPrefixedEventName = _dereq_(120);
|
|
3914
|
+
var isEventSupported = _dereq_(122);
|
|
3900
3915
|
|
|
3901
3916
|
/**
|
|
3902
3917
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4204,7 +4219,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4204
4219
|
});
|
|
4205
4220
|
|
|
4206
4221
|
module.exports = ReactBrowserEventEmitter;
|
|
4207
|
-
},{"101":101,"
|
|
4222
|
+
},{"101":101,"120":120,"122":122,"158":158,"18":18,"56":56}],27:[function(_dereq_,module,exports){
|
|
4208
4223
|
(function (process){
|
|
4209
4224
|
/**
|
|
4210
4225
|
* Copyright 2014-present, Facebook, Inc.
|
|
@@ -4220,11 +4235,11 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4220
4235
|
|
|
4221
4236
|
var ReactReconciler = _dereq_(75);
|
|
4222
4237
|
|
|
4223
|
-
var instantiateReactComponent = _dereq_(
|
|
4238
|
+
var instantiateReactComponent = _dereq_(121);
|
|
4224
4239
|
var KeyEscapeUtils = _dereq_(23);
|
|
4225
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4226
|
-
var traverseAllChildren = _dereq_(
|
|
4227
|
-
var warning = _dereq_(
|
|
4240
|
+
var shouldUpdateReactComponent = _dereq_(129);
|
|
4241
|
+
var traverseAllChildren = _dereq_(130);
|
|
4242
|
+
var warning = _dereq_(157);
|
|
4228
4243
|
|
|
4229
4244
|
var ReactComponentTreeHook;
|
|
4230
4245
|
|
|
@@ -4234,7 +4249,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
|
4234
4249
|
// https://github.com/facebook/react/issues/7240
|
|
4235
4250
|
// Remove the inline requires when we don't need them anymore:
|
|
4236
4251
|
// https://github.com/facebook/react/pull/7178
|
|
4237
|
-
ReactComponentTreeHook = _dereq_(
|
|
4252
|
+
ReactComponentTreeHook = _dereq_(132);
|
|
4238
4253
|
}
|
|
4239
4254
|
|
|
4240
4255
|
function instantiateChild(childInstances, child, name, selfDebugID) {
|
|
@@ -4242,7 +4257,7 @@ function instantiateChild(childInstances, child, name, selfDebugID) {
|
|
|
4242
4257
|
var keyUnique = childInstances[name] === undefined;
|
|
4243
4258
|
if ("development" !== 'production') {
|
|
4244
4259
|
if (!ReactComponentTreeHook) {
|
|
4245
|
-
ReactComponentTreeHook = _dereq_(
|
|
4260
|
+
ReactComponentTreeHook = _dereq_(132);
|
|
4246
4261
|
}
|
|
4247
4262
|
if (!keyUnique) {
|
|
4248
4263
|
"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;
|
|
@@ -4360,7 +4375,7 @@ var ReactChildReconciler = {
|
|
|
4360
4375
|
|
|
4361
4376
|
module.exports = ReactChildReconciler;
|
|
4362
4377
|
}).call(this,undefined)
|
|
4363
|
-
},{"
|
|
4378
|
+
},{"121":121,"129":129,"130":130,"132":132,"157":157,"23":23,"75":75}],28:[function(_dereq_,module,exports){
|
|
4364
4379
|
/**
|
|
4365
4380
|
* Copyright 2013-present, Facebook, Inc.
|
|
4366
4381
|
* All rights reserved.
|
|
@@ -4404,9 +4419,9 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
4404
4419
|
|
|
4405
4420
|
'use strict';
|
|
4406
4421
|
|
|
4407
|
-
var _prodInvariant = _dereq_(
|
|
4422
|
+
var _prodInvariant = _dereq_(125);
|
|
4408
4423
|
|
|
4409
|
-
var invariant = _dereq_(
|
|
4424
|
+
var invariant = _dereq_(150);
|
|
4410
4425
|
|
|
4411
4426
|
var injected = false;
|
|
4412
4427
|
|
|
@@ -4436,7 +4451,7 @@ var ReactComponentEnvironment = {
|
|
|
4436
4451
|
};
|
|
4437
4452
|
|
|
4438
4453
|
module.exports = ReactComponentEnvironment;
|
|
4439
|
-
},{"
|
|
4454
|
+
},{"125":125,"150":150}],30:[function(_dereq_,module,exports){
|
|
4440
4455
|
/**
|
|
4441
4456
|
* Copyright 2013-present, Facebook, Inc.
|
|
4442
4457
|
* All rights reserved.
|
|
@@ -4449,12 +4464,12 @@ module.exports = ReactComponentEnvironment;
|
|
|
4449
4464
|
|
|
4450
4465
|
'use strict';
|
|
4451
4466
|
|
|
4452
|
-
var _prodInvariant = _dereq_(
|
|
4453
|
-
_assign = _dereq_(
|
|
4467
|
+
var _prodInvariant = _dereq_(125),
|
|
4468
|
+
_assign = _dereq_(158);
|
|
4454
4469
|
|
|
4455
|
-
var React = _dereq_(
|
|
4470
|
+
var React = _dereq_(134);
|
|
4456
4471
|
var ReactComponentEnvironment = _dereq_(29);
|
|
4457
|
-
var ReactCurrentOwner = _dereq_(
|
|
4472
|
+
var ReactCurrentOwner = _dereq_(133);
|
|
4458
4473
|
var ReactErrorUtils = _dereq_(55);
|
|
4459
4474
|
var ReactInstanceMap = _dereq_(63);
|
|
4460
4475
|
var ReactInstrumentation = _dereq_(64);
|
|
@@ -4465,11 +4480,11 @@ if ("development" !== 'production') {
|
|
|
4465
4480
|
var checkReactTypeSpec = _dereq_(104);
|
|
4466
4481
|
}
|
|
4467
4482
|
|
|
4468
|
-
var emptyObject = _dereq_(
|
|
4469
|
-
var invariant = _dereq_(
|
|
4470
|
-
var shallowEqual = _dereq_(
|
|
4471
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4472
|
-
var warning = _dereq_(
|
|
4483
|
+
var emptyObject = _dereq_(143);
|
|
4484
|
+
var invariant = _dereq_(150);
|
|
4485
|
+
var shallowEqual = _dereq_(156);
|
|
4486
|
+
var shouldUpdateReactComponent = _dereq_(129);
|
|
4487
|
+
var warning = _dereq_(157);
|
|
4473
4488
|
|
|
4474
4489
|
var CompositeTypes = {
|
|
4475
4490
|
ImpureClass: 0,
|
|
@@ -4671,7 +4686,7 @@ var ReactCompositeComponent = {
|
|
|
4671
4686
|
// Since plain JS classes are defined without any special initialization
|
|
4672
4687
|
// logic, we can not catch common errors early. Therefore, we have to
|
|
4673
4688
|
// catch them here, at initialization time, instead.
|
|
4674
|
-
"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;
|
|
4689
|
+
"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;
|
|
4675
4690
|
"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;
|
|
4676
4691
|
"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;
|
|
4677
4692
|
"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;
|
|
@@ -5280,10 +5295,10 @@ var ReactCompositeComponent = {
|
|
|
5280
5295
|
* @final
|
|
5281
5296
|
* @private
|
|
5282
5297
|
*/
|
|
5283
|
-
attachRef: function (ref, component
|
|
5298
|
+
attachRef: function (ref, component) {
|
|
5284
5299
|
var inst = this.getPublicInstance();
|
|
5285
5300
|
!(inst != null) ? "development" !== 'production' ? invariant(false, 'Stateless function components cannot have refs.') : _prodInvariant('110') : void 0;
|
|
5286
|
-
var publicComponentInstance = component.getPublicInstance(
|
|
5301
|
+
var publicComponentInstance = component.getPublicInstance();
|
|
5287
5302
|
if ("development" !== 'production') {
|
|
5288
5303
|
var componentName = component && component.getName ? component.getName() : 'a component';
|
|
5289
5304
|
"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;
|
|
@@ -5338,7 +5353,7 @@ var ReactCompositeComponent = {
|
|
|
5338
5353
|
};
|
|
5339
5354
|
|
|
5340
5355
|
module.exports = ReactCompositeComponent;
|
|
5341
|
-
},{"104":104,"
|
|
5356
|
+
},{"104":104,"125":125,"129":129,"133":133,"134":134,"143":143,"150":150,"156":156,"157":157,"158":158,"29":29,"55":55,"63":63,"64":64,"69":69,"75":75}],31:[function(_dereq_,module,exports){
|
|
5342
5357
|
/**
|
|
5343
5358
|
* Copyright 2013-present, Facebook, Inc.
|
|
5344
5359
|
* All rights reserved.
|
|
@@ -5362,8 +5377,8 @@ var ReactVersion = _dereq_(83);
|
|
|
5362
5377
|
|
|
5363
5378
|
var findDOMNode = _dereq_(108);
|
|
5364
5379
|
var getHostComponentFromComposite = _dereq_(115);
|
|
5365
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
5366
|
-
var warning = _dereq_(
|
|
5380
|
+
var renderSubtreeIntoContainer = _dereq_(126);
|
|
5381
|
+
var warning = _dereq_(157);
|
|
5367
5382
|
|
|
5368
5383
|
ReactDefaultInjection.inject();
|
|
5369
5384
|
|
|
@@ -5402,7 +5417,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
5402
5417
|
}
|
|
5403
5418
|
|
|
5404
5419
|
if ("development" !== 'production') {
|
|
5405
|
-
var ExecutionEnvironment = _dereq_(
|
|
5420
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
5406
5421
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
5407
5422
|
|
|
5408
5423
|
// First check if devtools is not installed
|
|
@@ -5449,7 +5464,7 @@ if ("development" !== 'production') {
|
|
|
5449
5464
|
}
|
|
5450
5465
|
|
|
5451
5466
|
module.exports = ReactDOM;
|
|
5452
|
-
},{"108":108,"115":115,"
|
|
5467
|
+
},{"108":108,"115":115,"126":126,"136":136,"157":157,"34":34,"40":40,"41":41,"49":49,"52":52,"64":64,"67":67,"75":75,"82":82,"83":83}],32:[function(_dereq_,module,exports){
|
|
5453
5468
|
/**
|
|
5454
5469
|
* Copyright 2013-present, Facebook, Inc.
|
|
5455
5470
|
* All rights reserved.
|
|
@@ -5464,8 +5479,8 @@ module.exports = ReactDOM;
|
|
|
5464
5479
|
|
|
5465
5480
|
'use strict';
|
|
5466
5481
|
|
|
5467
|
-
var _prodInvariant = _dereq_(
|
|
5468
|
-
_assign = _dereq_(
|
|
5482
|
+
var _prodInvariant = _dereq_(125),
|
|
5483
|
+
_assign = _dereq_(158);
|
|
5469
5484
|
|
|
5470
5485
|
var AutoFocusUtils = _dereq_(2);
|
|
5471
5486
|
var CSSPropertyOperations = _dereq_(5);
|
|
@@ -5486,13 +5501,13 @@ var ReactInstrumentation = _dereq_(64);
|
|
|
5486
5501
|
var ReactMultiChild = _dereq_(68);
|
|
5487
5502
|
var ReactServerRenderingTransaction = _dereq_(77);
|
|
5488
5503
|
|
|
5489
|
-
var emptyFunction = _dereq_(
|
|
5504
|
+
var emptyFunction = _dereq_(142);
|
|
5490
5505
|
var escapeTextContentForBrowser = _dereq_(107);
|
|
5491
|
-
var invariant = _dereq_(
|
|
5492
|
-
var isEventSupported = _dereq_(
|
|
5493
|
-
var shallowEqual = _dereq_(
|
|
5494
|
-
var validateDOMNesting = _dereq_(
|
|
5495
|
-
var warning = _dereq_(
|
|
5506
|
+
var invariant = _dereq_(150);
|
|
5507
|
+
var isEventSupported = _dereq_(122);
|
|
5508
|
+
var shallowEqual = _dereq_(156);
|
|
5509
|
+
var validateDOMNesting = _dereq_(131);
|
|
5510
|
+
var warning = _dereq_(157);
|
|
5496
5511
|
|
|
5497
5512
|
var Flags = ReactDOMComponentFlags;
|
|
5498
5513
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -6133,12 +6148,18 @@ ReactDOMComponent.Mixin = {
|
|
|
6133
6148
|
} else {
|
|
6134
6149
|
var contentToUse = CONTENT_TYPES[typeof props.children] ? props.children : null;
|
|
6135
6150
|
var childrenToUse = contentToUse != null ? null : props.children;
|
|
6151
|
+
// TODO: Validate that text is allowed as a child of this node
|
|
6136
6152
|
if (contentToUse != null) {
|
|
6137
|
-
//
|
|
6138
|
-
|
|
6139
|
-
|
|
6153
|
+
// Avoid setting textContent when the text is empty. In IE11 setting
|
|
6154
|
+
// textContent on a text area will cause the placeholder to not
|
|
6155
|
+
// show within the textarea until it has been focused and blurred again.
|
|
6156
|
+
// https://github.com/facebook/react/issues/6731#issuecomment-254874553
|
|
6157
|
+
if (contentToUse !== '') {
|
|
6158
|
+
if ("development" !== 'production') {
|
|
6159
|
+
setAndValidateContentChildDev.call(this, contentToUse);
|
|
6160
|
+
}
|
|
6161
|
+
DOMLazyTree.queueText(lazyTree, contentToUse);
|
|
6140
6162
|
}
|
|
6141
|
-
DOMLazyTree.queueText(lazyTree, contentToUse);
|
|
6142
6163
|
} else if (childrenToUse != null) {
|
|
6143
6164
|
var mountImages = this.mountChildren(childrenToUse, transaction, context);
|
|
6144
6165
|
for (var i = 0; i < mountImages.length; i++) {
|
|
@@ -6444,7 +6465,7 @@ ReactDOMComponent.Mixin = {
|
|
|
6444
6465
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
6445
6466
|
|
|
6446
6467
|
module.exports = ReactDOMComponent;
|
|
6447
|
-
},{"10":10,"107":107,"11":11,"12":12,"
|
|
6468
|
+
},{"10":10,"107":107,"11":11,"12":12,"122":122,"125":125,"131":131,"142":142,"150":150,"156":156,"157":157,"158":158,"17":17,"18":18,"2":2,"26":26,"33":33,"34":34,"39":39,"42":42,"43":43,"46":46,"5":5,"64":64,"68":68,"77":77,"9":9}],33:[function(_dereq_,module,exports){
|
|
6448
6469
|
/**
|
|
6449
6470
|
* Copyright 2015-present, Facebook, Inc.
|
|
6450
6471
|
* All rights reserved.
|
|
@@ -6475,18 +6496,25 @@ module.exports = ReactDOMComponentFlags;
|
|
|
6475
6496
|
|
|
6476
6497
|
'use strict';
|
|
6477
6498
|
|
|
6478
|
-
var _prodInvariant = _dereq_(
|
|
6499
|
+
var _prodInvariant = _dereq_(125);
|
|
6479
6500
|
|
|
6480
6501
|
var DOMProperty = _dereq_(11);
|
|
6481
6502
|
var ReactDOMComponentFlags = _dereq_(33);
|
|
6482
6503
|
|
|
6483
|
-
var invariant = _dereq_(
|
|
6504
|
+
var invariant = _dereq_(150);
|
|
6484
6505
|
|
|
6485
6506
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
6486
6507
|
var Flags = ReactDOMComponentFlags;
|
|
6487
6508
|
|
|
6488
6509
|
var internalInstanceKey = '__reactInternalInstance$' + Math.random().toString(36).slice(2);
|
|
6489
6510
|
|
|
6511
|
+
/**
|
|
6512
|
+
* Check if a given node should be cached.
|
|
6513
|
+
*/
|
|
6514
|
+
function shouldPrecacheNode(node, nodeID) {
|
|
6515
|
+
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 + ' ';
|
|
6516
|
+
}
|
|
6517
|
+
|
|
6490
6518
|
/**
|
|
6491
6519
|
* Drill down (through composites and empty components) until we get a host or
|
|
6492
6520
|
* host text component.
|
|
@@ -6552,7 +6580,7 @@ function precacheChildNodes(inst, node) {
|
|
|
6552
6580
|
}
|
|
6553
6581
|
// We assume the child nodes are in the same order as the child instances.
|
|
6554
6582
|
for (; childNode !== null; childNode = childNode.nextSibling) {
|
|
6555
|
-
if (
|
|
6583
|
+
if (shouldPrecacheNode(childNode, childID)) {
|
|
6556
6584
|
precacheNode(childInst, childNode);
|
|
6557
6585
|
continue outer;
|
|
6558
6586
|
}
|
|
@@ -6650,7 +6678,7 @@ var ReactDOMComponentTree = {
|
|
|
6650
6678
|
};
|
|
6651
6679
|
|
|
6652
6680
|
module.exports = ReactDOMComponentTree;
|
|
6653
|
-
},{"11":11,"
|
|
6681
|
+
},{"11":11,"125":125,"150":150,"33":33}],35:[function(_dereq_,module,exports){
|
|
6654
6682
|
/**
|
|
6655
6683
|
* Copyright 2013-present, Facebook, Inc.
|
|
6656
6684
|
* All rights reserved.
|
|
@@ -6663,7 +6691,7 @@ module.exports = ReactDOMComponentTree;
|
|
|
6663
6691
|
|
|
6664
6692
|
'use strict';
|
|
6665
6693
|
|
|
6666
|
-
var validateDOMNesting = _dereq_(
|
|
6694
|
+
var validateDOMNesting = _dereq_(131);
|
|
6667
6695
|
|
|
6668
6696
|
var DOC_NODE_TYPE = 9;
|
|
6669
6697
|
|
|
@@ -6683,7 +6711,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
6683
6711
|
}
|
|
6684
6712
|
|
|
6685
6713
|
module.exports = ReactDOMContainerInfo;
|
|
6686
|
-
},{"
|
|
6714
|
+
},{"131":131}],36:[function(_dereq_,module,exports){
|
|
6687
6715
|
/**
|
|
6688
6716
|
* Copyright 2014-present, Facebook, Inc.
|
|
6689
6717
|
* All rights reserved.
|
|
@@ -6696,7 +6724,7 @@ module.exports = ReactDOMContainerInfo;
|
|
|
6696
6724
|
|
|
6697
6725
|
'use strict';
|
|
6698
6726
|
|
|
6699
|
-
var _assign = _dereq_(
|
|
6727
|
+
var _assign = _dereq_(158);
|
|
6700
6728
|
|
|
6701
6729
|
var DOMLazyTree = _dereq_(9);
|
|
6702
6730
|
var ReactDOMComponentTree = _dereq_(34);
|
|
@@ -6743,7 +6771,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
6743
6771
|
});
|
|
6744
6772
|
|
|
6745
6773
|
module.exports = ReactDOMEmptyComponent;
|
|
6746
|
-
},{"
|
|
6774
|
+
},{"158":158,"34":34,"9":9}],37:[function(_dereq_,module,exports){
|
|
6747
6775
|
/**
|
|
6748
6776
|
* Copyright 2013-present, Facebook, Inc.
|
|
6749
6777
|
* All rights reserved.
|
|
@@ -6809,16 +6837,16 @@ module.exports = ReactDOMIDOperations;
|
|
|
6809
6837
|
|
|
6810
6838
|
'use strict';
|
|
6811
6839
|
|
|
6812
|
-
var _prodInvariant = _dereq_(
|
|
6813
|
-
_assign = _dereq_(
|
|
6840
|
+
var _prodInvariant = _dereq_(125),
|
|
6841
|
+
_assign = _dereq_(158);
|
|
6814
6842
|
|
|
6815
6843
|
var DOMPropertyOperations = _dereq_(12);
|
|
6816
6844
|
var LinkedValueUtils = _dereq_(24);
|
|
6817
6845
|
var ReactDOMComponentTree = _dereq_(34);
|
|
6818
6846
|
var ReactUpdates = _dereq_(82);
|
|
6819
6847
|
|
|
6820
|
-
var invariant = _dereq_(
|
|
6821
|
-
var warning = _dereq_(
|
|
6848
|
+
var invariant = _dereq_(150);
|
|
6849
|
+
var warning = _dereq_(157);
|
|
6822
6850
|
|
|
6823
6851
|
var didWarnValueLink = false;
|
|
6824
6852
|
var didWarnCheckedLink = false;
|
|
@@ -6956,7 +6984,17 @@ var ReactDOMInput = {
|
|
|
6956
6984
|
}
|
|
6957
6985
|
} else {
|
|
6958
6986
|
if (props.value == null && props.defaultValue != null) {
|
|
6959
|
-
|
|
6987
|
+
// In Chrome, assigning defaultValue to certain input types triggers input validation.
|
|
6988
|
+
// For number inputs, the display value loses trailing decimal points. For email inputs,
|
|
6989
|
+
// Chrome raises "The specified value <x> is not a valid email address".
|
|
6990
|
+
//
|
|
6991
|
+
// Here we check to see if the defaultValue has actually changed, avoiding these problems
|
|
6992
|
+
// when the user is inputting text
|
|
6993
|
+
//
|
|
6994
|
+
// https://github.com/facebook/react/issues/7253
|
|
6995
|
+
if (node.defaultValue !== '' + props.defaultValue) {
|
|
6996
|
+
node.defaultValue = '' + props.defaultValue;
|
|
6997
|
+
}
|
|
6960
6998
|
}
|
|
6961
6999
|
if (props.checked == null && props.defaultChecked != null) {
|
|
6962
7000
|
node.defaultChecked = !!props.defaultChecked;
|
|
@@ -7064,7 +7102,7 @@ function _handleChange(event) {
|
|
|
7064
7102
|
}
|
|
7065
7103
|
|
|
7066
7104
|
module.exports = ReactDOMInput;
|
|
7067
|
-
},{"12":12,"
|
|
7105
|
+
},{"12":12,"125":125,"150":150,"157":157,"158":158,"24":24,"34":34,"82":82}],40:[function(_dereq_,module,exports){
|
|
7068
7106
|
/**
|
|
7069
7107
|
* Copyright 2013-present, Facebook, Inc.
|
|
7070
7108
|
* All rights reserved.
|
|
@@ -7078,9 +7116,9 @@ module.exports = ReactDOMInput;
|
|
|
7078
7116
|
'use strict';
|
|
7079
7117
|
|
|
7080
7118
|
var DOMProperty = _dereq_(11);
|
|
7081
|
-
var ReactComponentTreeHook = _dereq_(
|
|
7119
|
+
var ReactComponentTreeHook = _dereq_(132);
|
|
7082
7120
|
|
|
7083
|
-
var warning = _dereq_(
|
|
7121
|
+
var warning = _dereq_(157);
|
|
7084
7122
|
|
|
7085
7123
|
var warnedProperties = {};
|
|
7086
7124
|
var rARIA = new RegExp('^(aria)-[' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
|
@@ -7157,7 +7195,7 @@ var ReactDOMInvalidARIAHook = {
|
|
|
7157
7195
|
};
|
|
7158
7196
|
|
|
7159
7197
|
module.exports = ReactDOMInvalidARIAHook;
|
|
7160
|
-
},{"11":11,"
|
|
7198
|
+
},{"11":11,"132":132,"157":157}],41:[function(_dereq_,module,exports){
|
|
7161
7199
|
/**
|
|
7162
7200
|
* Copyright 2013-present, Facebook, Inc.
|
|
7163
7201
|
* All rights reserved.
|
|
@@ -7170,9 +7208,9 @@ module.exports = ReactDOMInvalidARIAHook;
|
|
|
7170
7208
|
|
|
7171
7209
|
'use strict';
|
|
7172
7210
|
|
|
7173
|
-
var ReactComponentTreeHook = _dereq_(
|
|
7211
|
+
var ReactComponentTreeHook = _dereq_(132);
|
|
7174
7212
|
|
|
7175
|
-
var warning = _dereq_(
|
|
7213
|
+
var warning = _dereq_(157);
|
|
7176
7214
|
|
|
7177
7215
|
var didWarnValueNull = false;
|
|
7178
7216
|
|
|
@@ -7200,7 +7238,7 @@ var ReactDOMNullInputValuePropHook = {
|
|
|
7200
7238
|
};
|
|
7201
7239
|
|
|
7202
7240
|
module.exports = ReactDOMNullInputValuePropHook;
|
|
7203
|
-
},{"
|
|
7241
|
+
},{"132":132,"157":157}],42:[function(_dereq_,module,exports){
|
|
7204
7242
|
/**
|
|
7205
7243
|
* Copyright 2013-present, Facebook, Inc.
|
|
7206
7244
|
* All rights reserved.
|
|
@@ -7213,13 +7251,13 @@ module.exports = ReactDOMNullInputValuePropHook;
|
|
|
7213
7251
|
|
|
7214
7252
|
'use strict';
|
|
7215
7253
|
|
|
7216
|
-
var _assign = _dereq_(
|
|
7254
|
+
var _assign = _dereq_(158);
|
|
7217
7255
|
|
|
7218
|
-
var React = _dereq_(
|
|
7256
|
+
var React = _dereq_(134);
|
|
7219
7257
|
var ReactDOMComponentTree = _dereq_(34);
|
|
7220
7258
|
var ReactDOMSelect = _dereq_(43);
|
|
7221
7259
|
|
|
7222
|
-
var warning = _dereq_(
|
|
7260
|
+
var warning = _dereq_(157);
|
|
7223
7261
|
var didWarnInvalidOptionChildren = false;
|
|
7224
7262
|
|
|
7225
7263
|
function flattenChildren(children) {
|
|
@@ -7323,7 +7361,7 @@ var ReactDOMOption = {
|
|
|
7323
7361
|
};
|
|
7324
7362
|
|
|
7325
7363
|
module.exports = ReactDOMOption;
|
|
7326
|
-
},{"
|
|
7364
|
+
},{"134":134,"157":157,"158":158,"34":34,"43":43}],43:[function(_dereq_,module,exports){
|
|
7327
7365
|
/**
|
|
7328
7366
|
* Copyright 2013-present, Facebook, Inc.
|
|
7329
7367
|
* All rights reserved.
|
|
@@ -7336,13 +7374,13 @@ module.exports = ReactDOMOption;
|
|
|
7336
7374
|
|
|
7337
7375
|
'use strict';
|
|
7338
7376
|
|
|
7339
|
-
var _assign = _dereq_(
|
|
7377
|
+
var _assign = _dereq_(158);
|
|
7340
7378
|
|
|
7341
7379
|
var LinkedValueUtils = _dereq_(24);
|
|
7342
7380
|
var ReactDOMComponentTree = _dereq_(34);
|
|
7343
7381
|
var ReactUpdates = _dereq_(82);
|
|
7344
7382
|
|
|
7345
|
-
var warning = _dereq_(
|
|
7383
|
+
var warning = _dereq_(157);
|
|
7346
7384
|
|
|
7347
7385
|
var didWarnValueLink = false;
|
|
7348
7386
|
var didWarnValueDefaultValue = false;
|
|
@@ -7523,7 +7561,7 @@ function _handleChange(event) {
|
|
|
7523
7561
|
}
|
|
7524
7562
|
|
|
7525
7563
|
module.exports = ReactDOMSelect;
|
|
7526
|
-
},{"
|
|
7564
|
+
},{"157":157,"158":158,"24":24,"34":34,"82":82}],44:[function(_dereq_,module,exports){
|
|
7527
7565
|
/**
|
|
7528
7566
|
* Copyright 2013-present, Facebook, Inc.
|
|
7529
7567
|
* All rights reserved.
|
|
@@ -7536,10 +7574,10 @@ module.exports = ReactDOMSelect;
|
|
|
7536
7574
|
|
|
7537
7575
|
'use strict';
|
|
7538
7576
|
|
|
7539
|
-
var ExecutionEnvironment = _dereq_(
|
|
7577
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
7540
7578
|
|
|
7541
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
7542
|
-
var getTextContentAccessor = _dereq_(
|
|
7579
|
+
var getNodeForCharacterOffset = _dereq_(118);
|
|
7580
|
+
var getTextContentAccessor = _dereq_(119);
|
|
7543
7581
|
|
|
7544
7582
|
/**
|
|
7545
7583
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -7735,7 +7773,7 @@ var ReactDOMSelection = {
|
|
|
7735
7773
|
};
|
|
7736
7774
|
|
|
7737
7775
|
module.exports = ReactDOMSelection;
|
|
7738
|
-
},{"
|
|
7776
|
+
},{"118":118,"119":119,"136":136}],45:[function(_dereq_,module,exports){
|
|
7739
7777
|
/**
|
|
7740
7778
|
* Copyright 2013-present, Facebook, Inc.
|
|
7741
7779
|
* All rights reserved.
|
|
@@ -7748,16 +7786,16 @@ module.exports = ReactDOMSelection;
|
|
|
7748
7786
|
|
|
7749
7787
|
'use strict';
|
|
7750
7788
|
|
|
7751
|
-
var _prodInvariant = _dereq_(
|
|
7752
|
-
_assign = _dereq_(
|
|
7789
|
+
var _prodInvariant = _dereq_(125),
|
|
7790
|
+
_assign = _dereq_(158);
|
|
7753
7791
|
|
|
7754
7792
|
var DOMChildrenOperations = _dereq_(8);
|
|
7755
7793
|
var DOMLazyTree = _dereq_(9);
|
|
7756
7794
|
var ReactDOMComponentTree = _dereq_(34);
|
|
7757
7795
|
|
|
7758
7796
|
var escapeTextContentForBrowser = _dereq_(107);
|
|
7759
|
-
var invariant = _dereq_(
|
|
7760
|
-
var validateDOMNesting = _dereq_(
|
|
7797
|
+
var invariant = _dereq_(150);
|
|
7798
|
+
var validateDOMNesting = _dereq_(131);
|
|
7761
7799
|
|
|
7762
7800
|
/**
|
|
7763
7801
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -7899,7 +7937,7 @@ _assign(ReactDOMTextComponent.prototype, {
|
|
|
7899
7937
|
});
|
|
7900
7938
|
|
|
7901
7939
|
module.exports = ReactDOMTextComponent;
|
|
7902
|
-
},{"107":107,"
|
|
7940
|
+
},{"107":107,"125":125,"131":131,"150":150,"158":158,"34":34,"8":8,"9":9}],46:[function(_dereq_,module,exports){
|
|
7903
7941
|
/**
|
|
7904
7942
|
* Copyright 2013-present, Facebook, Inc.
|
|
7905
7943
|
* All rights reserved.
|
|
@@ -7912,15 +7950,15 @@ module.exports = ReactDOMTextComponent;
|
|
|
7912
7950
|
|
|
7913
7951
|
'use strict';
|
|
7914
7952
|
|
|
7915
|
-
var _prodInvariant = _dereq_(
|
|
7916
|
-
_assign = _dereq_(
|
|
7953
|
+
var _prodInvariant = _dereq_(125),
|
|
7954
|
+
_assign = _dereq_(158);
|
|
7917
7955
|
|
|
7918
7956
|
var LinkedValueUtils = _dereq_(24);
|
|
7919
7957
|
var ReactDOMComponentTree = _dereq_(34);
|
|
7920
7958
|
var ReactUpdates = _dereq_(82);
|
|
7921
7959
|
|
|
7922
|
-
var invariant = _dereq_(
|
|
7923
|
-
var warning = _dereq_(
|
|
7960
|
+
var invariant = _dereq_(150);
|
|
7961
|
+
var warning = _dereq_(157);
|
|
7924
7962
|
|
|
7925
7963
|
var didWarnValueLink = false;
|
|
7926
7964
|
var didWarnValDefaultVal = false;
|
|
@@ -8039,9 +8077,15 @@ var ReactDOMTextarea = {
|
|
|
8039
8077
|
// This is in postMount because we need access to the DOM node, which is not
|
|
8040
8078
|
// available until after the component has mounted.
|
|
8041
8079
|
var node = ReactDOMComponentTree.getNodeFromInstance(inst);
|
|
8080
|
+
var textContent = node.textContent;
|
|
8042
8081
|
|
|
8043
|
-
//
|
|
8044
|
-
|
|
8082
|
+
// Only set node.value if textContent is equal to the expected
|
|
8083
|
+
// initial value. In IE10/IE11 there is a bug where the placeholder attribute
|
|
8084
|
+
// will populate textContent as well.
|
|
8085
|
+
// https://developer.microsoft.com/microsoft-edge/platform/issues/101525/
|
|
8086
|
+
if (textContent === inst._wrapperState.initialValue) {
|
|
8087
|
+
node.value = textContent;
|
|
8088
|
+
}
|
|
8045
8089
|
}
|
|
8046
8090
|
};
|
|
8047
8091
|
|
|
@@ -8053,7 +8097,7 @@ function _handleChange(event) {
|
|
|
8053
8097
|
}
|
|
8054
8098
|
|
|
8055
8099
|
module.exports = ReactDOMTextarea;
|
|
8056
|
-
},{"
|
|
8100
|
+
},{"125":125,"150":150,"157":157,"158":158,"24":24,"34":34,"82":82}],47:[function(_dereq_,module,exports){
|
|
8057
8101
|
/**
|
|
8058
8102
|
* Copyright 2015-present, Facebook, Inc.
|
|
8059
8103
|
* All rights reserved.
|
|
@@ -8066,9 +8110,9 @@ module.exports = ReactDOMTextarea;
|
|
|
8066
8110
|
|
|
8067
8111
|
'use strict';
|
|
8068
8112
|
|
|
8069
|
-
var _prodInvariant = _dereq_(
|
|
8113
|
+
var _prodInvariant = _dereq_(125);
|
|
8070
8114
|
|
|
8071
|
-
var invariant = _dereq_(
|
|
8115
|
+
var invariant = _dereq_(150);
|
|
8072
8116
|
|
|
8073
8117
|
/**
|
|
8074
8118
|
* Return the lowest common ancestor of A and B, or null if they are in
|
|
@@ -8189,7 +8233,7 @@ module.exports = {
|
|
|
8189
8233
|
traverseTwoPhase: traverseTwoPhase,
|
|
8190
8234
|
traverseEnterLeave: traverseEnterLeave
|
|
8191
8235
|
};
|
|
8192
|
-
},{"
|
|
8236
|
+
},{"125":125,"150":150}],48:[function(_dereq_,module,exports){
|
|
8193
8237
|
/**
|
|
8194
8238
|
* Copyright 2013-present, Facebook, Inc.
|
|
8195
8239
|
* All rights reserved.
|
|
@@ -8202,27 +8246,28 @@ module.exports = {
|
|
|
8202
8246
|
|
|
8203
8247
|
'use strict';
|
|
8204
8248
|
|
|
8205
|
-
var
|
|
8206
|
-
|
|
8249
|
+
var React = _dereq_(134);
|
|
8207
8250
|
var ReactDOM = _dereq_(31);
|
|
8208
8251
|
|
|
8209
|
-
var ReactDOMUMDEntry =
|
|
8210
|
-
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: {
|
|
8211
|
-
ReactInstanceMap: _dereq_(63)
|
|
8212
|
-
}
|
|
8213
|
-
}, ReactDOM);
|
|
8252
|
+
var ReactDOMUMDEntry = ReactDOM;
|
|
8214
8253
|
|
|
8215
8254
|
if ("development" !== 'production') {
|
|
8216
|
-
|
|
8255
|
+
ReactDOMUMDEntry.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = {
|
|
8217
8256
|
// ReactPerf and ReactTestUtils currently only work with the DOM renderer
|
|
8218
8257
|
// so we expose them from here, but only in DEV mode.
|
|
8219
8258
|
ReactPerf: _dereq_(71),
|
|
8220
8259
|
ReactTestUtils: _dereq_(80)
|
|
8221
|
-
}
|
|
8260
|
+
};
|
|
8261
|
+
}
|
|
8262
|
+
|
|
8263
|
+
// Inject ReactDOM into React for the addons UMD build that depends on ReactDOM (TransitionGroup).
|
|
8264
|
+
// We can remove this after we deprecate and remove the addons UMD build.
|
|
8265
|
+
if (React.addons) {
|
|
8266
|
+
React.__SECRET_INJECTED_REACT_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactDOMUMDEntry;
|
|
8222
8267
|
}
|
|
8223
8268
|
|
|
8224
8269
|
module.exports = ReactDOMUMDEntry;
|
|
8225
|
-
},{"
|
|
8270
|
+
},{"134":134,"31":31,"71":71,"80":80}],49:[function(_dereq_,module,exports){
|
|
8226
8271
|
/**
|
|
8227
8272
|
* Copyright 2013-present, Facebook, Inc.
|
|
8228
8273
|
* All rights reserved.
|
|
@@ -8237,9 +8282,9 @@ module.exports = ReactDOMUMDEntry;
|
|
|
8237
8282
|
|
|
8238
8283
|
var DOMProperty = _dereq_(11);
|
|
8239
8284
|
var EventPluginRegistry = _dereq_(18);
|
|
8240
|
-
var ReactComponentTreeHook = _dereq_(
|
|
8285
|
+
var ReactComponentTreeHook = _dereq_(132);
|
|
8241
8286
|
|
|
8242
|
-
var warning = _dereq_(
|
|
8287
|
+
var warning = _dereq_(157);
|
|
8243
8288
|
|
|
8244
8289
|
if ("development" !== 'production') {
|
|
8245
8290
|
var reactProps = {
|
|
@@ -8334,7 +8379,7 @@ var ReactDOMUnknownPropertyHook = {
|
|
|
8334
8379
|
};
|
|
8335
8380
|
|
|
8336
8381
|
module.exports = ReactDOMUnknownPropertyHook;
|
|
8337
|
-
},{"11":11,"
|
|
8382
|
+
},{"11":11,"132":132,"157":157,"18":18}],50:[function(_dereq_,module,exports){
|
|
8338
8383
|
/**
|
|
8339
8384
|
* Copyright 2016-present, Facebook, Inc.
|
|
8340
8385
|
* All rights reserved.
|
|
@@ -8350,11 +8395,11 @@ module.exports = ReactDOMUnknownPropertyHook;
|
|
|
8350
8395
|
|
|
8351
8396
|
var ReactInvalidSetStateWarningHook = _dereq_(65);
|
|
8352
8397
|
var ReactHostOperationHistoryHook = _dereq_(60);
|
|
8353
|
-
var ReactComponentTreeHook = _dereq_(
|
|
8354
|
-
var ExecutionEnvironment = _dereq_(
|
|
8398
|
+
var ReactComponentTreeHook = _dereq_(132);
|
|
8399
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
8355
8400
|
|
|
8356
|
-
var performanceNow = _dereq_(
|
|
8357
|
-
var warning = _dereq_(
|
|
8401
|
+
var performanceNow = _dereq_(155);
|
|
8402
|
+
var warning = _dereq_(157);
|
|
8358
8403
|
|
|
8359
8404
|
var hooks = [];
|
|
8360
8405
|
var didHookThrowForEvent = {};
|
|
@@ -8501,12 +8546,11 @@ function pauseCurrentLifeCycleTimer() {
|
|
|
8501
8546
|
}
|
|
8502
8547
|
|
|
8503
8548
|
function resumeCurrentLifeCycleTimer() {
|
|
8504
|
-
var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop()
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
var timerType = _lifeCycleTimerStack$.timerType;
|
|
8549
|
+
var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop(),
|
|
8550
|
+
startTime = _lifeCycleTimerStack$.startTime,
|
|
8551
|
+
nestedFlushStartTime = _lifeCycleTimerStack$.nestedFlushStartTime,
|
|
8552
|
+
debugID = _lifeCycleTimerStack$.debugID,
|
|
8553
|
+
timerType = _lifeCycleTimerStack$.timerType;
|
|
8510
8554
|
|
|
8511
8555
|
var nestedFlushDuration = performanceNow() - nestedFlushStartTime;
|
|
8512
8556
|
currentTimerStartTime = startTime;
|
|
@@ -8696,7 +8740,7 @@ if (/[?&]react_perf\b/.test(url)) {
|
|
|
8696
8740
|
}
|
|
8697
8741
|
|
|
8698
8742
|
module.exports = ReactDebugTool;
|
|
8699
|
-
},{"
|
|
8743
|
+
},{"132":132,"136":136,"155":155,"157":157,"60":60,"65":65}],51:[function(_dereq_,module,exports){
|
|
8700
8744
|
/**
|
|
8701
8745
|
* Copyright 2013-present, Facebook, Inc.
|
|
8702
8746
|
* All rights reserved.
|
|
@@ -8709,12 +8753,12 @@ module.exports = ReactDebugTool;
|
|
|
8709
8753
|
|
|
8710
8754
|
'use strict';
|
|
8711
8755
|
|
|
8712
|
-
var _assign = _dereq_(
|
|
8756
|
+
var _assign = _dereq_(158);
|
|
8713
8757
|
|
|
8714
8758
|
var ReactUpdates = _dereq_(82);
|
|
8715
8759
|
var Transaction = _dereq_(100);
|
|
8716
8760
|
|
|
8717
|
-
var emptyFunction = _dereq_(
|
|
8761
|
+
var emptyFunction = _dereq_(142);
|
|
8718
8762
|
|
|
8719
8763
|
var RESET_BATCHED_UPDATES = {
|
|
8720
8764
|
initialize: emptyFunction,
|
|
@@ -8764,7 +8808,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
8764
8808
|
};
|
|
8765
8809
|
|
|
8766
8810
|
module.exports = ReactDefaultBatchingStrategy;
|
|
8767
|
-
},{"100":100,"
|
|
8811
|
+
},{"100":100,"142":142,"158":158,"82":82}],52:[function(_dereq_,module,exports){
|
|
8768
8812
|
/**
|
|
8769
8813
|
* Copyright 2013-present, Facebook, Inc.
|
|
8770
8814
|
* All rights reserved.
|
|
@@ -9023,16 +9067,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
9023
9067
|
|
|
9024
9068
|
'use strict';
|
|
9025
9069
|
|
|
9026
|
-
var _assign = _dereq_(
|
|
9070
|
+
var _assign = _dereq_(158);
|
|
9027
9071
|
|
|
9028
|
-
var EventListener = _dereq_(
|
|
9029
|
-
var ExecutionEnvironment = _dereq_(
|
|
9072
|
+
var EventListener = _dereq_(135);
|
|
9073
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
9030
9074
|
var PooledClass = _dereq_(25);
|
|
9031
9075
|
var ReactDOMComponentTree = _dereq_(34);
|
|
9032
9076
|
var ReactUpdates = _dereq_(82);
|
|
9033
9077
|
|
|
9034
9078
|
var getEventTarget = _dereq_(114);
|
|
9035
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
9079
|
+
var getUnboundedScrollPosition = _dereq_(147);
|
|
9036
9080
|
|
|
9037
9081
|
/**
|
|
9038
9082
|
* Find the deepest React component completely containing the root of the
|
|
@@ -9165,7 +9209,7 @@ var ReactEventListener = {
|
|
|
9165
9209
|
};
|
|
9166
9210
|
|
|
9167
9211
|
module.exports = ReactEventListener;
|
|
9168
|
-
},{"114":114,"
|
|
9212
|
+
},{"114":114,"135":135,"136":136,"147":147,"158":158,"25":25,"34":34,"82":82}],58:[function(_dereq_,module,exports){
|
|
9169
9213
|
/**
|
|
9170
9214
|
* Copyright 2013-present, Facebook, Inc.
|
|
9171
9215
|
* All rights reserved.
|
|
@@ -9200,14 +9244,11 @@ module.exports = ReactFeatureFlags;
|
|
|
9200
9244
|
|
|
9201
9245
|
'use strict';
|
|
9202
9246
|
|
|
9203
|
-
var _prodInvariant = _dereq_(
|
|
9204
|
-
_assign = _dereq_(157);
|
|
9247
|
+
var _prodInvariant = _dereq_(125);
|
|
9205
9248
|
|
|
9206
|
-
var invariant = _dereq_(
|
|
9249
|
+
var invariant = _dereq_(150);
|
|
9207
9250
|
|
|
9208
9251
|
var genericComponentClass = null;
|
|
9209
|
-
// This registry keeps track of wrapper classes around host tags.
|
|
9210
|
-
var tagToComponentClass = {};
|
|
9211
9252
|
var textComponentClass = null;
|
|
9212
9253
|
|
|
9213
9254
|
var ReactHostComponentInjection = {
|
|
@@ -9220,11 +9261,6 @@ var ReactHostComponentInjection = {
|
|
|
9220
9261
|
// rendered as props.
|
|
9221
9262
|
injectTextComponentClass: function (componentClass) {
|
|
9222
9263
|
textComponentClass = componentClass;
|
|
9223
|
-
},
|
|
9224
|
-
// This accepts a keyed object with classes as values. Each key represents a
|
|
9225
|
-
// tag. That particular tag will use this class instead of the generic one.
|
|
9226
|
-
injectComponentClasses: function (componentClasses) {
|
|
9227
|
-
_assign(tagToComponentClass, componentClasses);
|
|
9228
9264
|
}
|
|
9229
9265
|
};
|
|
9230
9266
|
|
|
@@ -9263,7 +9299,7 @@ var ReactHostComponent = {
|
|
|
9263
9299
|
};
|
|
9264
9300
|
|
|
9265
9301
|
module.exports = ReactHostComponent;
|
|
9266
|
-
},{"
|
|
9302
|
+
},{"125":125,"150":150}],60:[function(_dereq_,module,exports){
|
|
9267
9303
|
/**
|
|
9268
9304
|
* Copyright 2016-present, Facebook, Inc.
|
|
9269
9305
|
* All rights reserved.
|
|
@@ -9346,9 +9382,9 @@ module.exports = ReactInjection;
|
|
|
9346
9382
|
|
|
9347
9383
|
var ReactDOMSelection = _dereq_(44);
|
|
9348
9384
|
|
|
9349
|
-
var containsNode = _dereq_(
|
|
9350
|
-
var focusNode = _dereq_(
|
|
9351
|
-
var getActiveElement = _dereq_(
|
|
9385
|
+
var containsNode = _dereq_(139);
|
|
9386
|
+
var focusNode = _dereq_(144);
|
|
9387
|
+
var getActiveElement = _dereq_(145);
|
|
9352
9388
|
|
|
9353
9389
|
function isInDocument(node) {
|
|
9354
9390
|
return containsNode(document.documentElement, node);
|
|
@@ -9455,7 +9491,7 @@ var ReactInputSelection = {
|
|
|
9455
9491
|
};
|
|
9456
9492
|
|
|
9457
9493
|
module.exports = ReactInputSelection;
|
|
9458
|
-
},{"
|
|
9494
|
+
},{"139":139,"144":144,"145":145,"44":44}],63:[function(_dereq_,module,exports){
|
|
9459
9495
|
/**
|
|
9460
9496
|
* Copyright 2013-present, Facebook, Inc.
|
|
9461
9497
|
* All rights reserved.
|
|
@@ -9541,7 +9577,7 @@ module.exports = { debugTool: debugTool };
|
|
|
9541
9577
|
|
|
9542
9578
|
'use strict';
|
|
9543
9579
|
|
|
9544
|
-
var warning = _dereq_(
|
|
9580
|
+
var warning = _dereq_(157);
|
|
9545
9581
|
|
|
9546
9582
|
if ("development" !== 'production') {
|
|
9547
9583
|
var processingChildContext = false;
|
|
@@ -9564,7 +9600,7 @@ var ReactInvalidSetStateWarningHook = {
|
|
|
9564
9600
|
};
|
|
9565
9601
|
|
|
9566
9602
|
module.exports = ReactInvalidSetStateWarningHook;
|
|
9567
|
-
},{"
|
|
9603
|
+
},{"157":157}],66:[function(_dereq_,module,exports){
|
|
9568
9604
|
/**
|
|
9569
9605
|
* Copyright 2013-present, Facebook, Inc.
|
|
9570
9606
|
* All rights reserved.
|
|
@@ -9627,13 +9663,13 @@ module.exports = ReactMarkupChecksum;
|
|
|
9627
9663
|
|
|
9628
9664
|
'use strict';
|
|
9629
9665
|
|
|
9630
|
-
var _prodInvariant = _dereq_(
|
|
9666
|
+
var _prodInvariant = _dereq_(125);
|
|
9631
9667
|
|
|
9632
9668
|
var DOMLazyTree = _dereq_(9);
|
|
9633
9669
|
var DOMProperty = _dereq_(11);
|
|
9634
|
-
var React = _dereq_(
|
|
9670
|
+
var React = _dereq_(134);
|
|
9635
9671
|
var ReactBrowserEventEmitter = _dereq_(26);
|
|
9636
|
-
var ReactCurrentOwner = _dereq_(
|
|
9672
|
+
var ReactCurrentOwner = _dereq_(133);
|
|
9637
9673
|
var ReactDOMComponentTree = _dereq_(34);
|
|
9638
9674
|
var ReactDOMContainerInfo = _dereq_(35);
|
|
9639
9675
|
var ReactDOMFeatureFlags = _dereq_(37);
|
|
@@ -9645,12 +9681,12 @@ var ReactReconciler = _dereq_(75);
|
|
|
9645
9681
|
var ReactUpdateQueue = _dereq_(81);
|
|
9646
9682
|
var ReactUpdates = _dereq_(82);
|
|
9647
9683
|
|
|
9648
|
-
var emptyObject = _dereq_(
|
|
9649
|
-
var instantiateReactComponent = _dereq_(
|
|
9650
|
-
var invariant = _dereq_(
|
|
9651
|
-
var setInnerHTML = _dereq_(
|
|
9652
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
9653
|
-
var warning = _dereq_(
|
|
9684
|
+
var emptyObject = _dereq_(143);
|
|
9685
|
+
var instantiateReactComponent = _dereq_(121);
|
|
9686
|
+
var invariant = _dereq_(150);
|
|
9687
|
+
var setInnerHTML = _dereq_(127);
|
|
9688
|
+
var shouldUpdateReactComponent = _dereq_(129);
|
|
9689
|
+
var warning = _dereq_(157);
|
|
9654
9690
|
|
|
9655
9691
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
9656
9692
|
var ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
|
|
@@ -10152,7 +10188,7 @@ var ReactMount = {
|
|
|
10152
10188
|
};
|
|
10153
10189
|
|
|
10154
10190
|
module.exports = ReactMount;
|
|
10155
|
-
},{"11":11,"
|
|
10191
|
+
},{"11":11,"121":121,"125":125,"127":127,"129":129,"133":133,"134":134,"143":143,"150":150,"157":157,"26":26,"34":34,"35":35,"37":37,"58":58,"63":63,"64":64,"66":66,"75":75,"81":81,"82":82,"9":9}],68:[function(_dereq_,module,exports){
|
|
10156
10192
|
/**
|
|
10157
10193
|
* Copyright 2013-present, Facebook, Inc.
|
|
10158
10194
|
* All rights reserved.
|
|
@@ -10165,19 +10201,19 @@ module.exports = ReactMount;
|
|
|
10165
10201
|
|
|
10166
10202
|
'use strict';
|
|
10167
10203
|
|
|
10168
|
-
var _prodInvariant = _dereq_(
|
|
10204
|
+
var _prodInvariant = _dereq_(125);
|
|
10169
10205
|
|
|
10170
10206
|
var ReactComponentEnvironment = _dereq_(29);
|
|
10171
10207
|
var ReactInstanceMap = _dereq_(63);
|
|
10172
10208
|
var ReactInstrumentation = _dereq_(64);
|
|
10173
10209
|
|
|
10174
|
-
var ReactCurrentOwner = _dereq_(
|
|
10210
|
+
var ReactCurrentOwner = _dereq_(133);
|
|
10175
10211
|
var ReactReconciler = _dereq_(75);
|
|
10176
10212
|
var ReactChildReconciler = _dereq_(27);
|
|
10177
10213
|
|
|
10178
|
-
var emptyFunction = _dereq_(
|
|
10214
|
+
var emptyFunction = _dereq_(142);
|
|
10179
10215
|
var flattenChildren = _dereq_(109);
|
|
10180
|
-
var invariant = _dereq_(
|
|
10216
|
+
var invariant = _dereq_(150);
|
|
10181
10217
|
|
|
10182
10218
|
/**
|
|
10183
10219
|
* Make an update for markup to be rendered and inserted at a supplied index.
|
|
@@ -10602,7 +10638,7 @@ var ReactMultiChild = {
|
|
|
10602
10638
|
};
|
|
10603
10639
|
|
|
10604
10640
|
module.exports = ReactMultiChild;
|
|
10605
|
-
},{"109":109,"
|
|
10641
|
+
},{"109":109,"125":125,"133":133,"142":142,"150":150,"27":27,"29":29,"63":63,"64":64,"75":75}],69:[function(_dereq_,module,exports){
|
|
10606
10642
|
/**
|
|
10607
10643
|
* Copyright 2013-present, Facebook, Inc.
|
|
10608
10644
|
* All rights reserved.
|
|
@@ -10616,11 +10652,11 @@ module.exports = ReactMultiChild;
|
|
|
10616
10652
|
|
|
10617
10653
|
'use strict';
|
|
10618
10654
|
|
|
10619
|
-
var _prodInvariant = _dereq_(
|
|
10655
|
+
var _prodInvariant = _dereq_(125);
|
|
10620
10656
|
|
|
10621
|
-
var React = _dereq_(
|
|
10657
|
+
var React = _dereq_(134);
|
|
10622
10658
|
|
|
10623
|
-
var invariant = _dereq_(
|
|
10659
|
+
var invariant = _dereq_(150);
|
|
10624
10660
|
|
|
10625
10661
|
var ReactNodeTypes = {
|
|
10626
10662
|
HOST: 0,
|
|
@@ -10642,7 +10678,7 @@ var ReactNodeTypes = {
|
|
|
10642
10678
|
};
|
|
10643
10679
|
|
|
10644
10680
|
module.exports = ReactNodeTypes;
|
|
10645
|
-
},{"
|
|
10681
|
+
},{"125":125,"134":134,"150":150}],70:[function(_dereq_,module,exports){
|
|
10646
10682
|
/**
|
|
10647
10683
|
* Copyright 2013-present, Facebook, Inc.
|
|
10648
10684
|
* All rights reserved.
|
|
@@ -10656,9 +10692,9 @@ module.exports = ReactNodeTypes;
|
|
|
10656
10692
|
|
|
10657
10693
|
'use strict';
|
|
10658
10694
|
|
|
10659
|
-
var _prodInvariant = _dereq_(
|
|
10695
|
+
var _prodInvariant = _dereq_(125);
|
|
10660
10696
|
|
|
10661
|
-
var invariant = _dereq_(
|
|
10697
|
+
var invariant = _dereq_(150);
|
|
10662
10698
|
|
|
10663
10699
|
/**
|
|
10664
10700
|
* @param {?object} object
|
|
@@ -10709,9 +10745,9 @@ var ReactOwner = {
|
|
|
10709
10745
|
* @final
|
|
10710
10746
|
* @internal
|
|
10711
10747
|
*/
|
|
10712
|
-
addComponentAsRefTo: function (component, ref, owner
|
|
10748
|
+
addComponentAsRefTo: function (component, ref, owner) {
|
|
10713
10749
|
!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;
|
|
10714
|
-
owner.attachRef(ref, component
|
|
10750
|
+
owner.attachRef(ref, component);
|
|
10715
10751
|
},
|
|
10716
10752
|
|
|
10717
10753
|
/**
|
|
@@ -10736,7 +10772,7 @@ var ReactOwner = {
|
|
|
10736
10772
|
};
|
|
10737
10773
|
|
|
10738
10774
|
module.exports = ReactOwner;
|
|
10739
|
-
},{"
|
|
10775
|
+
},{"125":125,"150":150}],71:[function(_dereq_,module,exports){
|
|
10740
10776
|
/**
|
|
10741
10777
|
* Copyright 2016-present, Facebook, Inc.
|
|
10742
10778
|
* All rights reserved.
|
|
@@ -10750,12 +10786,12 @@ module.exports = ReactOwner;
|
|
|
10750
10786
|
|
|
10751
10787
|
'use strict';
|
|
10752
10788
|
|
|
10753
|
-
var _assign = _dereq_(
|
|
10789
|
+
var _assign = _dereq_(158);
|
|
10754
10790
|
|
|
10755
10791
|
var _extends = _assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
10756
10792
|
|
|
10757
10793
|
var ReactDebugTool = _dereq_(50);
|
|
10758
|
-
var warning = _dereq_(
|
|
10794
|
+
var warning = _dereq_(157);
|
|
10759
10795
|
var alreadyWarned = false;
|
|
10760
10796
|
|
|
10761
10797
|
function roundFloat(val) {
|
|
@@ -10827,13 +10863,13 @@ function getExclusive() {
|
|
|
10827
10863
|
}
|
|
10828
10864
|
|
|
10829
10865
|
flushHistory.forEach(function (flush) {
|
|
10830
|
-
var measurements = flush.measurements
|
|
10831
|
-
|
|
10866
|
+
var measurements = flush.measurements,
|
|
10867
|
+
treeSnapshot = flush.treeSnapshot;
|
|
10832
10868
|
|
|
10833
10869
|
measurements.forEach(function (measurement) {
|
|
10834
|
-
var duration = measurement.duration
|
|
10835
|
-
|
|
10836
|
-
|
|
10870
|
+
var duration = measurement.duration,
|
|
10871
|
+
instanceID = measurement.instanceID,
|
|
10872
|
+
timerType = measurement.timerType;
|
|
10837
10873
|
|
|
10838
10874
|
updateAggregatedStats(treeSnapshot, instanceID, timerType, function (stats) {
|
|
10839
10875
|
stats.totalDuration += duration;
|
|
@@ -10864,9 +10900,9 @@ function getInclusive() {
|
|
|
10864
10900
|
var affectedIDs = {};
|
|
10865
10901
|
|
|
10866
10902
|
function updateAggregatedStats(treeSnapshot, instanceID, applyUpdate) {
|
|
10867
|
-
var _treeSnapshot$instanc = treeSnapshot[instanceID]
|
|
10868
|
-
|
|
10869
|
-
|
|
10903
|
+
var _treeSnapshot$instanc = treeSnapshot[instanceID],
|
|
10904
|
+
displayName = _treeSnapshot$instanc.displayName,
|
|
10905
|
+
ownerID = _treeSnapshot$instanc.ownerID;
|
|
10870
10906
|
|
|
10871
10907
|
var owner = treeSnapshot[ownerID];
|
|
10872
10908
|
var key = (owner ? owner.displayName + ' > ' : '') + displayName;
|
|
@@ -10889,8 +10925,8 @@ function getInclusive() {
|
|
|
10889
10925
|
var measurements = flush.measurements;
|
|
10890
10926
|
|
|
10891
10927
|
measurements.forEach(function (measurement) {
|
|
10892
|
-
var instanceID = measurement.instanceID
|
|
10893
|
-
|
|
10928
|
+
var instanceID = measurement.instanceID,
|
|
10929
|
+
timerType = measurement.timerType;
|
|
10894
10930
|
|
|
10895
10931
|
if (timerType !== 'render') {
|
|
10896
10932
|
return;
|
|
@@ -10900,13 +10936,13 @@ function getInclusive() {
|
|
|
10900
10936
|
});
|
|
10901
10937
|
|
|
10902
10938
|
flushHistory.forEach(function (flush) {
|
|
10903
|
-
var measurements = flush.measurements
|
|
10904
|
-
|
|
10939
|
+
var measurements = flush.measurements,
|
|
10940
|
+
treeSnapshot = flush.treeSnapshot;
|
|
10905
10941
|
|
|
10906
10942
|
measurements.forEach(function (measurement) {
|
|
10907
|
-
var duration = measurement.duration
|
|
10908
|
-
|
|
10909
|
-
|
|
10943
|
+
var duration = measurement.duration,
|
|
10944
|
+
instanceID = measurement.instanceID,
|
|
10945
|
+
timerType = measurement.timerType;
|
|
10910
10946
|
|
|
10911
10947
|
if (timerType !== 'render') {
|
|
10912
10948
|
return;
|
|
@@ -10949,9 +10985,9 @@ function getWasted() {
|
|
|
10949
10985
|
var affectedIDs = {};
|
|
10950
10986
|
|
|
10951
10987
|
function updateAggregatedStats(treeSnapshot, instanceID, applyUpdate) {
|
|
10952
|
-
var _treeSnapshot$instanc2 = treeSnapshot[instanceID]
|
|
10953
|
-
|
|
10954
|
-
|
|
10988
|
+
var _treeSnapshot$instanc2 = treeSnapshot[instanceID],
|
|
10989
|
+
displayName = _treeSnapshot$instanc2.displayName,
|
|
10990
|
+
ownerID = _treeSnapshot$instanc2.ownerID;
|
|
10955
10991
|
|
|
10956
10992
|
var owner = treeSnapshot[ownerID];
|
|
10957
10993
|
var key = (owner ? owner.displayName + ' > ' : '') + displayName;
|
|
@@ -10970,9 +11006,9 @@ function getWasted() {
|
|
|
10970
11006
|
}
|
|
10971
11007
|
|
|
10972
11008
|
flushHistory.forEach(function (flush) {
|
|
10973
|
-
var measurements = flush.measurements
|
|
10974
|
-
|
|
10975
|
-
|
|
11009
|
+
var measurements = flush.measurements,
|
|
11010
|
+
treeSnapshot = flush.treeSnapshot,
|
|
11011
|
+
operations = flush.operations;
|
|
10976
11012
|
|
|
10977
11013
|
var isDefinitelyNotWastedByID = {};
|
|
10978
11014
|
|
|
@@ -10992,8 +11028,8 @@ function getWasted() {
|
|
|
10992
11028
|
// These are potential candidates for being wasted renders.
|
|
10993
11029
|
var renderedCompositeIDs = {};
|
|
10994
11030
|
measurements.forEach(function (measurement) {
|
|
10995
|
-
var instanceID = measurement.instanceID
|
|
10996
|
-
|
|
11031
|
+
var instanceID = measurement.instanceID,
|
|
11032
|
+
timerType = measurement.timerType;
|
|
10997
11033
|
|
|
10998
11034
|
if (timerType !== 'render') {
|
|
10999
11035
|
return;
|
|
@@ -11002,9 +11038,9 @@ function getWasted() {
|
|
|
11002
11038
|
});
|
|
11003
11039
|
|
|
11004
11040
|
measurements.forEach(function (measurement) {
|
|
11005
|
-
var duration = measurement.duration
|
|
11006
|
-
|
|
11007
|
-
|
|
11041
|
+
var duration = measurement.duration,
|
|
11042
|
+
instanceID = measurement.instanceID,
|
|
11043
|
+
timerType = measurement.timerType;
|
|
11008
11044
|
|
|
11009
11045
|
if (timerType !== 'render') {
|
|
11010
11046
|
return;
|
|
@@ -11057,16 +11093,16 @@ function getOperations() {
|
|
|
11057
11093
|
|
|
11058
11094
|
var stats = [];
|
|
11059
11095
|
flushHistory.forEach(function (flush, flushIndex) {
|
|
11060
|
-
var operations = flush.operations
|
|
11061
|
-
|
|
11096
|
+
var operations = flush.operations,
|
|
11097
|
+
treeSnapshot = flush.treeSnapshot;
|
|
11062
11098
|
|
|
11063
11099
|
operations.forEach(function (operation) {
|
|
11064
|
-
var instanceID = operation.instanceID
|
|
11065
|
-
|
|
11066
|
-
|
|
11067
|
-
var _treeSnapshot$instanc3 = treeSnapshot[instanceID]
|
|
11068
|
-
|
|
11069
|
-
|
|
11100
|
+
var instanceID = operation.instanceID,
|
|
11101
|
+
type = operation.type,
|
|
11102
|
+
payload = operation.payload;
|
|
11103
|
+
var _treeSnapshot$instanc3 = treeSnapshot[instanceID],
|
|
11104
|
+
displayName = _treeSnapshot$instanc3.displayName,
|
|
11105
|
+
ownerID = _treeSnapshot$instanc3.ownerID;
|
|
11070
11106
|
|
|
11071
11107
|
var owner = treeSnapshot[ownerID];
|
|
11072
11108
|
var key = (owner ? owner.displayName + ' > ' : '') + displayName;
|
|
@@ -11092,9 +11128,9 @@ function printExclusive(flushHistory) {
|
|
|
11092
11128
|
|
|
11093
11129
|
var stats = getExclusive(flushHistory);
|
|
11094
11130
|
var table = stats.map(function (item) {
|
|
11095
|
-
var key = item.key
|
|
11096
|
-
|
|
11097
|
-
|
|
11131
|
+
var key = item.key,
|
|
11132
|
+
instanceCount = item.instanceCount,
|
|
11133
|
+
totalDuration = item.totalDuration;
|
|
11098
11134
|
|
|
11099
11135
|
var renderCount = item.counts.render || 0;
|
|
11100
11136
|
var renderDuration = item.durations.render || 0;
|
|
@@ -11119,10 +11155,10 @@ function printInclusive(flushHistory) {
|
|
|
11119
11155
|
|
|
11120
11156
|
var stats = getInclusive(flushHistory);
|
|
11121
11157
|
var table = stats.map(function (item) {
|
|
11122
|
-
var key = item.key
|
|
11123
|
-
|
|
11124
|
-
|
|
11125
|
-
|
|
11158
|
+
var key = item.key,
|
|
11159
|
+
instanceCount = item.instanceCount,
|
|
11160
|
+
inclusiveRenderDuration = item.inclusiveRenderDuration,
|
|
11161
|
+
renderCount = item.renderCount;
|
|
11126
11162
|
|
|
11127
11163
|
return {
|
|
11128
11164
|
'Owner > Component': key,
|
|
@@ -11142,10 +11178,10 @@ function printWasted(flushHistory) {
|
|
|
11142
11178
|
|
|
11143
11179
|
var stats = getWasted(flushHistory);
|
|
11144
11180
|
var table = stats.map(function (item) {
|
|
11145
|
-
var key = item.key
|
|
11146
|
-
|
|
11147
|
-
|
|
11148
|
-
|
|
11181
|
+
var key = item.key,
|
|
11182
|
+
instanceCount = item.instanceCount,
|
|
11183
|
+
inclusiveRenderDuration = item.inclusiveRenderDuration,
|
|
11184
|
+
renderCount = item.renderCount;
|
|
11149
11185
|
|
|
11150
11186
|
return {
|
|
11151
11187
|
'Owner > Component': key,
|
|
@@ -11237,7 +11273,7 @@ var ReactPerfAnalysis = {
|
|
|
11237
11273
|
};
|
|
11238
11274
|
|
|
11239
11275
|
module.exports = ReactPerfAnalysis;
|
|
11240
|
-
},{"
|
|
11276
|
+
},{"157":157,"158":158,"50":50}],72:[function(_dereq_,module,exports){
|
|
11241
11277
|
/**
|
|
11242
11278
|
* Copyright 2013-present, Facebook, Inc.
|
|
11243
11279
|
* All rights reserved.
|
|
@@ -11292,7 +11328,7 @@ module.exports = ReactPropTypesSecret;
|
|
|
11292
11328
|
|
|
11293
11329
|
'use strict';
|
|
11294
11330
|
|
|
11295
|
-
var _assign = _dereq_(
|
|
11331
|
+
var _assign = _dereq_(158);
|
|
11296
11332
|
|
|
11297
11333
|
var CallbackQueue = _dereq_(6);
|
|
11298
11334
|
var PooledClass = _dereq_(25);
|
|
@@ -11457,7 +11493,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction, Mixin);
|
|
|
11457
11493
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
11458
11494
|
|
|
11459
11495
|
module.exports = ReactReconcileTransaction;
|
|
11460
|
-
},{"100":100,"
|
|
11496
|
+
},{"100":100,"158":158,"25":25,"26":26,"6":6,"62":62,"64":64,"81":81}],75:[function(_dereq_,module,exports){
|
|
11461
11497
|
/**
|
|
11462
11498
|
* Copyright 2013-present, Facebook, Inc.
|
|
11463
11499
|
* All rights reserved.
|
|
@@ -11473,14 +11509,14 @@ module.exports = ReactReconcileTransaction;
|
|
|
11473
11509
|
var ReactRef = _dereq_(76);
|
|
11474
11510
|
var ReactInstrumentation = _dereq_(64);
|
|
11475
11511
|
|
|
11476
|
-
var warning = _dereq_(
|
|
11512
|
+
var warning = _dereq_(157);
|
|
11477
11513
|
|
|
11478
11514
|
/**
|
|
11479
11515
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
11480
11516
|
* to avoid allocations in the transaction mount-ready queue.
|
|
11481
11517
|
*/
|
|
11482
|
-
function attachRefs(
|
|
11483
|
-
ReactRef.attachRefs(this, this._currentElement
|
|
11518
|
+
function attachRefs() {
|
|
11519
|
+
ReactRef.attachRefs(this, this._currentElement);
|
|
11484
11520
|
}
|
|
11485
11521
|
|
|
11486
11522
|
var ReactReconciler = {
|
|
@@ -11625,7 +11661,7 @@ var ReactReconciler = {
|
|
|
11625
11661
|
};
|
|
11626
11662
|
|
|
11627
11663
|
module.exports = ReactReconciler;
|
|
11628
|
-
},{"
|
|
11664
|
+
},{"157":157,"64":64,"76":76}],76:[function(_dereq_,module,exports){
|
|
11629
11665
|
/**
|
|
11630
11666
|
* Copyright 2013-present, Facebook, Inc.
|
|
11631
11667
|
* All rights reserved.
|
|
@@ -11643,12 +11679,12 @@ var ReactOwner = _dereq_(70);
|
|
|
11643
11679
|
|
|
11644
11680
|
var ReactRef = {};
|
|
11645
11681
|
|
|
11646
|
-
function attachRef(ref, component, owner
|
|
11682
|
+
function attachRef(ref, component, owner) {
|
|
11647
11683
|
if (typeof ref === 'function') {
|
|
11648
|
-
ref(component.getPublicInstance(
|
|
11684
|
+
ref(component.getPublicInstance());
|
|
11649
11685
|
} else {
|
|
11650
11686
|
// Legacy ref
|
|
11651
|
-
ReactOwner.addComponentAsRefTo(component, ref, owner
|
|
11687
|
+
ReactOwner.addComponentAsRefTo(component, ref, owner);
|
|
11652
11688
|
}
|
|
11653
11689
|
}
|
|
11654
11690
|
|
|
@@ -11661,13 +11697,13 @@ function detachRef(ref, component, owner) {
|
|
|
11661
11697
|
}
|
|
11662
11698
|
}
|
|
11663
11699
|
|
|
11664
|
-
ReactRef.attachRefs = function (instance, element
|
|
11700
|
+
ReactRef.attachRefs = function (instance, element) {
|
|
11665
11701
|
if (element === null || typeof element !== 'object') {
|
|
11666
11702
|
return;
|
|
11667
11703
|
}
|
|
11668
11704
|
var ref = element.ref;
|
|
11669
11705
|
if (ref != null) {
|
|
11670
|
-
attachRef(ref, instance, element._owner
|
|
11706
|
+
attachRef(ref, instance, element._owner);
|
|
11671
11707
|
}
|
|
11672
11708
|
};
|
|
11673
11709
|
|
|
@@ -11727,7 +11763,7 @@ module.exports = ReactRef;
|
|
|
11727
11763
|
|
|
11728
11764
|
'use strict';
|
|
11729
11765
|
|
|
11730
|
-
var _assign = _dereq_(
|
|
11766
|
+
var _assign = _dereq_(158);
|
|
11731
11767
|
|
|
11732
11768
|
var PooledClass = _dereq_(25);
|
|
11733
11769
|
var Transaction = _dereq_(100);
|
|
@@ -11804,7 +11840,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction, Mixin);
|
|
|
11804
11840
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
11805
11841
|
|
|
11806
11842
|
module.exports = ReactServerRenderingTransaction;
|
|
11807
|
-
},{"100":100,"
|
|
11843
|
+
},{"100":100,"158":158,"25":25,"64":64,"78":78}],78:[function(_dereq_,module,exports){
|
|
11808
11844
|
/**
|
|
11809
11845
|
* Copyright 2015-present, Facebook, Inc.
|
|
11810
11846
|
* All rights reserved.
|
|
@@ -11822,7 +11858,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
11822
11858
|
|
|
11823
11859
|
var ReactUpdateQueue = _dereq_(81);
|
|
11824
11860
|
|
|
11825
|
-
var warning = _dereq_(
|
|
11861
|
+
var warning = _dereq_(157);
|
|
11826
11862
|
|
|
11827
11863
|
function warnNoop(publicInstance, callerName) {
|
|
11828
11864
|
if ("development" !== 'production') {
|
|
@@ -11943,7 +11979,7 @@ var ReactServerUpdateQueue = function () {
|
|
|
11943
11979
|
}();
|
|
11944
11980
|
|
|
11945
11981
|
module.exports = ReactServerUpdateQueue;
|
|
11946
|
-
},{"
|
|
11982
|
+
},{"157":157,"81":81}],79:[function(_dereq_,module,exports){
|
|
11947
11983
|
/**
|
|
11948
11984
|
* Copyright 2013-present, Facebook, Inc.
|
|
11949
11985
|
* All rights reserved.
|
|
@@ -11956,21 +11992,20 @@ module.exports = ReactServerUpdateQueue;
|
|
|
11956
11992
|
|
|
11957
11993
|
'use strict';
|
|
11958
11994
|
|
|
11959
|
-
var _prodInvariant = _dereq_(
|
|
11960
|
-
_assign = _dereq_(
|
|
11995
|
+
var _prodInvariant = _dereq_(125),
|
|
11996
|
+
_assign = _dereq_(158);
|
|
11961
11997
|
|
|
11962
11998
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11963
11999
|
|
|
11964
|
-
var React = _dereq_(
|
|
12000
|
+
var React = _dereq_(134);
|
|
11965
12001
|
var ReactDefaultInjection = _dereq_(52);
|
|
11966
12002
|
var ReactCompositeComponent = _dereq_(30);
|
|
11967
12003
|
var ReactReconciler = _dereq_(75);
|
|
11968
12004
|
var ReactUpdates = _dereq_(82);
|
|
11969
12005
|
|
|
11970
|
-
var emptyObject = _dereq_(
|
|
11971
|
-
var
|
|
11972
|
-
|
|
11973
|
-
var nextDebugID = 1;
|
|
12006
|
+
var emptyObject = _dereq_(143);
|
|
12007
|
+
var getNextDebugID = _dereq_(117);
|
|
12008
|
+
var invariant = _dereq_(150);
|
|
11974
12009
|
|
|
11975
12010
|
var NoopInternalComponent = function () {
|
|
11976
12011
|
function NoopInternalComponent(element) {
|
|
@@ -11980,7 +12015,7 @@ var NoopInternalComponent = function () {
|
|
|
11980
12015
|
this._currentElement = element;
|
|
11981
12016
|
|
|
11982
12017
|
if ("development" !== 'production') {
|
|
11983
|
-
this._debugID =
|
|
12018
|
+
this._debugID = getNextDebugID();
|
|
11984
12019
|
}
|
|
11985
12020
|
}
|
|
11986
12021
|
|
|
@@ -12007,7 +12042,7 @@ var NoopInternalComponent = function () {
|
|
|
12007
12042
|
var ShallowComponentWrapper = function (element) {
|
|
12008
12043
|
// TODO: Consolidate with instantiateReactComponent
|
|
12009
12044
|
if ("development" !== 'production') {
|
|
12010
|
-
this._debugID =
|
|
12045
|
+
this._debugID = getNextDebugID();
|
|
12011
12046
|
}
|
|
12012
12047
|
|
|
12013
12048
|
this.construct(element);
|
|
@@ -12079,7 +12114,7 @@ var ReactShallowRenderer = function () {
|
|
|
12079
12114
|
}();
|
|
12080
12115
|
|
|
12081
12116
|
module.exports = ReactShallowRenderer;
|
|
12082
|
-
},{"
|
|
12117
|
+
},{"117":117,"125":125,"134":134,"143":143,"150":150,"158":158,"30":30,"52":52,"75":75,"82":82}],80:[function(_dereq_,module,exports){
|
|
12083
12118
|
/**
|
|
12084
12119
|
* Copyright 2013-present, Facebook, Inc.
|
|
12085
12120
|
* All rights reserved.
|
|
@@ -12092,14 +12127,14 @@ module.exports = ReactShallowRenderer;
|
|
|
12092
12127
|
|
|
12093
12128
|
'use strict';
|
|
12094
12129
|
|
|
12095
|
-
var _prodInvariant = _dereq_(
|
|
12096
|
-
_assign = _dereq_(
|
|
12130
|
+
var _prodInvariant = _dereq_(125),
|
|
12131
|
+
_assign = _dereq_(158);
|
|
12097
12132
|
|
|
12098
12133
|
var EventConstants = _dereq_(16);
|
|
12099
12134
|
var EventPluginHub = _dereq_(17);
|
|
12100
12135
|
var EventPluginRegistry = _dereq_(18);
|
|
12101
12136
|
var EventPropagators = _dereq_(20);
|
|
12102
|
-
var React = _dereq_(
|
|
12137
|
+
var React = _dereq_(134);
|
|
12103
12138
|
var ReactDOM = _dereq_(31);
|
|
12104
12139
|
var ReactDOMComponentTree = _dereq_(34);
|
|
12105
12140
|
var ReactBrowserEventEmitter = _dereq_(26);
|
|
@@ -12109,7 +12144,7 @@ var SyntheticEvent = _dereq_(91);
|
|
|
12109
12144
|
var ReactShallowRenderer = _dereq_(79);
|
|
12110
12145
|
|
|
12111
12146
|
var findDOMNode = _dereq_(108);
|
|
12112
|
-
var invariant = _dereq_(
|
|
12147
|
+
var invariant = _dereq_(150);
|
|
12113
12148
|
|
|
12114
12149
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
12115
12150
|
|
|
@@ -12151,14 +12186,14 @@ function findAllInRenderedTreeInternal(inst, test) {
|
|
|
12151
12186
|
* @lends ReactTestUtils
|
|
12152
12187
|
*/
|
|
12153
12188
|
var ReactTestUtils = {
|
|
12154
|
-
renderIntoDocument: function (
|
|
12189
|
+
renderIntoDocument: function (element) {
|
|
12155
12190
|
var div = document.createElement('div');
|
|
12156
12191
|
// None of our tests actually require attaching the container to the
|
|
12157
12192
|
// DOM, and doing so creates a mess that we rely on test isolation to
|
|
12158
12193
|
// clean up, so we're going to stop honoring the name of this method
|
|
12159
12194
|
// (and probably rename it eventually) if no problems arise.
|
|
12160
12195
|
// document.documentElement.appendChild(div);
|
|
12161
|
-
return ReactDOM.render(
|
|
12196
|
+
return ReactDOM.render(element, div);
|
|
12162
12197
|
},
|
|
12163
12198
|
|
|
12164
12199
|
isElement: function (element) {
|
|
@@ -12491,7 +12526,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
12491
12526
|
});
|
|
12492
12527
|
|
|
12493
12528
|
module.exports = ReactTestUtils;
|
|
12494
|
-
},{"108":108,"
|
|
12529
|
+
},{"108":108,"125":125,"134":134,"150":150,"158":158,"16":16,"17":17,"18":18,"20":20,"26":26,"31":31,"34":34,"63":63,"79":79,"82":82,"91":91}],81:[function(_dereq_,module,exports){
|
|
12495
12530
|
/**
|
|
12496
12531
|
* Copyright 2015-present, Facebook, Inc.
|
|
12497
12532
|
* All rights reserved.
|
|
@@ -12504,15 +12539,15 @@ module.exports = ReactTestUtils;
|
|
|
12504
12539
|
|
|
12505
12540
|
'use strict';
|
|
12506
12541
|
|
|
12507
|
-
var _prodInvariant = _dereq_(
|
|
12542
|
+
var _prodInvariant = _dereq_(125);
|
|
12508
12543
|
|
|
12509
|
-
var ReactCurrentOwner = _dereq_(
|
|
12544
|
+
var ReactCurrentOwner = _dereq_(133);
|
|
12510
12545
|
var ReactInstanceMap = _dereq_(63);
|
|
12511
12546
|
var ReactInstrumentation = _dereq_(64);
|
|
12512
12547
|
var ReactUpdates = _dereq_(82);
|
|
12513
12548
|
|
|
12514
|
-
var invariant = _dereq_(
|
|
12515
|
-
var warning = _dereq_(
|
|
12549
|
+
var invariant = _dereq_(150);
|
|
12550
|
+
var warning = _dereq_(157);
|
|
12516
12551
|
|
|
12517
12552
|
function enqueueUpdate(internalInstance) {
|
|
12518
12553
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -12717,7 +12752,7 @@ var ReactUpdateQueue = {
|
|
|
12717
12752
|
};
|
|
12718
12753
|
|
|
12719
12754
|
module.exports = ReactUpdateQueue;
|
|
12720
|
-
},{"
|
|
12755
|
+
},{"125":125,"133":133,"150":150,"157":157,"63":63,"64":64,"82":82}],82:[function(_dereq_,module,exports){
|
|
12721
12756
|
/**
|
|
12722
12757
|
* Copyright 2013-present, Facebook, Inc.
|
|
12723
12758
|
* All rights reserved.
|
|
@@ -12730,8 +12765,8 @@ module.exports = ReactUpdateQueue;
|
|
|
12730
12765
|
|
|
12731
12766
|
'use strict';
|
|
12732
12767
|
|
|
12733
|
-
var _prodInvariant = _dereq_(
|
|
12734
|
-
_assign = _dereq_(
|
|
12768
|
+
var _prodInvariant = _dereq_(125),
|
|
12769
|
+
_assign = _dereq_(158);
|
|
12735
12770
|
|
|
12736
12771
|
var CallbackQueue = _dereq_(6);
|
|
12737
12772
|
var PooledClass = _dereq_(25);
|
|
@@ -12739,7 +12774,7 @@ var ReactFeatureFlags = _dereq_(58);
|
|
|
12739
12774
|
var ReactReconciler = _dereq_(75);
|
|
12740
12775
|
var Transaction = _dereq_(100);
|
|
12741
12776
|
|
|
12742
|
-
var invariant = _dereq_(
|
|
12777
|
+
var invariant = _dereq_(150);
|
|
12743
12778
|
|
|
12744
12779
|
var dirtyComponents = [];
|
|
12745
12780
|
var updateBatchNumber = 0;
|
|
@@ -12968,7 +13003,7 @@ var ReactUpdates = {
|
|
|
12968
13003
|
};
|
|
12969
13004
|
|
|
12970
13005
|
module.exports = ReactUpdates;
|
|
12971
|
-
},{"100":100,"
|
|
13006
|
+
},{"100":100,"125":125,"150":150,"158":158,"25":25,"58":58,"6":6,"75":75}],83:[function(_dereq_,module,exports){
|
|
12972
13007
|
/**
|
|
12973
13008
|
* Copyright 2013-present, Facebook, Inc.
|
|
12974
13009
|
* All rights reserved.
|
|
@@ -12981,7 +13016,7 @@ module.exports = ReactUpdates;
|
|
|
12981
13016
|
|
|
12982
13017
|
'use strict';
|
|
12983
13018
|
|
|
12984
|
-
module.exports = '15.4.
|
|
13019
|
+
module.exports = '15.4.2';
|
|
12985
13020
|
},{}],84:[function(_dereq_,module,exports){
|
|
12986
13021
|
/**
|
|
12987
13022
|
* Copyright 2013-present, Facebook, Inc.
|
|
@@ -13298,14 +13333,14 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
13298
13333
|
'use strict';
|
|
13299
13334
|
|
|
13300
13335
|
var EventPropagators = _dereq_(20);
|
|
13301
|
-
var ExecutionEnvironment = _dereq_(
|
|
13336
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
13302
13337
|
var ReactDOMComponentTree = _dereq_(34);
|
|
13303
13338
|
var ReactInputSelection = _dereq_(62);
|
|
13304
13339
|
var SyntheticEvent = _dereq_(91);
|
|
13305
13340
|
|
|
13306
|
-
var getActiveElement = _dereq_(
|
|
13307
|
-
var isTextInputElement = _dereq_(
|
|
13308
|
-
var shallowEqual = _dereq_(
|
|
13341
|
+
var getActiveElement = _dereq_(145);
|
|
13342
|
+
var isTextInputElement = _dereq_(123);
|
|
13343
|
+
var shallowEqual = _dereq_(156);
|
|
13309
13344
|
|
|
13310
13345
|
var skipSelectionChangeEvent = ExecutionEnvironment.canUseDOM && 'documentMode' in document && document.documentMode <= 11;
|
|
13311
13346
|
|
|
@@ -13475,7 +13510,7 @@ var SelectEventPlugin = {
|
|
|
13475
13510
|
};
|
|
13476
13511
|
|
|
13477
13512
|
module.exports = SelectEventPlugin;
|
|
13478
|
-
},{"
|
|
13513
|
+
},{"123":123,"136":136,"145":145,"156":156,"20":20,"34":34,"62":62,"91":91}],86:[function(_dereq_,module,exports){
|
|
13479
13514
|
/**
|
|
13480
13515
|
* Copyright 2013-present, Facebook, Inc.
|
|
13481
13516
|
* All rights reserved.
|
|
@@ -13489,9 +13524,9 @@ module.exports = SelectEventPlugin;
|
|
|
13489
13524
|
|
|
13490
13525
|
'use strict';
|
|
13491
13526
|
|
|
13492
|
-
var _prodInvariant = _dereq_(
|
|
13527
|
+
var _prodInvariant = _dereq_(125);
|
|
13493
13528
|
|
|
13494
|
-
var EventListener = _dereq_(
|
|
13529
|
+
var EventListener = _dereq_(135);
|
|
13495
13530
|
var EventPropagators = _dereq_(20);
|
|
13496
13531
|
var ReactDOMComponentTree = _dereq_(34);
|
|
13497
13532
|
var SyntheticAnimationEvent = _dereq_(87);
|
|
@@ -13506,9 +13541,9 @@ var SyntheticTransitionEvent = _dereq_(97);
|
|
|
13506
13541
|
var SyntheticUIEvent = _dereq_(98);
|
|
13507
13542
|
var SyntheticWheelEvent = _dereq_(99);
|
|
13508
13543
|
|
|
13509
|
-
var emptyFunction = _dereq_(
|
|
13544
|
+
var emptyFunction = _dereq_(142);
|
|
13510
13545
|
var getEventCharCode = _dereq_(111);
|
|
13511
|
-
var invariant = _dereq_(
|
|
13546
|
+
var invariant = _dereq_(150);
|
|
13512
13547
|
|
|
13513
13548
|
/**
|
|
13514
13549
|
* Turns
|
|
@@ -13558,18 +13593,6 @@ function isInteractive(tag) {
|
|
|
13558
13593
|
return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';
|
|
13559
13594
|
}
|
|
13560
13595
|
|
|
13561
|
-
function shouldPreventMouseEvent(inst) {
|
|
13562
|
-
if (inst) {
|
|
13563
|
-
var disabled = inst._currentElement && inst._currentElement.props.disabled;
|
|
13564
|
-
|
|
13565
|
-
if (disabled) {
|
|
13566
|
-
return isInteractive(inst._tag);
|
|
13567
|
-
}
|
|
13568
|
-
}
|
|
13569
|
-
|
|
13570
|
-
return false;
|
|
13571
|
-
}
|
|
13572
|
-
|
|
13573
13596
|
var SimpleEventPlugin = {
|
|
13574
13597
|
|
|
13575
13598
|
eventTypes: eventTypes,
|
|
@@ -13640,10 +13663,7 @@ var SimpleEventPlugin = {
|
|
|
13640
13663
|
case 'topMouseDown':
|
|
13641
13664
|
case 'topMouseMove':
|
|
13642
13665
|
case 'topMouseUp':
|
|
13643
|
-
|
|
13644
|
-
if (shouldPreventMouseEvent(targetInst)) {
|
|
13645
|
-
return null;
|
|
13646
|
-
}
|
|
13666
|
+
// TODO: Disabled elements should not respond to mouse events
|
|
13647
13667
|
/* falls through */
|
|
13648
13668
|
case 'topMouseOut':
|
|
13649
13669
|
case 'topMouseOver':
|
|
@@ -13718,7 +13738,7 @@ var SimpleEventPlugin = {
|
|
|
13718
13738
|
};
|
|
13719
13739
|
|
|
13720
13740
|
module.exports = SimpleEventPlugin;
|
|
13721
|
-
},{"111":111,"
|
|
13741
|
+
},{"111":111,"125":125,"135":135,"142":142,"150":150,"20":20,"34":34,"87":87,"88":88,"90":90,"91":91,"92":92,"94":94,"95":95,"96":96,"97":97,"98":98,"99":99}],87:[function(_dereq_,module,exports){
|
|
13722
13742
|
/**
|
|
13723
13743
|
* Copyright 2013-present, Facebook, Inc.
|
|
13724
13744
|
* All rights reserved.
|
|
@@ -13880,12 +13900,12 @@ module.exports = SyntheticDragEvent;
|
|
|
13880
13900
|
|
|
13881
13901
|
'use strict';
|
|
13882
13902
|
|
|
13883
|
-
var _assign = _dereq_(
|
|
13903
|
+
var _assign = _dereq_(158);
|
|
13884
13904
|
|
|
13885
13905
|
var PooledClass = _dereq_(25);
|
|
13886
13906
|
|
|
13887
|
-
var emptyFunction = _dereq_(
|
|
13888
|
-
var warning = _dereq_(
|
|
13907
|
+
var emptyFunction = _dereq_(142);
|
|
13908
|
+
var warning = _dereq_(157);
|
|
13889
13909
|
|
|
13890
13910
|
var didWarnForAddedNewProperty = false;
|
|
13891
13911
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -14135,7 +14155,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
14135
14155
|
"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;
|
|
14136
14156
|
}
|
|
14137
14157
|
}
|
|
14138
|
-
},{"
|
|
14158
|
+
},{"142":142,"157":157,"158":158,"25":25}],92:[function(_dereq_,module,exports){
|
|
14139
14159
|
/**
|
|
14140
14160
|
* Copyright 2013-present, Facebook, Inc.
|
|
14141
14161
|
* All rights reserved.
|
|
@@ -14575,9 +14595,9 @@ module.exports = SyntheticWheelEvent;
|
|
|
14575
14595
|
|
|
14576
14596
|
'use strict';
|
|
14577
14597
|
|
|
14578
|
-
var _prodInvariant = _dereq_(
|
|
14598
|
+
var _prodInvariant = _dereq_(125);
|
|
14579
14599
|
|
|
14580
|
-
var invariant = _dereq_(
|
|
14600
|
+
var invariant = _dereq_(150);
|
|
14581
14601
|
|
|
14582
14602
|
var OBSERVED_ERROR = {};
|
|
14583
14603
|
|
|
@@ -14786,7 +14806,7 @@ var TransactionImpl = {
|
|
|
14786
14806
|
};
|
|
14787
14807
|
|
|
14788
14808
|
module.exports = TransactionImpl;
|
|
14789
|
-
},{"
|
|
14809
|
+
},{"125":125,"150":150}],101:[function(_dereq_,module,exports){
|
|
14790
14810
|
/**
|
|
14791
14811
|
* Copyright 2013-present, Facebook, Inc.
|
|
14792
14812
|
* All rights reserved.
|
|
@@ -14827,9 +14847,9 @@ module.exports = ViewportMetrics;
|
|
|
14827
14847
|
|
|
14828
14848
|
'use strict';
|
|
14829
14849
|
|
|
14830
|
-
var _prodInvariant = _dereq_(
|
|
14850
|
+
var _prodInvariant = _dereq_(125);
|
|
14831
14851
|
|
|
14832
|
-
var invariant = _dereq_(
|
|
14852
|
+
var invariant = _dereq_(150);
|
|
14833
14853
|
|
|
14834
14854
|
/**
|
|
14835
14855
|
* Accumulates items that must not be null or undefined into the first one. This
|
|
@@ -14871,7 +14891,7 @@ function accumulateInto(current, next) {
|
|
|
14871
14891
|
}
|
|
14872
14892
|
|
|
14873
14893
|
module.exports = accumulateInto;
|
|
14874
|
-
},{"
|
|
14894
|
+
},{"125":125,"150":150}],103:[function(_dereq_,module,exports){
|
|
14875
14895
|
/**
|
|
14876
14896
|
* Copyright 2013-present, Facebook, Inc.
|
|
14877
14897
|
* All rights reserved.
|
|
@@ -14929,13 +14949,13 @@ module.exports = adler32;
|
|
|
14929
14949
|
|
|
14930
14950
|
'use strict';
|
|
14931
14951
|
|
|
14932
|
-
var _prodInvariant = _dereq_(
|
|
14952
|
+
var _prodInvariant = _dereq_(125);
|
|
14933
14953
|
|
|
14934
14954
|
var ReactPropTypeLocationNames = _dereq_(72);
|
|
14935
14955
|
var ReactPropTypesSecret = _dereq_(73);
|
|
14936
14956
|
|
|
14937
|
-
var invariant = _dereq_(
|
|
14938
|
-
var warning = _dereq_(
|
|
14957
|
+
var invariant = _dereq_(150);
|
|
14958
|
+
var warning = _dereq_(157);
|
|
14939
14959
|
|
|
14940
14960
|
var ReactComponentTreeHook;
|
|
14941
14961
|
|
|
@@ -14945,7 +14965,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
|
14945
14965
|
// https://github.com/facebook/react/issues/7240
|
|
14946
14966
|
// Remove the inline requires when we don't need them anymore:
|
|
14947
14967
|
// https://github.com/facebook/react/pull/7178
|
|
14948
|
-
ReactComponentTreeHook = _dereq_(
|
|
14968
|
+
ReactComponentTreeHook = _dereq_(132);
|
|
14949
14969
|
}
|
|
14950
14970
|
|
|
14951
14971
|
var loggedTypeFailures = {};
|
|
@@ -14987,7 +15007,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
14987
15007
|
|
|
14988
15008
|
if ("development" !== 'production') {
|
|
14989
15009
|
if (!ReactComponentTreeHook) {
|
|
14990
|
-
ReactComponentTreeHook = _dereq_(
|
|
15010
|
+
ReactComponentTreeHook = _dereq_(132);
|
|
14991
15011
|
}
|
|
14992
15012
|
if (debugID !== null) {
|
|
14993
15013
|
componentStackInfo = ReactComponentTreeHook.getStackAddendumByID(debugID);
|
|
@@ -15004,7 +15024,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
15004
15024
|
|
|
15005
15025
|
module.exports = checkReactTypeSpec;
|
|
15006
15026
|
}).call(this,undefined)
|
|
15007
|
-
},{"
|
|
15027
|
+
},{"125":125,"132":132,"150":150,"157":157,"72":72,"73":73}],105:[function(_dereq_,module,exports){
|
|
15008
15028
|
/**
|
|
15009
15029
|
* Copyright 2013-present, Facebook, Inc.
|
|
15010
15030
|
* All rights reserved.
|
|
@@ -15050,7 +15070,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
15050
15070
|
'use strict';
|
|
15051
15071
|
|
|
15052
15072
|
var CSSProperty = _dereq_(4);
|
|
15053
|
-
var warning = _dereq_(
|
|
15073
|
+
var warning = _dereq_(157);
|
|
15054
15074
|
|
|
15055
15075
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
15056
15076
|
var styleWarnings = {};
|
|
@@ -15115,7 +15135,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
15115
15135
|
}
|
|
15116
15136
|
|
|
15117
15137
|
module.exports = dangerousStyleValue;
|
|
15118
|
-
},{"
|
|
15138
|
+
},{"157":157,"4":4}],107:[function(_dereq_,module,exports){
|
|
15119
15139
|
/**
|
|
15120
15140
|
* Copyright 2016-present, Facebook, Inc.
|
|
15121
15141
|
* All rights reserved.
|
|
@@ -15251,15 +15271,15 @@ module.exports = escapeTextContentForBrowser;
|
|
|
15251
15271
|
|
|
15252
15272
|
'use strict';
|
|
15253
15273
|
|
|
15254
|
-
var _prodInvariant = _dereq_(
|
|
15274
|
+
var _prodInvariant = _dereq_(125);
|
|
15255
15275
|
|
|
15256
|
-
var ReactCurrentOwner = _dereq_(
|
|
15276
|
+
var ReactCurrentOwner = _dereq_(133);
|
|
15257
15277
|
var ReactDOMComponentTree = _dereq_(34);
|
|
15258
15278
|
var ReactInstanceMap = _dereq_(63);
|
|
15259
15279
|
|
|
15260
15280
|
var getHostComponentFromComposite = _dereq_(115);
|
|
15261
|
-
var invariant = _dereq_(
|
|
15262
|
-
var warning = _dereq_(
|
|
15281
|
+
var invariant = _dereq_(150);
|
|
15282
|
+
var warning = _dereq_(157);
|
|
15263
15283
|
|
|
15264
15284
|
/**
|
|
15265
15285
|
* Returns the DOM node rendered by this element.
|
|
@@ -15298,7 +15318,7 @@ function findDOMNode(componentOrElement) {
|
|
|
15298
15318
|
}
|
|
15299
15319
|
|
|
15300
15320
|
module.exports = findDOMNode;
|
|
15301
|
-
},{"115":115,"
|
|
15321
|
+
},{"115":115,"125":125,"133":133,"150":150,"157":157,"34":34,"63":63}],109:[function(_dereq_,module,exports){
|
|
15302
15322
|
(function (process){
|
|
15303
15323
|
/**
|
|
15304
15324
|
* Copyright 2013-present, Facebook, Inc.
|
|
@@ -15314,8 +15334,8 @@ module.exports = findDOMNode;
|
|
|
15314
15334
|
'use strict';
|
|
15315
15335
|
|
|
15316
15336
|
var KeyEscapeUtils = _dereq_(23);
|
|
15317
|
-
var traverseAllChildren = _dereq_(
|
|
15318
|
-
var warning = _dereq_(
|
|
15337
|
+
var traverseAllChildren = _dereq_(130);
|
|
15338
|
+
var warning = _dereq_(157);
|
|
15319
15339
|
|
|
15320
15340
|
var ReactComponentTreeHook;
|
|
15321
15341
|
|
|
@@ -15325,7 +15345,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
|
15325
15345
|
// https://github.com/facebook/react/issues/7240
|
|
15326
15346
|
// Remove the inline requires when we don't need them anymore:
|
|
15327
15347
|
// https://github.com/facebook/react/pull/7178
|
|
15328
|
-
ReactComponentTreeHook = _dereq_(
|
|
15348
|
+
ReactComponentTreeHook = _dereq_(132);
|
|
15329
15349
|
}
|
|
15330
15350
|
|
|
15331
15351
|
/**
|
|
@@ -15341,7 +15361,7 @@ function flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID
|
|
|
15341
15361
|
var keyUnique = result[name] === undefined;
|
|
15342
15362
|
if ("development" !== 'production') {
|
|
15343
15363
|
if (!ReactComponentTreeHook) {
|
|
15344
|
-
ReactComponentTreeHook = _dereq_(
|
|
15364
|
+
ReactComponentTreeHook = _dereq_(132);
|
|
15345
15365
|
}
|
|
15346
15366
|
if (!keyUnique) {
|
|
15347
15367
|
"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;
|
|
@@ -15376,7 +15396,7 @@ function flattenChildren(children, selfDebugID) {
|
|
|
15376
15396
|
|
|
15377
15397
|
module.exports = flattenChildren;
|
|
15378
15398
|
}).call(this,undefined)
|
|
15379
|
-
},{"
|
|
15399
|
+
},{"130":130,"132":132,"157":157,"23":23}],110:[function(_dereq_,module,exports){
|
|
15380
15400
|
/**
|
|
15381
15401
|
* Copyright 2013-present, Facebook, Inc.
|
|
15382
15402
|
* All rights reserved.
|
|
@@ -15709,6 +15729,27 @@ function getIteratorFn(maybeIterable) {
|
|
|
15709
15729
|
|
|
15710
15730
|
module.exports = getIteratorFn;
|
|
15711
15731
|
},{}],117:[function(_dereq_,module,exports){
|
|
15732
|
+
/**
|
|
15733
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
15734
|
+
* All rights reserved.
|
|
15735
|
+
*
|
|
15736
|
+
* This source code is licensed under the BSD-style license found in the
|
|
15737
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
15738
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
15739
|
+
*
|
|
15740
|
+
*
|
|
15741
|
+
*/
|
|
15742
|
+
|
|
15743
|
+
'use strict';
|
|
15744
|
+
|
|
15745
|
+
var nextDebugID = 1;
|
|
15746
|
+
|
|
15747
|
+
function getNextDebugID() {
|
|
15748
|
+
return nextDebugID++;
|
|
15749
|
+
}
|
|
15750
|
+
|
|
15751
|
+
module.exports = getNextDebugID;
|
|
15752
|
+
},{}],118:[function(_dereq_,module,exports){
|
|
15712
15753
|
/**
|
|
15713
15754
|
* Copyright 2013-present, Facebook, Inc.
|
|
15714
15755
|
* All rights reserved.
|
|
@@ -15782,7 +15823,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
15782
15823
|
}
|
|
15783
15824
|
|
|
15784
15825
|
module.exports = getNodeForCharacterOffset;
|
|
15785
|
-
},{}],
|
|
15826
|
+
},{}],119:[function(_dereq_,module,exports){
|
|
15786
15827
|
/**
|
|
15787
15828
|
* Copyright 2013-present, Facebook, Inc.
|
|
15788
15829
|
* All rights reserved.
|
|
@@ -15795,7 +15836,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
15795
15836
|
|
|
15796
15837
|
'use strict';
|
|
15797
15838
|
|
|
15798
|
-
var ExecutionEnvironment = _dereq_(
|
|
15839
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
15799
15840
|
|
|
15800
15841
|
var contentKey = null;
|
|
15801
15842
|
|
|
@@ -15815,7 +15856,7 @@ function getTextContentAccessor() {
|
|
|
15815
15856
|
}
|
|
15816
15857
|
|
|
15817
15858
|
module.exports = getTextContentAccessor;
|
|
15818
|
-
},{"
|
|
15859
|
+
},{"136":136}],120:[function(_dereq_,module,exports){
|
|
15819
15860
|
/**
|
|
15820
15861
|
* Copyright 2013-present, Facebook, Inc.
|
|
15821
15862
|
* All rights reserved.
|
|
@@ -15828,7 +15869,7 @@ module.exports = getTextContentAccessor;
|
|
|
15828
15869
|
|
|
15829
15870
|
'use strict';
|
|
15830
15871
|
|
|
15831
|
-
var ExecutionEnvironment = _dereq_(
|
|
15872
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
15832
15873
|
|
|
15833
15874
|
/**
|
|
15834
15875
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -15916,7 +15957,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
15916
15957
|
}
|
|
15917
15958
|
|
|
15918
15959
|
module.exports = getVendorPrefixedEventName;
|
|
15919
|
-
},{"
|
|
15960
|
+
},{"136":136}],121:[function(_dereq_,module,exports){
|
|
15920
15961
|
/**
|
|
15921
15962
|
* Copyright 2013-present, Facebook, Inc.
|
|
15922
15963
|
* All rights reserved.
|
|
@@ -15929,15 +15970,16 @@ module.exports = getVendorPrefixedEventName;
|
|
|
15929
15970
|
|
|
15930
15971
|
'use strict';
|
|
15931
15972
|
|
|
15932
|
-
var _prodInvariant = _dereq_(
|
|
15933
|
-
_assign = _dereq_(
|
|
15973
|
+
var _prodInvariant = _dereq_(125),
|
|
15974
|
+
_assign = _dereq_(158);
|
|
15934
15975
|
|
|
15935
15976
|
var ReactCompositeComponent = _dereq_(30);
|
|
15936
15977
|
var ReactEmptyComponent = _dereq_(54);
|
|
15937
15978
|
var ReactHostComponent = _dereq_(59);
|
|
15938
15979
|
|
|
15939
|
-
var
|
|
15940
|
-
var
|
|
15980
|
+
var getNextDebugID = _dereq_(117);
|
|
15981
|
+
var invariant = _dereq_(150);
|
|
15982
|
+
var warning = _dereq_(157);
|
|
15941
15983
|
|
|
15942
15984
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
15943
15985
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -15968,8 +16010,6 @@ function isInternalComponentType(type) {
|
|
|
15968
16010
|
return typeof type === 'function' && typeof type.prototype !== 'undefined' && typeof type.prototype.mountComponent === 'function' && typeof type.prototype.receiveComponent === 'function';
|
|
15969
16011
|
}
|
|
15970
16012
|
|
|
15971
|
-
var nextDebugID = 1;
|
|
15972
|
-
|
|
15973
16013
|
/**
|
|
15974
16014
|
* Given a ReactNode, create an instance that will actually be mounted.
|
|
15975
16015
|
*
|
|
@@ -15985,7 +16025,17 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
15985
16025
|
instance = ReactEmptyComponent.create(instantiateReactComponent);
|
|
15986
16026
|
} else if (typeof node === 'object') {
|
|
15987
16027
|
var element = node;
|
|
15988
|
-
|
|
16028
|
+
var type = element.type;
|
|
16029
|
+
if (typeof type !== 'function' && typeof type !== 'string') {
|
|
16030
|
+
var info = '';
|
|
16031
|
+
if ("development" !== 'production') {
|
|
16032
|
+
if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
|
|
16033
|
+
info += ' You likely forgot to export your component from the file ' + 'it\'s defined in.';
|
|
16034
|
+
}
|
|
16035
|
+
}
|
|
16036
|
+
info += getDeclarationErrorAddendum(element._owner);
|
|
16037
|
+
!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;
|
|
16038
|
+
}
|
|
15989
16039
|
|
|
15990
16040
|
// Special case string values
|
|
15991
16041
|
if (typeof element.type === 'string') {
|
|
@@ -16020,7 +16070,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
16020
16070
|
instance._mountImage = null;
|
|
16021
16071
|
|
|
16022
16072
|
if ("development" !== 'production') {
|
|
16023
|
-
instance._debugID = shouldHaveDebugID ?
|
|
16073
|
+
instance._debugID = shouldHaveDebugID ? getNextDebugID() : 0;
|
|
16024
16074
|
}
|
|
16025
16075
|
|
|
16026
16076
|
// Internal instances should fully constructed at this point, so they should
|
|
@@ -16035,7 +16085,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
16035
16085
|
}
|
|
16036
16086
|
|
|
16037
16087
|
module.exports = instantiateReactComponent;
|
|
16038
|
-
},{"
|
|
16088
|
+
},{"117":117,"125":125,"150":150,"157":157,"158":158,"30":30,"54":54,"59":59}],122:[function(_dereq_,module,exports){
|
|
16039
16089
|
/**
|
|
16040
16090
|
* Copyright 2013-present, Facebook, Inc.
|
|
16041
16091
|
* All rights reserved.
|
|
@@ -16048,7 +16098,7 @@ module.exports = instantiateReactComponent;
|
|
|
16048
16098
|
|
|
16049
16099
|
'use strict';
|
|
16050
16100
|
|
|
16051
|
-
var ExecutionEnvironment = _dereq_(
|
|
16101
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
16052
16102
|
|
|
16053
16103
|
var useHasFeature;
|
|
16054
16104
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -16095,7 +16145,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
16095
16145
|
}
|
|
16096
16146
|
|
|
16097
16147
|
module.exports = isEventSupported;
|
|
16098
|
-
},{"
|
|
16148
|
+
},{"136":136}],123:[function(_dereq_,module,exports){
|
|
16099
16149
|
/**
|
|
16100
16150
|
* Copyright 2013-present, Facebook, Inc.
|
|
16101
16151
|
* All rights reserved.
|
|
@@ -16146,7 +16196,7 @@ function isTextInputElement(elem) {
|
|
|
16146
16196
|
}
|
|
16147
16197
|
|
|
16148
16198
|
module.exports = isTextInputElement;
|
|
16149
|
-
},{}],
|
|
16199
|
+
},{}],124:[function(_dereq_,module,exports){
|
|
16150
16200
|
/**
|
|
16151
16201
|
* Copyright 2013-present, Facebook, Inc.
|
|
16152
16202
|
* All rights reserved.
|
|
@@ -16172,7 +16222,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
16172
16222
|
}
|
|
16173
16223
|
|
|
16174
16224
|
module.exports = quoteAttributeValueForBrowser;
|
|
16175
|
-
},{"107":107}],
|
|
16225
|
+
},{"107":107}],125:[function(_dereq_,module,exports){
|
|
16176
16226
|
/**
|
|
16177
16227
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
16178
16228
|
* All rights reserved.
|
|
@@ -16211,7 +16261,7 @@ function reactProdInvariant(code) {
|
|
|
16211
16261
|
}
|
|
16212
16262
|
|
|
16213
16263
|
module.exports = reactProdInvariant;
|
|
16214
|
-
},{}],
|
|
16264
|
+
},{}],126:[function(_dereq_,module,exports){
|
|
16215
16265
|
/**
|
|
16216
16266
|
* Copyright 2013-present, Facebook, Inc.
|
|
16217
16267
|
* All rights reserved.
|
|
@@ -16220,15 +16270,14 @@ module.exports = reactProdInvariant;
|
|
|
16220
16270
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
16221
16271
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
16222
16272
|
*
|
|
16223
|
-
|
|
16224
|
-
*/
|
|
16273
|
+
*/
|
|
16225
16274
|
|
|
16226
16275
|
'use strict';
|
|
16227
16276
|
|
|
16228
16277
|
var ReactMount = _dereq_(67);
|
|
16229
16278
|
|
|
16230
16279
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
16231
|
-
},{"67":67}],
|
|
16280
|
+
},{"67":67}],127:[function(_dereq_,module,exports){
|
|
16232
16281
|
/**
|
|
16233
16282
|
* Copyright 2013-present, Facebook, Inc.
|
|
16234
16283
|
* All rights reserved.
|
|
@@ -16241,7 +16290,7 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
16241
16290
|
|
|
16242
16291
|
'use strict';
|
|
16243
16292
|
|
|
16244
|
-
var ExecutionEnvironment = _dereq_(
|
|
16293
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
16245
16294
|
var DOMNamespaces = _dereq_(10);
|
|
16246
16295
|
|
|
16247
16296
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
@@ -16326,7 +16375,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
16326
16375
|
}
|
|
16327
16376
|
|
|
16328
16377
|
module.exports = setInnerHTML;
|
|
16329
|
-
},{"10":10,"105":105,"
|
|
16378
|
+
},{"10":10,"105":105,"136":136}],128:[function(_dereq_,module,exports){
|
|
16330
16379
|
/**
|
|
16331
16380
|
* Copyright 2013-present, Facebook, Inc.
|
|
16332
16381
|
* All rights reserved.
|
|
@@ -16339,9 +16388,9 @@ module.exports = setInnerHTML;
|
|
|
16339
16388
|
|
|
16340
16389
|
'use strict';
|
|
16341
16390
|
|
|
16342
|
-
var ExecutionEnvironment = _dereq_(
|
|
16391
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
16343
16392
|
var escapeTextContentForBrowser = _dereq_(107);
|
|
16344
|
-
var setInnerHTML = _dereq_(
|
|
16393
|
+
var setInnerHTML = _dereq_(127);
|
|
16345
16394
|
|
|
16346
16395
|
/**
|
|
16347
16396
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -16378,7 +16427,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
16378
16427
|
}
|
|
16379
16428
|
|
|
16380
16429
|
module.exports = setTextContent;
|
|
16381
|
-
},{"107":107,"
|
|
16430
|
+
},{"107":107,"127":127,"136":136}],129:[function(_dereq_,module,exports){
|
|
16382
16431
|
/**
|
|
16383
16432
|
* Copyright 2013-present, Facebook, Inc.
|
|
16384
16433
|
* All rights reserved.
|
|
@@ -16420,7 +16469,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
16420
16469
|
}
|
|
16421
16470
|
|
|
16422
16471
|
module.exports = shouldUpdateReactComponent;
|
|
16423
|
-
},{}],
|
|
16472
|
+
},{}],130:[function(_dereq_,module,exports){
|
|
16424
16473
|
/**
|
|
16425
16474
|
* Copyright 2013-present, Facebook, Inc.
|
|
16426
16475
|
* All rights reserved.
|
|
@@ -16433,15 +16482,15 @@ module.exports = shouldUpdateReactComponent;
|
|
|
16433
16482
|
|
|
16434
16483
|
'use strict';
|
|
16435
16484
|
|
|
16436
|
-
var _prodInvariant = _dereq_(
|
|
16485
|
+
var _prodInvariant = _dereq_(125);
|
|
16437
16486
|
|
|
16438
|
-
var ReactCurrentOwner = _dereq_(
|
|
16487
|
+
var ReactCurrentOwner = _dereq_(133);
|
|
16439
16488
|
var REACT_ELEMENT_TYPE = _dereq_(53);
|
|
16440
16489
|
|
|
16441
16490
|
var getIteratorFn = _dereq_(116);
|
|
16442
|
-
var invariant = _dereq_(
|
|
16491
|
+
var invariant = _dereq_(150);
|
|
16443
16492
|
var KeyEscapeUtils = _dereq_(23);
|
|
16444
|
-
var warning = _dereq_(
|
|
16493
|
+
var warning = _dereq_(157);
|
|
16445
16494
|
|
|
16446
16495
|
var SEPARATOR = '.';
|
|
16447
16496
|
var SUBSEPARATOR = ':';
|
|
@@ -16596,7 +16645,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
16596
16645
|
}
|
|
16597
16646
|
|
|
16598
16647
|
module.exports = traverseAllChildren;
|
|
16599
|
-
},{"116":116,"
|
|
16648
|
+
},{"116":116,"125":125,"133":133,"150":150,"157":157,"23":23,"53":53}],131:[function(_dereq_,module,exports){
|
|
16600
16649
|
/**
|
|
16601
16650
|
* Copyright 2015-present, Facebook, Inc.
|
|
16602
16651
|
* All rights reserved.
|
|
@@ -16609,10 +16658,10 @@ module.exports = traverseAllChildren;
|
|
|
16609
16658
|
|
|
16610
16659
|
'use strict';
|
|
16611
16660
|
|
|
16612
|
-
var _assign = _dereq_(
|
|
16661
|
+
var _assign = _dereq_(158);
|
|
16613
16662
|
|
|
16614
|
-
var emptyFunction = _dereq_(
|
|
16615
|
-
var warning = _dereq_(
|
|
16663
|
+
var emptyFunction = _dereq_(142);
|
|
16664
|
+
var warning = _dereq_(157);
|
|
16616
16665
|
|
|
16617
16666
|
var validateDOMNesting = emptyFunction;
|
|
16618
16667
|
|
|
@@ -16978,7 +17027,7 @@ if ("development" !== 'production') {
|
|
|
16978
17027
|
}
|
|
16979
17028
|
|
|
16980
17029
|
module.exports = validateDOMNesting;
|
|
16981
|
-
},{"
|
|
17030
|
+
},{"142":142,"157":157,"158":158}],132:[function(_dereq_,module,exports){
|
|
16982
17031
|
/**
|
|
16983
17032
|
* Copyright 2013-present, Facebook, Inc.
|
|
16984
17033
|
* All rights reserved.
|
|
@@ -16996,7 +17045,7 @@ module.exports = validateDOMNesting;
|
|
|
16996
17045
|
var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
16997
17046
|
|
|
16998
17047
|
module.exports = ReactInternals.ReactComponentTreeHook;
|
|
16999
|
-
},{}],
|
|
17048
|
+
},{}],133:[function(_dereq_,module,exports){
|
|
17000
17049
|
/**
|
|
17001
17050
|
* Copyright 2013-present, Facebook, Inc.
|
|
17002
17051
|
* All rights reserved.
|
|
@@ -17014,7 +17063,7 @@ module.exports = ReactInternals.ReactComponentTreeHook;
|
|
|
17014
17063
|
var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
17015
17064
|
|
|
17016
17065
|
module.exports = ReactInternals.ReactCurrentOwner;
|
|
17017
|
-
},{}],
|
|
17066
|
+
},{}],134:[function(_dereq_,module,exports){
|
|
17018
17067
|
/**
|
|
17019
17068
|
* Copyright 2013-present, Facebook, Inc.
|
|
17020
17069
|
* All rights reserved.
|
|
@@ -17030,7 +17079,7 @@ module.exports = ReactInternals.ReactCurrentOwner;
|
|
|
17030
17079
|
'use strict';
|
|
17031
17080
|
|
|
17032
17081
|
module.exports = React;
|
|
17033
|
-
},{}],
|
|
17082
|
+
},{}],135:[function(_dereq_,module,exports){
|
|
17034
17083
|
'use strict';
|
|
17035
17084
|
|
|
17036
17085
|
/**
|
|
@@ -17051,7 +17100,7 @@ module.exports = React;
|
|
|
17051
17100
|
* @typechecks
|
|
17052
17101
|
*/
|
|
17053
17102
|
|
|
17054
|
-
var emptyFunction = _dereq_(
|
|
17103
|
+
var emptyFunction = _dereq_(142);
|
|
17055
17104
|
|
|
17056
17105
|
/**
|
|
17057
17106
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -17114,7 +17163,7 @@ var EventListener = {
|
|
|
17114
17163
|
};
|
|
17115
17164
|
|
|
17116
17165
|
module.exports = EventListener;
|
|
17117
|
-
},{"
|
|
17166
|
+
},{"142":142}],136:[function(_dereq_,module,exports){
|
|
17118
17167
|
/**
|
|
17119
17168
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17120
17169
|
* All rights reserved.
|
|
@@ -17150,7 +17199,7 @@ var ExecutionEnvironment = {
|
|
|
17150
17199
|
};
|
|
17151
17200
|
|
|
17152
17201
|
module.exports = ExecutionEnvironment;
|
|
17153
|
-
},{}],
|
|
17202
|
+
},{}],137:[function(_dereq_,module,exports){
|
|
17154
17203
|
"use strict";
|
|
17155
17204
|
|
|
17156
17205
|
/**
|
|
@@ -17182,7 +17231,7 @@ function camelize(string) {
|
|
|
17182
17231
|
}
|
|
17183
17232
|
|
|
17184
17233
|
module.exports = camelize;
|
|
17185
|
-
},{}],
|
|
17234
|
+
},{}],138:[function(_dereq_,module,exports){
|
|
17186
17235
|
/**
|
|
17187
17236
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17188
17237
|
* All rights reserved.
|
|
@@ -17196,7 +17245,7 @@ module.exports = camelize;
|
|
|
17196
17245
|
|
|
17197
17246
|
'use strict';
|
|
17198
17247
|
|
|
17199
|
-
var camelize = _dereq_(
|
|
17248
|
+
var camelize = _dereq_(137);
|
|
17200
17249
|
|
|
17201
17250
|
var msPattern = /^-ms-/;
|
|
17202
17251
|
|
|
@@ -17222,7 +17271,7 @@ function camelizeStyleName(string) {
|
|
|
17222
17271
|
}
|
|
17223
17272
|
|
|
17224
17273
|
module.exports = camelizeStyleName;
|
|
17225
|
-
},{"
|
|
17274
|
+
},{"137":137}],139:[function(_dereq_,module,exports){
|
|
17226
17275
|
'use strict';
|
|
17227
17276
|
|
|
17228
17277
|
/**
|
|
@@ -17236,7 +17285,7 @@ module.exports = camelizeStyleName;
|
|
|
17236
17285
|
*
|
|
17237
17286
|
*/
|
|
17238
17287
|
|
|
17239
|
-
var isTextNode = _dereq_(
|
|
17288
|
+
var isTextNode = _dereq_(152);
|
|
17240
17289
|
|
|
17241
17290
|
/*eslint-disable no-bitwise */
|
|
17242
17291
|
|
|
@@ -17262,7 +17311,7 @@ function containsNode(outerNode, innerNode) {
|
|
|
17262
17311
|
}
|
|
17263
17312
|
|
|
17264
17313
|
module.exports = containsNode;
|
|
17265
|
-
},{"
|
|
17314
|
+
},{"152":152}],140:[function(_dereq_,module,exports){
|
|
17266
17315
|
'use strict';
|
|
17267
17316
|
|
|
17268
17317
|
/**
|
|
@@ -17276,7 +17325,7 @@ module.exports = containsNode;
|
|
|
17276
17325
|
* @typechecks
|
|
17277
17326
|
*/
|
|
17278
17327
|
|
|
17279
|
-
var invariant = _dereq_(
|
|
17328
|
+
var invariant = _dereq_(150);
|
|
17280
17329
|
|
|
17281
17330
|
/**
|
|
17282
17331
|
* Convert array-like objects to arrays.
|
|
@@ -17389,7 +17438,7 @@ function createArrayFromMixed(obj) {
|
|
|
17389
17438
|
}
|
|
17390
17439
|
|
|
17391
17440
|
module.exports = createArrayFromMixed;
|
|
17392
|
-
},{"
|
|
17441
|
+
},{"150":150}],141:[function(_dereq_,module,exports){
|
|
17393
17442
|
'use strict';
|
|
17394
17443
|
|
|
17395
17444
|
/**
|
|
@@ -17405,11 +17454,11 @@ module.exports = createArrayFromMixed;
|
|
|
17405
17454
|
|
|
17406
17455
|
/*eslint-disable fb-www/unsafe-html*/
|
|
17407
17456
|
|
|
17408
|
-
var ExecutionEnvironment = _dereq_(
|
|
17457
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
17409
17458
|
|
|
17410
|
-
var createArrayFromMixed = _dereq_(
|
|
17411
|
-
var getMarkupWrap = _dereq_(
|
|
17412
|
-
var invariant = _dereq_(
|
|
17459
|
+
var createArrayFromMixed = _dereq_(140);
|
|
17460
|
+
var getMarkupWrap = _dereq_(146);
|
|
17461
|
+
var invariant = _dereq_(150);
|
|
17413
17462
|
|
|
17414
17463
|
/**
|
|
17415
17464
|
* Dummy container used to render all markup.
|
|
@@ -17473,7 +17522,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
17473
17522
|
}
|
|
17474
17523
|
|
|
17475
17524
|
module.exports = createNodesFromMarkup;
|
|
17476
|
-
},{"
|
|
17525
|
+
},{"136":136,"140":140,"146":146,"150":150}],142:[function(_dereq_,module,exports){
|
|
17477
17526
|
"use strict";
|
|
17478
17527
|
|
|
17479
17528
|
/**
|
|
@@ -17512,7 +17561,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
17512
17561
|
};
|
|
17513
17562
|
|
|
17514
17563
|
module.exports = emptyFunction;
|
|
17515
|
-
},{}],
|
|
17564
|
+
},{}],143:[function(_dereq_,module,exports){
|
|
17516
17565
|
/**
|
|
17517
17566
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17518
17567
|
* All rights reserved.
|
|
@@ -17532,7 +17581,7 @@ if ("development" !== 'production') {
|
|
|
17532
17581
|
}
|
|
17533
17582
|
|
|
17534
17583
|
module.exports = emptyObject;
|
|
17535
|
-
},{}],
|
|
17584
|
+
},{}],144:[function(_dereq_,module,exports){
|
|
17536
17585
|
/**
|
|
17537
17586
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17538
17587
|
* All rights reserved.
|
|
@@ -17559,7 +17608,7 @@ function focusNode(node) {
|
|
|
17559
17608
|
}
|
|
17560
17609
|
|
|
17561
17610
|
module.exports = focusNode;
|
|
17562
|
-
},{}],
|
|
17611
|
+
},{}],145:[function(_dereq_,module,exports){
|
|
17563
17612
|
'use strict';
|
|
17564
17613
|
|
|
17565
17614
|
/**
|
|
@@ -17594,7 +17643,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
17594
17643
|
}
|
|
17595
17644
|
|
|
17596
17645
|
module.exports = getActiveElement;
|
|
17597
|
-
},{}],
|
|
17646
|
+
},{}],146:[function(_dereq_,module,exports){
|
|
17598
17647
|
'use strict';
|
|
17599
17648
|
|
|
17600
17649
|
/**
|
|
@@ -17609,9 +17658,9 @@ module.exports = getActiveElement;
|
|
|
17609
17658
|
|
|
17610
17659
|
/*eslint-disable fb-www/unsafe-html */
|
|
17611
17660
|
|
|
17612
|
-
var ExecutionEnvironment = _dereq_(
|
|
17661
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
17613
17662
|
|
|
17614
|
-
var invariant = _dereq_(
|
|
17663
|
+
var invariant = _dereq_(150);
|
|
17615
17664
|
|
|
17616
17665
|
/**
|
|
17617
17666
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -17689,7 +17738,7 @@ function getMarkupWrap(nodeName) {
|
|
|
17689
17738
|
}
|
|
17690
17739
|
|
|
17691
17740
|
module.exports = getMarkupWrap;
|
|
17692
|
-
},{"
|
|
17741
|
+
},{"136":136,"150":150}],147:[function(_dereq_,module,exports){
|
|
17693
17742
|
/**
|
|
17694
17743
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17695
17744
|
* All rights reserved.
|
|
@@ -17728,7 +17777,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
17728
17777
|
}
|
|
17729
17778
|
|
|
17730
17779
|
module.exports = getUnboundedScrollPosition;
|
|
17731
|
-
},{}],
|
|
17780
|
+
},{}],148:[function(_dereq_,module,exports){
|
|
17732
17781
|
'use strict';
|
|
17733
17782
|
|
|
17734
17783
|
/**
|
|
@@ -17761,7 +17810,7 @@ function hyphenate(string) {
|
|
|
17761
17810
|
}
|
|
17762
17811
|
|
|
17763
17812
|
module.exports = hyphenate;
|
|
17764
|
-
},{}],
|
|
17813
|
+
},{}],149:[function(_dereq_,module,exports){
|
|
17765
17814
|
/**
|
|
17766
17815
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17767
17816
|
* All rights reserved.
|
|
@@ -17775,7 +17824,7 @@ module.exports = hyphenate;
|
|
|
17775
17824
|
|
|
17776
17825
|
'use strict';
|
|
17777
17826
|
|
|
17778
|
-
var hyphenate = _dereq_(
|
|
17827
|
+
var hyphenate = _dereq_(148);
|
|
17779
17828
|
|
|
17780
17829
|
var msPattern = /^ms-/;
|
|
17781
17830
|
|
|
@@ -17800,7 +17849,7 @@ function hyphenateStyleName(string) {
|
|
|
17800
17849
|
}
|
|
17801
17850
|
|
|
17802
17851
|
module.exports = hyphenateStyleName;
|
|
17803
|
-
},{"
|
|
17852
|
+
},{"148":148}],150:[function(_dereq_,module,exports){
|
|
17804
17853
|
/**
|
|
17805
17854
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17806
17855
|
* All rights reserved.
|
|
@@ -17824,12 +17873,18 @@ module.exports = hyphenateStyleName;
|
|
|
17824
17873
|
* will remain to ensure logic does not differ in production.
|
|
17825
17874
|
*/
|
|
17826
17875
|
|
|
17827
|
-
function
|
|
17828
|
-
|
|
17876
|
+
var validateFormat = function validateFormat(format) {};
|
|
17877
|
+
|
|
17878
|
+
if ("development" !== 'production') {
|
|
17879
|
+
validateFormat = function validateFormat(format) {
|
|
17829
17880
|
if (format === undefined) {
|
|
17830
17881
|
throw new Error('invariant requires an error message argument');
|
|
17831
17882
|
}
|
|
17832
|
-
}
|
|
17883
|
+
};
|
|
17884
|
+
}
|
|
17885
|
+
|
|
17886
|
+
function invariant(condition, format, a, b, c, d, e, f) {
|
|
17887
|
+
validateFormat(format);
|
|
17833
17888
|
|
|
17834
17889
|
if (!condition) {
|
|
17835
17890
|
var error;
|
|
@@ -17850,7 +17905,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
17850
17905
|
}
|
|
17851
17906
|
|
|
17852
17907
|
module.exports = invariant;
|
|
17853
|
-
},{}],
|
|
17908
|
+
},{}],151:[function(_dereq_,module,exports){
|
|
17854
17909
|
'use strict';
|
|
17855
17910
|
|
|
17856
17911
|
/**
|
|
@@ -17873,7 +17928,7 @@ function isNode(object) {
|
|
|
17873
17928
|
}
|
|
17874
17929
|
|
|
17875
17930
|
module.exports = isNode;
|
|
17876
|
-
},{}],
|
|
17931
|
+
},{}],152:[function(_dereq_,module,exports){
|
|
17877
17932
|
'use strict';
|
|
17878
17933
|
|
|
17879
17934
|
/**
|
|
@@ -17887,7 +17942,7 @@ module.exports = isNode;
|
|
|
17887
17942
|
* @typechecks
|
|
17888
17943
|
*/
|
|
17889
17944
|
|
|
17890
|
-
var isNode = _dereq_(
|
|
17945
|
+
var isNode = _dereq_(151);
|
|
17891
17946
|
|
|
17892
17947
|
/**
|
|
17893
17948
|
* @param {*} object The object to check.
|
|
@@ -17898,7 +17953,7 @@ function isTextNode(object) {
|
|
|
17898
17953
|
}
|
|
17899
17954
|
|
|
17900
17955
|
module.exports = isTextNode;
|
|
17901
|
-
},{"
|
|
17956
|
+
},{"151":151}],153:[function(_dereq_,module,exports){
|
|
17902
17957
|
/**
|
|
17903
17958
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17904
17959
|
* All rights reserved.
|
|
@@ -17928,7 +17983,7 @@ function memoizeStringOnly(callback) {
|
|
|
17928
17983
|
}
|
|
17929
17984
|
|
|
17930
17985
|
module.exports = memoizeStringOnly;
|
|
17931
|
-
},{}],
|
|
17986
|
+
},{}],154:[function(_dereq_,module,exports){
|
|
17932
17987
|
/**
|
|
17933
17988
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17934
17989
|
* All rights reserved.
|
|
@@ -17942,7 +17997,7 @@ module.exports = memoizeStringOnly;
|
|
|
17942
17997
|
|
|
17943
17998
|
'use strict';
|
|
17944
17999
|
|
|
17945
|
-
var ExecutionEnvironment = _dereq_(
|
|
18000
|
+
var ExecutionEnvironment = _dereq_(136);
|
|
17946
18001
|
|
|
17947
18002
|
var performance;
|
|
17948
18003
|
|
|
@@ -17951,7 +18006,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
17951
18006
|
}
|
|
17952
18007
|
|
|
17953
18008
|
module.exports = performance || {};
|
|
17954
|
-
},{"
|
|
18009
|
+
},{"136":136}],155:[function(_dereq_,module,exports){
|
|
17955
18010
|
'use strict';
|
|
17956
18011
|
|
|
17957
18012
|
/**
|
|
@@ -17965,7 +18020,7 @@ module.exports = performance || {};
|
|
|
17965
18020
|
* @typechecks
|
|
17966
18021
|
*/
|
|
17967
18022
|
|
|
17968
|
-
var performance = _dereq_(
|
|
18023
|
+
var performance = _dereq_(154);
|
|
17969
18024
|
|
|
17970
18025
|
var performanceNow;
|
|
17971
18026
|
|
|
@@ -17985,7 +18040,7 @@ if (performance.now) {
|
|
|
17985
18040
|
}
|
|
17986
18041
|
|
|
17987
18042
|
module.exports = performanceNow;
|
|
17988
|
-
},{"
|
|
18043
|
+
},{"154":154}],156:[function(_dereq_,module,exports){
|
|
17989
18044
|
/**
|
|
17990
18045
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
17991
18046
|
* All rights reserved.
|
|
@@ -18053,7 +18108,7 @@ function shallowEqual(objA, objB) {
|
|
|
18053
18108
|
}
|
|
18054
18109
|
|
|
18055
18110
|
module.exports = shallowEqual;
|
|
18056
|
-
},{}],
|
|
18111
|
+
},{}],157:[function(_dereq_,module,exports){
|
|
18057
18112
|
/**
|
|
18058
18113
|
* Copyright 2014-2015, Facebook, Inc.
|
|
18059
18114
|
* All rights reserved.
|
|
@@ -18066,7 +18121,7 @@ module.exports = shallowEqual;
|
|
|
18066
18121
|
|
|
18067
18122
|
'use strict';
|
|
18068
18123
|
|
|
18069
|
-
var emptyFunction = _dereq_(
|
|
18124
|
+
var emptyFunction = _dereq_(142);
|
|
18070
18125
|
|
|
18071
18126
|
/**
|
|
18072
18127
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -18120,7 +18175,7 @@ if ("development" !== 'production') {
|
|
|
18120
18175
|
}
|
|
18121
18176
|
|
|
18122
18177
|
module.exports = warning;
|
|
18123
|
-
},{"
|
|
18178
|
+
},{"142":142}],158:[function(_dereq_,module,exports){
|
|
18124
18179
|
'use strict';
|
|
18125
18180
|
/* eslint-disable no-unused-vars */
|
|
18126
18181
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|