react 0.14.0 → 0.14.4
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/LICENSE +31 -0
- package/PATENTS +33 -0
- package/README.md +4 -4
- package/dist/react-with-addons.js +452 -404
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +396 -359
- package/dist/react.min.js +6 -6
- package/lib/ChangeEventPlugin.js +2 -0
- package/lib/HTMLDOMPropertyConfig.js +10 -4
- package/lib/React.js +1 -0
- package/lib/React.native.js +5 -0
- package/lib/ReactCSSTransitionGroup.js +1 -1
- package/lib/ReactCSSTransitionGroupChild.js +5 -0
- package/lib/ReactComponent.js +2 -3
- package/lib/ReactDOM.native.js +12 -0
- package/lib/ReactDOMComponent.js +10 -8
- package/lib/ReactDOMSelect.js +1 -1
- package/lib/ReactDefaultPerfAnalysis.js +3 -1
- package/lib/ReactElement.js +1 -10
- package/lib/ReactElementValidator.js +2 -3
- package/lib/ReactErrorUtils.js +7 -4
- package/lib/ReactMount.js +6 -1
- package/lib/ReactTestUtils.js +12 -6
- package/lib/ReactVersion.js +1 -1
- package/lib/ResponderEventPlugin.js +13 -8
- package/lib/canDefineProperty.js +24 -0
- package/package.json +3 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
BSD License
|
|
2
|
+
|
|
3
|
+
For React software
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2013-2015, Facebook, Inc.
|
|
6
|
+
All rights reserved.
|
|
7
|
+
|
|
8
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
9
|
+
are permitted provided that the following conditions are met:
|
|
10
|
+
|
|
11
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
12
|
+
list of conditions and the following disclaimer.
|
|
13
|
+
|
|
14
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
15
|
+
this list of conditions and the following disclaimer in the documentation
|
|
16
|
+
and/or other materials provided with the distribution.
|
|
17
|
+
|
|
18
|
+
* Neither the name Facebook nor the names of its contributors may be used to
|
|
19
|
+
endorse or promote products derived from this software without specific
|
|
20
|
+
prior written permission.
|
|
21
|
+
|
|
22
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
23
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
24
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
25
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
26
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
27
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
28
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
29
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
30
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
31
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/PATENTS
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Additional Grant of Patent Rights Version 2
|
|
2
|
+
|
|
3
|
+
"Software" means the React software distributed by Facebook, Inc.
|
|
4
|
+
|
|
5
|
+
Facebook, Inc. ("Facebook") hereby grants to each recipient of the Software
|
|
6
|
+
("you") a perpetual, worldwide, royalty-free, non-exclusive, irrevocable
|
|
7
|
+
(subject to the termination provision below) license under any Necessary
|
|
8
|
+
Claims, to make, have made, use, sell, offer to sell, import, and otherwise
|
|
9
|
+
transfer the Software. For avoidance of doubt, no license is granted under
|
|
10
|
+
Facebook's rights in any patent claims that are infringed by (i) modifications
|
|
11
|
+
to the Software made by you or any third party or (ii) the Software in
|
|
12
|
+
combination with any software or other technology.
|
|
13
|
+
|
|
14
|
+
The license granted hereunder will terminate, automatically and without notice,
|
|
15
|
+
if you (or any of your subsidiaries, corporate affiliates or agents) initiate
|
|
16
|
+
directly or indirectly, or take a direct financial interest in, any Patent
|
|
17
|
+
Assertion: (i) against Facebook or any of its subsidiaries or corporate
|
|
18
|
+
affiliates, (ii) against any party if such Patent Assertion arises in whole or
|
|
19
|
+
in part from any software, technology, product or service of Facebook or any of
|
|
20
|
+
its subsidiaries or corporate affiliates, or (iii) against any party relating
|
|
21
|
+
to the Software. Notwithstanding the foregoing, if Facebook or any of its
|
|
22
|
+
subsidiaries or corporate affiliates files a lawsuit alleging patent
|
|
23
|
+
infringement against you in the first instance, and you respond by filing a
|
|
24
|
+
patent infringement counterclaim in that lawsuit against that party that is
|
|
25
|
+
unrelated to the Software, the license granted hereunder will not terminate
|
|
26
|
+
under section (i) of this paragraph due to such counterclaim.
|
|
27
|
+
|
|
28
|
+
A "Necessary Claim" is a claim of a patent owned by Facebook that is
|
|
29
|
+
necessarily infringed by the Software standing alone.
|
|
30
|
+
|
|
31
|
+
A "Patent Assertion" is any lawsuit or other action alleging direct, indirect,
|
|
32
|
+
or contributory infringement or inducement to infringe any patent, including a
|
|
33
|
+
cross-claim or counterclaim.
|
package/README.md
CHANGED
|
@@ -14,10 +14,10 @@ To use React in production mode, set the environment variable `NODE_ENV` to `pro
|
|
|
14
14
|
```js
|
|
15
15
|
var React = require('react');
|
|
16
16
|
|
|
17
|
-
// Addons
|
|
18
|
-
var createFragment = require('react
|
|
19
|
-
var immutabilityHelpers = require('react
|
|
20
|
-
var CSSTransitionGroup = require('react
|
|
17
|
+
// Addons are in separate packages:
|
|
18
|
+
var createFragment = require('react-addons-create-fragment');
|
|
19
|
+
var immutabilityHelpers = require('react-addons-update');
|
|
20
|
+
var CSSTransitionGroup = require('react-addons-css-transition-group');
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
For a complete list of addons visit the [addons documentation page](https://facebook.github.io/react/docs/addons.html).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v0.14.
|
|
2
|
+
* React (with addons) v0.14.4
|
|
3
3
|
*/
|
|
4
4
|
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
|
|
5
5
|
/**
|
|
@@ -30,10 +30,10 @@ var ReactFragment = _dereq_(64);
|
|
|
30
30
|
var ReactTransitionGroup = _dereq_(94);
|
|
31
31
|
var ReactUpdates = _dereq_(96);
|
|
32
32
|
|
|
33
|
-
var cloneWithProps = _dereq_(
|
|
34
|
-
var shallowCompare = _dereq_(
|
|
35
|
-
var update = _dereq_(
|
|
36
|
-
var warning = _dereq_(
|
|
33
|
+
var cloneWithProps = _dereq_(118);
|
|
34
|
+
var shallowCompare = _dereq_(140);
|
|
35
|
+
var update = _dereq_(143);
|
|
36
|
+
var warning = _dereq_(173);
|
|
37
37
|
|
|
38
38
|
var warnedAboutBatchedUpdates = false;
|
|
39
39
|
|
|
@@ -62,7 +62,7 @@ if ("development" !== 'production') {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
module.exports = React;
|
|
65
|
-
},{"
|
|
65
|
+
},{"118":118,"140":140,"143":143,"173":173,"22":22,"26":26,"29":29,"37":37,"55":55,"64":64,"91":91,"94":94,"96":96}],2:[function(_dereq_,module,exports){
|
|
66
66
|
/**
|
|
67
67
|
* Copyright 2013-2015, Facebook, Inc.
|
|
68
68
|
* All rights reserved.
|
|
@@ -79,8 +79,8 @@ module.exports = React;
|
|
|
79
79
|
|
|
80
80
|
var ReactMount = _dereq_(72);
|
|
81
81
|
|
|
82
|
-
var findDOMNode = _dereq_(
|
|
83
|
-
var focusNode = _dereq_(
|
|
82
|
+
var findDOMNode = _dereq_(122);
|
|
83
|
+
var focusNode = _dereq_(155);
|
|
84
84
|
|
|
85
85
|
var Mixin = {
|
|
86
86
|
componentDidMount: function () {
|
|
@@ -99,7 +99,7 @@ var AutoFocusUtils = {
|
|
|
99
99
|
};
|
|
100
100
|
|
|
101
101
|
module.exports = AutoFocusUtils;
|
|
102
|
-
},{"
|
|
102
|
+
},{"122":122,"155":155,"72":72}],3:[function(_dereq_,module,exports){
|
|
103
103
|
/**
|
|
104
104
|
* Copyright 2013-2015 Facebook, Inc.
|
|
105
105
|
* All rights reserved.
|
|
@@ -116,12 +116,12 @@ module.exports = AutoFocusUtils;
|
|
|
116
116
|
|
|
117
117
|
var EventConstants = _dereq_(15);
|
|
118
118
|
var EventPropagators = _dereq_(19);
|
|
119
|
-
var ExecutionEnvironment = _dereq_(
|
|
119
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
120
120
|
var FallbackCompositionState = _dereq_(20);
|
|
121
121
|
var SyntheticCompositionEvent = _dereq_(103);
|
|
122
122
|
var SyntheticInputEvent = _dereq_(107);
|
|
123
123
|
|
|
124
|
-
var keyOf = _dereq_(
|
|
124
|
+
var keyOf = _dereq_(166);
|
|
125
125
|
|
|
126
126
|
var END_KEYCODES = [9, 13, 27, 32]; // Tab, Return, Esc, Space
|
|
127
127
|
var START_KEYCODE = 229;
|
|
@@ -505,7 +505,7 @@ var BeforeInputEventPlugin = {
|
|
|
505
505
|
};
|
|
506
506
|
|
|
507
507
|
module.exports = BeforeInputEventPlugin;
|
|
508
|
-
},{"103":103,"107":107,"
|
|
508
|
+
},{"103":103,"107":107,"147":147,"15":15,"166":166,"19":19,"20":20}],4:[function(_dereq_,module,exports){
|
|
509
509
|
/**
|
|
510
510
|
* Copyright 2013-2015, Facebook, Inc.
|
|
511
511
|
* All rights reserved.
|
|
@@ -661,14 +661,14 @@ module.exports = CSSProperty;
|
|
|
661
661
|
'use strict';
|
|
662
662
|
|
|
663
663
|
var CSSProperty = _dereq_(4);
|
|
664
|
-
var ExecutionEnvironment = _dereq_(
|
|
664
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
665
665
|
var ReactPerf = _dereq_(78);
|
|
666
666
|
|
|
667
|
-
var camelizeStyleName = _dereq_(
|
|
668
|
-
var dangerousStyleValue = _dereq_(
|
|
669
|
-
var hyphenateStyleName = _dereq_(
|
|
670
|
-
var memoizeStringOnly = _dereq_(
|
|
671
|
-
var warning = _dereq_(
|
|
667
|
+
var camelizeStyleName = _dereq_(149);
|
|
668
|
+
var dangerousStyleValue = _dereq_(119);
|
|
669
|
+
var hyphenateStyleName = _dereq_(160);
|
|
670
|
+
var memoizeStringOnly = _dereq_(168);
|
|
671
|
+
var warning = _dereq_(173);
|
|
672
672
|
|
|
673
673
|
var processStyleName = memoizeStringOnly(function (styleName) {
|
|
674
674
|
return hyphenateStyleName(styleName);
|
|
@@ -821,7 +821,7 @@ ReactPerf.measureMethods(CSSPropertyOperations, 'CSSPropertyOperations', {
|
|
|
821
821
|
});
|
|
822
822
|
|
|
823
823
|
module.exports = CSSPropertyOperations;
|
|
824
|
-
},{"
|
|
824
|
+
},{"119":119,"147":147,"149":149,"160":160,"168":168,"173":173,"4":4,"78":78}],6:[function(_dereq_,module,exports){
|
|
825
825
|
/**
|
|
826
826
|
* Copyright 2013-2015, Facebook, Inc.
|
|
827
827
|
* All rights reserved.
|
|
@@ -838,7 +838,7 @@ module.exports = CSSPropertyOperations;
|
|
|
838
838
|
var PooledClass = _dereq_(25);
|
|
839
839
|
|
|
840
840
|
var assign = _dereq_(24);
|
|
841
|
-
var invariant = _dereq_(
|
|
841
|
+
var invariant = _dereq_(161);
|
|
842
842
|
|
|
843
843
|
/**
|
|
844
844
|
* A specialized pseudo-event module to help keep track of components waiting to
|
|
@@ -915,7 +915,7 @@ assign(CallbackQueue.prototype, {
|
|
|
915
915
|
PooledClass.addPoolingTo(CallbackQueue);
|
|
916
916
|
|
|
917
917
|
module.exports = CallbackQueue;
|
|
918
|
-
},{"
|
|
918
|
+
},{"161":161,"24":24,"25":25}],7:[function(_dereq_,module,exports){
|
|
919
919
|
/**
|
|
920
920
|
* Copyright 2013-2015, Facebook, Inc.
|
|
921
921
|
* All rights reserved.
|
|
@@ -932,14 +932,14 @@ module.exports = CallbackQueue;
|
|
|
932
932
|
var EventConstants = _dereq_(15);
|
|
933
933
|
var EventPluginHub = _dereq_(16);
|
|
934
934
|
var EventPropagators = _dereq_(19);
|
|
935
|
-
var ExecutionEnvironment = _dereq_(
|
|
935
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
936
936
|
var ReactUpdates = _dereq_(96);
|
|
937
937
|
var SyntheticEvent = _dereq_(105);
|
|
938
938
|
|
|
939
|
-
var getEventTarget = _dereq_(
|
|
940
|
-
var isEventSupported = _dereq_(
|
|
941
|
-
var isTextInputElement = _dereq_(
|
|
942
|
-
var keyOf = _dereq_(
|
|
939
|
+
var getEventTarget = _dereq_(128);
|
|
940
|
+
var isEventSupported = _dereq_(133);
|
|
941
|
+
var isTextInputElement = _dereq_(134);
|
|
942
|
+
var keyOf = _dereq_(166);
|
|
943
943
|
|
|
944
944
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
945
945
|
|
|
@@ -1065,6 +1065,8 @@ function startWatchingForValueChange(target, targetID) {
|
|
|
1065
1065
|
activeElementValue = target.value;
|
|
1066
1066
|
activeElementValueProp = Object.getOwnPropertyDescriptor(target.constructor.prototype, 'value');
|
|
1067
1067
|
|
|
1068
|
+
// Not guarded in a canDefineProperty check: IE8 supports defineProperty only
|
|
1069
|
+
// on DOM elements
|
|
1068
1070
|
Object.defineProperty(activeElement, 'value', newValueProp);
|
|
1069
1071
|
activeElement.attachEvent('onpropertychange', handlePropertyChange);
|
|
1070
1072
|
}
|
|
@@ -1235,7 +1237,7 @@ var ChangeEventPlugin = {
|
|
|
1235
1237
|
};
|
|
1236
1238
|
|
|
1237
1239
|
module.exports = ChangeEventPlugin;
|
|
1238
|
-
},{"105":105,"
|
|
1240
|
+
},{"105":105,"128":128,"133":133,"134":134,"147":147,"15":15,"16":16,"166":166,"19":19,"96":96}],8:[function(_dereq_,module,exports){
|
|
1239
1241
|
/**
|
|
1240
1242
|
* Copyright 2013-2015, Facebook, Inc.
|
|
1241
1243
|
* All rights reserved.
|
|
@@ -1278,9 +1280,9 @@ var Danger = _dereq_(12);
|
|
|
1278
1280
|
var ReactMultiChildUpdateTypes = _dereq_(74);
|
|
1279
1281
|
var ReactPerf = _dereq_(78);
|
|
1280
1282
|
|
|
1281
|
-
var setInnerHTML = _dereq_(
|
|
1282
|
-
var setTextContent = _dereq_(
|
|
1283
|
-
var invariant = _dereq_(
|
|
1283
|
+
var setInnerHTML = _dereq_(138);
|
|
1284
|
+
var setTextContent = _dereq_(139);
|
|
1285
|
+
var invariant = _dereq_(161);
|
|
1284
1286
|
|
|
1285
1287
|
/**
|
|
1286
1288
|
* Inserts `childNode` as a child of `parentNode` at the `index`.
|
|
@@ -1389,7 +1391,7 @@ ReactPerf.measureMethods(DOMChildrenOperations, 'DOMChildrenOperations', {
|
|
|
1389
1391
|
});
|
|
1390
1392
|
|
|
1391
1393
|
module.exports = DOMChildrenOperations;
|
|
1392
|
-
},{"12":12,"
|
|
1394
|
+
},{"12":12,"138":138,"139":139,"161":161,"74":74,"78":78}],10:[function(_dereq_,module,exports){
|
|
1393
1395
|
/**
|
|
1394
1396
|
* Copyright 2013-2015, Facebook, Inc.
|
|
1395
1397
|
* All rights reserved.
|
|
@@ -1404,7 +1406,7 @@ module.exports = DOMChildrenOperations;
|
|
|
1404
1406
|
|
|
1405
1407
|
'use strict';
|
|
1406
1408
|
|
|
1407
|
-
var invariant = _dereq_(
|
|
1409
|
+
var invariant = _dereq_(161);
|
|
1408
1410
|
|
|
1409
1411
|
function checkMask(value, bitmask) {
|
|
1410
1412
|
return (value & bitmask) === bitmask;
|
|
@@ -1624,7 +1626,7 @@ var DOMProperty = {
|
|
|
1624
1626
|
};
|
|
1625
1627
|
|
|
1626
1628
|
module.exports = DOMProperty;
|
|
1627
|
-
},{"
|
|
1629
|
+
},{"161":161}],11:[function(_dereq_,module,exports){
|
|
1628
1630
|
/**
|
|
1629
1631
|
* Copyright 2013-2015, Facebook, Inc.
|
|
1630
1632
|
* All rights reserved.
|
|
@@ -1642,8 +1644,8 @@ module.exports = DOMProperty;
|
|
|
1642
1644
|
var DOMProperty = _dereq_(10);
|
|
1643
1645
|
var ReactPerf = _dereq_(78);
|
|
1644
1646
|
|
|
1645
|
-
var quoteAttributeValueForBrowser = _dereq_(
|
|
1646
|
-
var warning = _dereq_(
|
|
1647
|
+
var quoteAttributeValueForBrowser = _dereq_(136);
|
|
1648
|
+
var warning = _dereq_(173);
|
|
1647
1649
|
|
|
1648
1650
|
// Simplified subset
|
|
1649
1651
|
var VALID_ATTRIBUTE_NAME_REGEX = /^[a-zA-Z_][\w\.\-]*$/;
|
|
@@ -1850,7 +1852,7 @@ ReactPerf.measureMethods(DOMPropertyOperations, 'DOMPropertyOperations', {
|
|
|
1850
1852
|
});
|
|
1851
1853
|
|
|
1852
1854
|
module.exports = DOMPropertyOperations;
|
|
1853
|
-
},{"10":10,"
|
|
1855
|
+
},{"10":10,"136":136,"173":173,"78":78}],12:[function(_dereq_,module,exports){
|
|
1854
1856
|
/**
|
|
1855
1857
|
* Copyright 2013-2015, Facebook, Inc.
|
|
1856
1858
|
* All rights reserved.
|
|
@@ -1865,12 +1867,12 @@ module.exports = DOMPropertyOperations;
|
|
|
1865
1867
|
|
|
1866
1868
|
'use strict';
|
|
1867
1869
|
|
|
1868
|
-
var ExecutionEnvironment = _dereq_(
|
|
1870
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
1869
1871
|
|
|
1870
|
-
var createNodesFromMarkup = _dereq_(
|
|
1871
|
-
var emptyFunction = _dereq_(
|
|
1872
|
-
var getMarkupWrap = _dereq_(
|
|
1873
|
-
var invariant = _dereq_(
|
|
1872
|
+
var createNodesFromMarkup = _dereq_(152);
|
|
1873
|
+
var emptyFunction = _dereq_(153);
|
|
1874
|
+
var getMarkupWrap = _dereq_(157);
|
|
1875
|
+
var invariant = _dereq_(161);
|
|
1874
1876
|
|
|
1875
1877
|
var OPEN_TAG_NAME_EXP = /^(<[^ \/>]+)/;
|
|
1876
1878
|
var RESULT_INDEX_ATTR = 'data-danger-index';
|
|
@@ -1996,7 +1998,7 @@ var Danger = {
|
|
|
1996
1998
|
};
|
|
1997
1999
|
|
|
1998
2000
|
module.exports = Danger;
|
|
1999
|
-
},{"
|
|
2001
|
+
},{"147":147,"152":152,"153":153,"157":157,"161":161}],13:[function(_dereq_,module,exports){
|
|
2000
2002
|
/**
|
|
2001
2003
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2002
2004
|
* All rights reserved.
|
|
@@ -2010,7 +2012,7 @@ module.exports = Danger;
|
|
|
2010
2012
|
|
|
2011
2013
|
'use strict';
|
|
2012
2014
|
|
|
2013
|
-
var keyOf = _dereq_(
|
|
2015
|
+
var keyOf = _dereq_(166);
|
|
2014
2016
|
|
|
2015
2017
|
/**
|
|
2016
2018
|
* Module that is injectable into `EventPluginHub`, that specifies a
|
|
@@ -2024,7 +2026,7 @@ var keyOf = _dereq_(165);
|
|
|
2024
2026
|
var DefaultEventPluginOrder = [keyOf({ ResponderEventPlugin: null }), keyOf({ SimpleEventPlugin: null }), keyOf({ TapEventPlugin: null }), keyOf({ EnterLeaveEventPlugin: null }), keyOf({ ChangeEventPlugin: null }), keyOf({ SelectEventPlugin: null }), keyOf({ BeforeInputEventPlugin: null })];
|
|
2025
2027
|
|
|
2026
2028
|
module.exports = DefaultEventPluginOrder;
|
|
2027
|
-
},{"
|
|
2029
|
+
},{"166":166}],14:[function(_dereq_,module,exports){
|
|
2028
2030
|
/**
|
|
2029
2031
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2030
2032
|
* All rights reserved.
|
|
@@ -2044,7 +2046,7 @@ var EventPropagators = _dereq_(19);
|
|
|
2044
2046
|
var SyntheticMouseEvent = _dereq_(109);
|
|
2045
2047
|
|
|
2046
2048
|
var ReactMount = _dereq_(72);
|
|
2047
|
-
var keyOf = _dereq_(
|
|
2049
|
+
var keyOf = _dereq_(166);
|
|
2048
2050
|
|
|
2049
2051
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
2050
2052
|
var getFirstReactDOM = ReactMount.getFirstReactDOM;
|
|
@@ -2149,7 +2151,7 @@ var EnterLeaveEventPlugin = {
|
|
|
2149
2151
|
};
|
|
2150
2152
|
|
|
2151
2153
|
module.exports = EnterLeaveEventPlugin;
|
|
2152
|
-
},{"109":109,"15":15,"
|
|
2154
|
+
},{"109":109,"15":15,"166":166,"19":19,"72":72}],15:[function(_dereq_,module,exports){
|
|
2153
2155
|
/**
|
|
2154
2156
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2155
2157
|
* All rights reserved.
|
|
@@ -2163,7 +2165,7 @@ module.exports = EnterLeaveEventPlugin;
|
|
|
2163
2165
|
|
|
2164
2166
|
'use strict';
|
|
2165
2167
|
|
|
2166
|
-
var keyMirror = _dereq_(
|
|
2168
|
+
var keyMirror = _dereq_(165);
|
|
2167
2169
|
|
|
2168
2170
|
var PropagationPhases = keyMirror({ bubbled: null, captured: null });
|
|
2169
2171
|
|
|
@@ -2242,7 +2244,7 @@ var EventConstants = {
|
|
|
2242
2244
|
};
|
|
2243
2245
|
|
|
2244
2246
|
module.exports = EventConstants;
|
|
2245
|
-
},{"
|
|
2247
|
+
},{"165":165}],16:[function(_dereq_,module,exports){
|
|
2246
2248
|
/**
|
|
2247
2249
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2248
2250
|
* All rights reserved.
|
|
@@ -2261,9 +2263,9 @@ var EventPluginUtils = _dereq_(18);
|
|
|
2261
2263
|
var ReactErrorUtils = _dereq_(61);
|
|
2262
2264
|
|
|
2263
2265
|
var accumulateInto = _dereq_(115);
|
|
2264
|
-
var forEachAccumulated = _dereq_(
|
|
2265
|
-
var invariant = _dereq_(
|
|
2266
|
-
var warning = _dereq_(
|
|
2266
|
+
var forEachAccumulated = _dereq_(124);
|
|
2267
|
+
var invariant = _dereq_(161);
|
|
2268
|
+
var warning = _dereq_(173);
|
|
2267
2269
|
|
|
2268
2270
|
/**
|
|
2269
2271
|
* Internal store for event listeners
|
|
@@ -2522,7 +2524,7 @@ var EventPluginHub = {
|
|
|
2522
2524
|
};
|
|
2523
2525
|
|
|
2524
2526
|
module.exports = EventPluginHub;
|
|
2525
|
-
},{"115":115,"
|
|
2527
|
+
},{"115":115,"124":124,"161":161,"17":17,"173":173,"18":18,"61":61}],17:[function(_dereq_,module,exports){
|
|
2526
2528
|
/**
|
|
2527
2529
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2528
2530
|
* All rights reserved.
|
|
@@ -2537,7 +2539,7 @@ module.exports = EventPluginHub;
|
|
|
2537
2539
|
|
|
2538
2540
|
'use strict';
|
|
2539
2541
|
|
|
2540
|
-
var invariant = _dereq_(
|
|
2542
|
+
var invariant = _dereq_(161);
|
|
2541
2543
|
|
|
2542
2544
|
/**
|
|
2543
2545
|
* Injectable ordering of event plugins.
|
|
@@ -2743,7 +2745,7 @@ var EventPluginRegistry = {
|
|
|
2743
2745
|
};
|
|
2744
2746
|
|
|
2745
2747
|
module.exports = EventPluginRegistry;
|
|
2746
|
-
},{"
|
|
2748
|
+
},{"161":161}],18:[function(_dereq_,module,exports){
|
|
2747
2749
|
/**
|
|
2748
2750
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2749
2751
|
* All rights reserved.
|
|
@@ -2760,8 +2762,8 @@ module.exports = EventPluginRegistry;
|
|
|
2760
2762
|
var EventConstants = _dereq_(15);
|
|
2761
2763
|
var ReactErrorUtils = _dereq_(61);
|
|
2762
2764
|
|
|
2763
|
-
var invariant = _dereq_(
|
|
2764
|
-
var warning = _dereq_(
|
|
2765
|
+
var invariant = _dereq_(161);
|
|
2766
|
+
var warning = _dereq_(173);
|
|
2765
2767
|
|
|
2766
2768
|
/**
|
|
2767
2769
|
* Injected dependencies:
|
|
@@ -2946,7 +2948,7 @@ var EventPluginUtils = {
|
|
|
2946
2948
|
};
|
|
2947
2949
|
|
|
2948
2950
|
module.exports = EventPluginUtils;
|
|
2949
|
-
},{"15":15,"
|
|
2951
|
+
},{"15":15,"161":161,"173":173,"61":61}],19:[function(_dereq_,module,exports){
|
|
2950
2952
|
/**
|
|
2951
2953
|
* Copyright 2013-2015, Facebook, Inc.
|
|
2952
2954
|
* All rights reserved.
|
|
@@ -2963,10 +2965,10 @@ module.exports = EventPluginUtils;
|
|
|
2963
2965
|
var EventConstants = _dereq_(15);
|
|
2964
2966
|
var EventPluginHub = _dereq_(16);
|
|
2965
2967
|
|
|
2966
|
-
var warning = _dereq_(
|
|
2968
|
+
var warning = _dereq_(173);
|
|
2967
2969
|
|
|
2968
2970
|
var accumulateInto = _dereq_(115);
|
|
2969
|
-
var forEachAccumulated = _dereq_(
|
|
2971
|
+
var forEachAccumulated = _dereq_(124);
|
|
2970
2972
|
|
|
2971
2973
|
var PropagationPhases = EventConstants.PropagationPhases;
|
|
2972
2974
|
var getListener = EventPluginHub.getListener;
|
|
@@ -3082,7 +3084,7 @@ var EventPropagators = {
|
|
|
3082
3084
|
};
|
|
3083
3085
|
|
|
3084
3086
|
module.exports = EventPropagators;
|
|
3085
|
-
},{"115":115,"
|
|
3087
|
+
},{"115":115,"124":124,"15":15,"16":16,"173":173}],20:[function(_dereq_,module,exports){
|
|
3086
3088
|
/**
|
|
3087
3089
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3088
3090
|
* All rights reserved.
|
|
@@ -3100,7 +3102,7 @@ module.exports = EventPropagators;
|
|
|
3100
3102
|
var PooledClass = _dereq_(25);
|
|
3101
3103
|
|
|
3102
3104
|
var assign = _dereq_(24);
|
|
3103
|
-
var getTextContentAccessor = _dereq_(
|
|
3105
|
+
var getTextContentAccessor = _dereq_(131);
|
|
3104
3106
|
|
|
3105
3107
|
/**
|
|
3106
3108
|
* This helper class stores information about text content of a target node,
|
|
@@ -3178,7 +3180,7 @@ assign(FallbackCompositionState.prototype, {
|
|
|
3178
3180
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3179
3181
|
|
|
3180
3182
|
module.exports = FallbackCompositionState;
|
|
3181
|
-
},{"
|
|
3183
|
+
},{"131":131,"24":24,"25":25}],21:[function(_dereq_,module,exports){
|
|
3182
3184
|
/**
|
|
3183
3185
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3184
3186
|
* All rights reserved.
|
|
@@ -3193,7 +3195,7 @@ module.exports = FallbackCompositionState;
|
|
|
3193
3195
|
'use strict';
|
|
3194
3196
|
|
|
3195
3197
|
var DOMProperty = _dereq_(10);
|
|
3196
|
-
var ExecutionEnvironment = _dereq_(
|
|
3198
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
3197
3199
|
|
|
3198
3200
|
var MUST_USE_ATTRIBUTE = DOMProperty.injection.MUST_USE_ATTRIBUTE;
|
|
3199
3201
|
var MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;
|
|
@@ -3250,6 +3252,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3250
3252
|
crossOrigin: null,
|
|
3251
3253
|
data: null, // For `<object />` acts as `src`.
|
|
3252
3254
|
dateTime: MUST_USE_ATTRIBUTE,
|
|
3255
|
+
'default': HAS_BOOLEAN_VALUE,
|
|
3253
3256
|
defer: HAS_BOOLEAN_VALUE,
|
|
3254
3257
|
dir: null,
|
|
3255
3258
|
disabled: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
|
|
@@ -3274,9 +3277,11 @@ var HTMLDOMPropertyConfig = {
|
|
|
3274
3277
|
icon: null,
|
|
3275
3278
|
id: MUST_USE_PROPERTY,
|
|
3276
3279
|
inputMode: MUST_USE_ATTRIBUTE,
|
|
3280
|
+
integrity: null,
|
|
3277
3281
|
is: MUST_USE_ATTRIBUTE,
|
|
3278
3282
|
keyParams: MUST_USE_ATTRIBUTE,
|
|
3279
3283
|
keyType: MUST_USE_ATTRIBUTE,
|
|
3284
|
+
kind: null,
|
|
3280
3285
|
label: null,
|
|
3281
3286
|
lang: null,
|
|
3282
3287
|
list: MUST_USE_ATTRIBUTE,
|
|
@@ -3295,6 +3300,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3295
3300
|
multiple: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
3296
3301
|
muted: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
3297
3302
|
name: null,
|
|
3303
|
+
nonce: MUST_USE_ATTRIBUTE,
|
|
3298
3304
|
noValidate: HAS_BOOLEAN_VALUE,
|
|
3299
3305
|
open: HAS_BOOLEAN_VALUE,
|
|
3300
3306
|
optimum: null,
|
|
@@ -3306,6 +3312,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3306
3312
|
readOnly: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
3307
3313
|
rel: null,
|
|
3308
3314
|
required: HAS_BOOLEAN_VALUE,
|
|
3315
|
+
reversed: HAS_BOOLEAN_VALUE,
|
|
3309
3316
|
role: MUST_USE_ATTRIBUTE,
|
|
3310
3317
|
rows: MUST_USE_ATTRIBUTE | HAS_POSITIVE_NUMERIC_VALUE,
|
|
3311
3318
|
rowSpan: null,
|
|
@@ -3322,6 +3329,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3322
3329
|
spellCheck: null,
|
|
3323
3330
|
src: null,
|
|
3324
3331
|
srcDoc: MUST_USE_PROPERTY,
|
|
3332
|
+
srcLang: null,
|
|
3325
3333
|
srcSet: MUST_USE_ATTRIBUTE,
|
|
3326
3334
|
start: HAS_NUMERIC_VALUE,
|
|
3327
3335
|
step: null,
|
|
@@ -3355,10 +3363,12 @@ var HTMLDOMPropertyConfig = {
|
|
|
3355
3363
|
*/
|
|
3356
3364
|
// autoCapitalize and autoCorrect are supported in Mobile Safari for
|
|
3357
3365
|
// keyboard hints.
|
|
3358
|
-
autoCapitalize:
|
|
3359
|
-
autoCorrect:
|
|
3366
|
+
autoCapitalize: MUST_USE_ATTRIBUTE,
|
|
3367
|
+
autoCorrect: MUST_USE_ATTRIBUTE,
|
|
3360
3368
|
// autoSave allows WebKit/Blink to persist values of input fields on page reloads
|
|
3361
3369
|
autoSave: null,
|
|
3370
|
+
// color is for Safari mask-icon link
|
|
3371
|
+
color: null,
|
|
3362
3372
|
// itemProp, itemScope, itemType are for
|
|
3363
3373
|
// Microdata support. See http://schema.org/docs/gs.html
|
|
3364
3374
|
itemProp: MUST_USE_ATTRIBUTE,
|
|
@@ -3385,9 +3395,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3385
3395
|
httpEquiv: 'http-equiv'
|
|
3386
3396
|
},
|
|
3387
3397
|
DOMPropertyNames: {
|
|
3388
|
-
autoCapitalize: 'autocapitalize',
|
|
3389
3398
|
autoComplete: 'autocomplete',
|
|
3390
|
-
autoCorrect: 'autocorrect',
|
|
3391
3399
|
autoFocus: 'autofocus',
|
|
3392
3400
|
autoPlay: 'autoplay',
|
|
3393
3401
|
autoSave: 'autosave',
|
|
@@ -3403,7 +3411,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3403
3411
|
};
|
|
3404
3412
|
|
|
3405
3413
|
module.exports = HTMLDOMPropertyConfig;
|
|
3406
|
-
},{"10":10,"
|
|
3414
|
+
},{"10":10,"147":147}],22:[function(_dereq_,module,exports){
|
|
3407
3415
|
/**
|
|
3408
3416
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3409
3417
|
* All rights reserved.
|
|
@@ -3458,8 +3466,8 @@ module.exports = LinkedStateMixin;
|
|
|
3458
3466
|
var ReactPropTypes = _dereq_(82);
|
|
3459
3467
|
var ReactPropTypeLocations = _dereq_(81);
|
|
3460
3468
|
|
|
3461
|
-
var invariant = _dereq_(
|
|
3462
|
-
var warning = _dereq_(
|
|
3469
|
+
var invariant = _dereq_(161);
|
|
3470
|
+
var warning = _dereq_(173);
|
|
3463
3471
|
|
|
3464
3472
|
var hasReadOnlyValue = {
|
|
3465
3473
|
'button': true,
|
|
@@ -3575,7 +3583,7 @@ var LinkedValueUtils = {
|
|
|
3575
3583
|
};
|
|
3576
3584
|
|
|
3577
3585
|
module.exports = LinkedValueUtils;
|
|
3578
|
-
},{"
|
|
3586
|
+
},{"161":161,"173":173,"81":81,"82":82}],24:[function(_dereq_,module,exports){
|
|
3579
3587
|
/**
|
|
3580
3588
|
* Copyright 2014-2015, Facebook, Inc.
|
|
3581
3589
|
* All rights reserved.
|
|
@@ -3637,7 +3645,7 @@ module.exports = assign;
|
|
|
3637
3645
|
|
|
3638
3646
|
'use strict';
|
|
3639
3647
|
|
|
3640
|
-
var invariant = _dereq_(
|
|
3648
|
+
var invariant = _dereq_(161);
|
|
3641
3649
|
|
|
3642
3650
|
/**
|
|
3643
3651
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3743,7 +3751,7 @@ var PooledClass = {
|
|
|
3743
3751
|
};
|
|
3744
3752
|
|
|
3745
3753
|
module.exports = PooledClass;
|
|
3746
|
-
},{"
|
|
3754
|
+
},{"161":161}],26:[function(_dereq_,module,exports){
|
|
3747
3755
|
/**
|
|
3748
3756
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3749
3757
|
* All rights reserved.
|
|
@@ -3762,7 +3770,7 @@ var ReactDOMServer = _dereq_(50);
|
|
|
3762
3770
|
var ReactIsomorphic = _dereq_(69);
|
|
3763
3771
|
|
|
3764
3772
|
var assign = _dereq_(24);
|
|
3765
|
-
var deprecated = _dereq_(
|
|
3773
|
+
var deprecated = _dereq_(120);
|
|
3766
3774
|
|
|
3767
3775
|
// `version` will be added here by ReactIsomorphic.
|
|
3768
3776
|
var React = {};
|
|
@@ -3781,9 +3789,10 @@ assign(React, {
|
|
|
3781
3789
|
});
|
|
3782
3790
|
|
|
3783
3791
|
React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactDOM;
|
|
3792
|
+
React.__SECRET_DOM_SERVER_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactDOMServer;
|
|
3784
3793
|
|
|
3785
3794
|
module.exports = React;
|
|
3786
|
-
},{"
|
|
3795
|
+
},{"120":120,"24":24,"40":40,"50":50,"69":69}],27:[function(_dereq_,module,exports){
|
|
3787
3796
|
/**
|
|
3788
3797
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3789
3798
|
* All rights reserved.
|
|
@@ -3799,8 +3808,8 @@ module.exports = React;
|
|
|
3799
3808
|
|
|
3800
3809
|
var ReactInstanceMap = _dereq_(68);
|
|
3801
3810
|
|
|
3802
|
-
var findDOMNode = _dereq_(
|
|
3803
|
-
var warning = _dereq_(
|
|
3811
|
+
var findDOMNode = _dereq_(122);
|
|
3812
|
+
var warning = _dereq_(173);
|
|
3804
3813
|
|
|
3805
3814
|
var didWarnKey = '_getDOMNodeDidWarn';
|
|
3806
3815
|
|
|
@@ -3820,7 +3829,7 @@ var ReactBrowserComponentMixin = {
|
|
|
3820
3829
|
};
|
|
3821
3830
|
|
|
3822
3831
|
module.exports = ReactBrowserComponentMixin;
|
|
3823
|
-
},{"
|
|
3832
|
+
},{"122":122,"173":173,"68":68}],28:[function(_dereq_,module,exports){
|
|
3824
3833
|
/**
|
|
3825
3834
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3826
3835
|
* All rights reserved.
|
|
@@ -3843,7 +3852,7 @@ var ReactPerf = _dereq_(78);
|
|
|
3843
3852
|
var ViewportMetrics = _dereq_(114);
|
|
3844
3853
|
|
|
3845
3854
|
var assign = _dereq_(24);
|
|
3846
|
-
var isEventSupported = _dereq_(
|
|
3855
|
+
var isEventSupported = _dereq_(133);
|
|
3847
3856
|
|
|
3848
3857
|
/**
|
|
3849
3858
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4145,7 +4154,7 @@ ReactPerf.measureMethods(ReactBrowserEventEmitter, 'ReactBrowserEventEmitter', {
|
|
|
4145
4154
|
});
|
|
4146
4155
|
|
|
4147
4156
|
module.exports = ReactBrowserEventEmitter;
|
|
4148
|
-
},{"114":114,"
|
|
4157
|
+
},{"114":114,"133":133,"15":15,"16":16,"17":17,"24":24,"62":62,"78":78}],29:[function(_dereq_,module,exports){
|
|
4149
4158
|
/**
|
|
4150
4159
|
* Copyright 2013-2015, Facebook, Inc.
|
|
4151
4160
|
* All rights reserved.
|
|
@@ -4175,7 +4184,7 @@ function createTransitionTimeoutPropValidator(transitionType) {
|
|
|
4175
4184
|
// If the transition is enabled
|
|
4176
4185
|
if (props[enabledPropName]) {
|
|
4177
4186
|
// If no timeout duration is provided
|
|
4178
|
-
if (
|
|
4187
|
+
if (props[timeoutPropName] == null) {
|
|
4179
4188
|
return new Error(timeoutPropName + ' wasn\'t supplied to ReactCSSTransitionGroup: ' + 'this can cause unreliable animations and won\'t be supported in ' + 'a future version of React. See ' + 'https://fb.me/react-animation-transition-group-timeout for more ' + 'information.');
|
|
4180
4189
|
|
|
4181
4190
|
// If the duration isn't a number
|
|
@@ -4247,10 +4256,10 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
4247
4256
|
var React = _dereq_(26);
|
|
4248
4257
|
var ReactDOM = _dereq_(40);
|
|
4249
4258
|
|
|
4250
|
-
var CSSCore = _dereq_(
|
|
4259
|
+
var CSSCore = _dereq_(145);
|
|
4251
4260
|
var ReactTransitionEvents = _dereq_(93);
|
|
4252
4261
|
|
|
4253
|
-
var onlyChild = _dereq_(
|
|
4262
|
+
var onlyChild = _dereq_(135);
|
|
4254
4263
|
|
|
4255
4264
|
// We don't remove the element from the DOM until we receive an animationend or
|
|
4256
4265
|
// transitionend event. If the user screws up and forgets to add an animation
|
|
@@ -4328,6 +4337,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4328
4337
|
if (userSpecifiedDelay) {
|
|
4329
4338
|
// Clean-up the animation after the specified delay
|
|
4330
4339
|
timeout = setTimeout(endListener, userSpecifiedDelay);
|
|
4340
|
+
this.transitionTimeouts.push(timeout);
|
|
4331
4341
|
} else {
|
|
4332
4342
|
// DEPRECATED: this listener will be removed in a future version of react
|
|
4333
4343
|
ReactTransitionEvents.addEndEventListener(node, endListener);
|
|
@@ -4352,12 +4362,16 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4352
4362
|
|
|
4353
4363
|
componentWillMount: function () {
|
|
4354
4364
|
this.classNameQueue = [];
|
|
4365
|
+
this.transitionTimeouts = [];
|
|
4355
4366
|
},
|
|
4356
4367
|
|
|
4357
4368
|
componentWillUnmount: function () {
|
|
4358
4369
|
if (this.timeout) {
|
|
4359
4370
|
clearTimeout(this.timeout);
|
|
4360
4371
|
}
|
|
4372
|
+
this.transitionTimeouts.forEach(function (timeout) {
|
|
4373
|
+
clearTimeout(timeout);
|
|
4374
|
+
});
|
|
4361
4375
|
},
|
|
4362
4376
|
|
|
4363
4377
|
componentWillAppear: function (done) {
|
|
@@ -4390,7 +4404,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4390
4404
|
});
|
|
4391
4405
|
|
|
4392
4406
|
module.exports = ReactCSSTransitionGroupChild;
|
|
4393
|
-
},{"
|
|
4407
|
+
},{"135":135,"145":145,"26":26,"40":40,"93":93}],31:[function(_dereq_,module,exports){
|
|
4394
4408
|
/**
|
|
4395
4409
|
* Copyright 2014-2015, Facebook, Inc.
|
|
4396
4410
|
* All rights reserved.
|
|
@@ -4407,10 +4421,10 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
4407
4421
|
|
|
4408
4422
|
var ReactReconciler = _dereq_(84);
|
|
4409
4423
|
|
|
4410
|
-
var instantiateReactComponent = _dereq_(
|
|
4411
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4412
|
-
var traverseAllChildren = _dereq_(
|
|
4413
|
-
var warning = _dereq_(
|
|
4424
|
+
var instantiateReactComponent = _dereq_(132);
|
|
4425
|
+
var shouldUpdateReactComponent = _dereq_(141);
|
|
4426
|
+
var traverseAllChildren = _dereq_(142);
|
|
4427
|
+
var warning = _dereq_(173);
|
|
4414
4428
|
|
|
4415
4429
|
function instantiateChild(childInstances, child, name) {
|
|
4416
4430
|
// We found a component instance.
|
|
@@ -4513,7 +4527,7 @@ var ReactChildReconciler = {
|
|
|
4513
4527
|
};
|
|
4514
4528
|
|
|
4515
4529
|
module.exports = ReactChildReconciler;
|
|
4516
|
-
},{"
|
|
4530
|
+
},{"132":132,"141":141,"142":142,"173":173,"84":84}],32:[function(_dereq_,module,exports){
|
|
4517
4531
|
/**
|
|
4518
4532
|
* Copyright 2013-2015, Facebook, Inc.
|
|
4519
4533
|
* All rights reserved.
|
|
@@ -4530,8 +4544,8 @@ module.exports = ReactChildReconciler;
|
|
|
4530
4544
|
var PooledClass = _dereq_(25);
|
|
4531
4545
|
var ReactElement = _dereq_(57);
|
|
4532
4546
|
|
|
4533
|
-
var emptyFunction = _dereq_(
|
|
4534
|
-
var traverseAllChildren = _dereq_(
|
|
4547
|
+
var emptyFunction = _dereq_(153);
|
|
4548
|
+
var traverseAllChildren = _dereq_(142);
|
|
4535
4549
|
|
|
4536
4550
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
4537
4551
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -4696,7 +4710,7 @@ var ReactChildren = {
|
|
|
4696
4710
|
};
|
|
4697
4711
|
|
|
4698
4712
|
module.exports = ReactChildren;
|
|
4699
|
-
},{"
|
|
4713
|
+
},{"142":142,"153":153,"25":25,"57":57}],33:[function(_dereq_,module,exports){
|
|
4700
4714
|
/**
|
|
4701
4715
|
* Copyright 2013-2015, Facebook, Inc.
|
|
4702
4716
|
* All rights reserved.
|
|
@@ -4717,11 +4731,11 @@ var ReactPropTypeLocationNames = _dereq_(80);
|
|
|
4717
4731
|
var ReactNoopUpdateQueue = _dereq_(76);
|
|
4718
4732
|
|
|
4719
4733
|
var assign = _dereq_(24);
|
|
4720
|
-
var emptyObject = _dereq_(
|
|
4721
|
-
var invariant = _dereq_(
|
|
4722
|
-
var keyMirror = _dereq_(
|
|
4723
|
-
var keyOf = _dereq_(
|
|
4724
|
-
var warning = _dereq_(
|
|
4734
|
+
var emptyObject = _dereq_(154);
|
|
4735
|
+
var invariant = _dereq_(161);
|
|
4736
|
+
var keyMirror = _dereq_(165);
|
|
4737
|
+
var keyOf = _dereq_(166);
|
|
4738
|
+
var warning = _dereq_(173);
|
|
4725
4739
|
|
|
4726
4740
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4727
4741
|
|
|
@@ -5468,7 +5482,7 @@ var ReactClass = {
|
|
|
5468
5482
|
};
|
|
5469
5483
|
|
|
5470
5484
|
module.exports = ReactClass;
|
|
5471
|
-
},{"
|
|
5485
|
+
},{"154":154,"161":161,"165":165,"166":166,"173":173,"24":24,"34":34,"57":57,"76":76,"80":80,"81":81}],34:[function(_dereq_,module,exports){
|
|
5472
5486
|
/**
|
|
5473
5487
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5474
5488
|
* All rights reserved.
|
|
@@ -5484,9 +5498,10 @@ module.exports = ReactClass;
|
|
|
5484
5498
|
|
|
5485
5499
|
var ReactNoopUpdateQueue = _dereq_(76);
|
|
5486
5500
|
|
|
5487
|
-
var
|
|
5488
|
-
var
|
|
5489
|
-
var
|
|
5501
|
+
var canDefineProperty = _dereq_(117);
|
|
5502
|
+
var emptyObject = _dereq_(154);
|
|
5503
|
+
var invariant = _dereq_(161);
|
|
5504
|
+
var warning = _dereq_(173);
|
|
5490
5505
|
|
|
5491
5506
|
/**
|
|
5492
5507
|
* Base class helpers for the updating state of a component.
|
|
@@ -5573,15 +5588,13 @@ if ("development" !== 'production') {
|
|
|
5573
5588
|
setProps: ['setProps', 'Instead, call render again at the top level.']
|
|
5574
5589
|
};
|
|
5575
5590
|
var defineDeprecationWarning = function (methodName, info) {
|
|
5576
|
-
|
|
5591
|
+
if (canDefineProperty) {
|
|
5577
5592
|
Object.defineProperty(ReactComponent.prototype, methodName, {
|
|
5578
5593
|
get: function () {
|
|
5579
5594
|
"development" !== 'production' ? warning(false, '%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]) : undefined;
|
|
5580
5595
|
return undefined;
|
|
5581
5596
|
}
|
|
5582
5597
|
});
|
|
5583
|
-
} catch (x) {
|
|
5584
|
-
// IE will fail on defineProperty (es5-shim/sham too)
|
|
5585
5598
|
}
|
|
5586
5599
|
};
|
|
5587
5600
|
for (var fnName in deprecatedAPIs) {
|
|
@@ -5592,7 +5605,7 @@ if ("development" !== 'production') {
|
|
|
5592
5605
|
}
|
|
5593
5606
|
|
|
5594
5607
|
module.exports = ReactComponent;
|
|
5595
|
-
},{"
|
|
5608
|
+
},{"117":117,"154":154,"161":161,"173":173,"76":76}],35:[function(_dereq_,module,exports){
|
|
5596
5609
|
/**
|
|
5597
5610
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5598
5611
|
* All rights reserved.
|
|
@@ -5648,7 +5661,7 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
5648
5661
|
|
|
5649
5662
|
'use strict';
|
|
5650
5663
|
|
|
5651
|
-
var invariant = _dereq_(
|
|
5664
|
+
var invariant = _dereq_(161);
|
|
5652
5665
|
|
|
5653
5666
|
var injected = false;
|
|
5654
5667
|
|
|
@@ -5686,7 +5699,7 @@ var ReactComponentEnvironment = {
|
|
|
5686
5699
|
};
|
|
5687
5700
|
|
|
5688
5701
|
module.exports = ReactComponentEnvironment;
|
|
5689
|
-
},{"
|
|
5702
|
+
},{"161":161}],37:[function(_dereq_,module,exports){
|
|
5690
5703
|
/**
|
|
5691
5704
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5692
5705
|
* All rights reserved.
|
|
@@ -5700,7 +5713,7 @@ module.exports = ReactComponentEnvironment;
|
|
|
5700
5713
|
|
|
5701
5714
|
'use strict';
|
|
5702
5715
|
|
|
5703
|
-
var shallowCompare = _dereq_(
|
|
5716
|
+
var shallowCompare = _dereq_(140);
|
|
5704
5717
|
|
|
5705
5718
|
/**
|
|
5706
5719
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -5733,7 +5746,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
5733
5746
|
};
|
|
5734
5747
|
|
|
5735
5748
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
5736
|
-
},{"
|
|
5749
|
+
},{"140":140}],38:[function(_dereq_,module,exports){
|
|
5737
5750
|
/**
|
|
5738
5751
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5739
5752
|
* All rights reserved.
|
|
@@ -5758,10 +5771,10 @@ var ReactReconciler = _dereq_(84);
|
|
|
5758
5771
|
var ReactUpdateQueue = _dereq_(95);
|
|
5759
5772
|
|
|
5760
5773
|
var assign = _dereq_(24);
|
|
5761
|
-
var emptyObject = _dereq_(
|
|
5762
|
-
var invariant = _dereq_(
|
|
5763
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
5764
|
-
var warning = _dereq_(
|
|
5774
|
+
var emptyObject = _dereq_(154);
|
|
5775
|
+
var invariant = _dereq_(161);
|
|
5776
|
+
var shouldUpdateReactComponent = _dereq_(141);
|
|
5777
|
+
var warning = _dereq_(173);
|
|
5765
5778
|
|
|
5766
5779
|
function getDeclarationErrorAddendum(component) {
|
|
5767
5780
|
var owner = component._currentElement._owner || null;
|
|
@@ -6428,7 +6441,7 @@ var ReactCompositeComponent = {
|
|
|
6428
6441
|
};
|
|
6429
6442
|
|
|
6430
6443
|
module.exports = ReactCompositeComponent;
|
|
6431
|
-
},{"
|
|
6444
|
+
},{"141":141,"154":154,"161":161,"173":173,"24":24,"36":36,"39":39,"57":57,"68":68,"78":78,"80":80,"81":81,"84":84,"95":95}],39:[function(_dereq_,module,exports){
|
|
6432
6445
|
/**
|
|
6433
6446
|
* Copyright 2013-2015, Facebook, Inc.
|
|
6434
6447
|
* All rights reserved.
|
|
@@ -6485,9 +6498,9 @@ var ReactReconciler = _dereq_(84);
|
|
|
6485
6498
|
var ReactUpdates = _dereq_(96);
|
|
6486
6499
|
var ReactVersion = _dereq_(97);
|
|
6487
6500
|
|
|
6488
|
-
var findDOMNode = _dereq_(
|
|
6489
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
6490
|
-
var warning = _dereq_(
|
|
6501
|
+
var findDOMNode = _dereq_(122);
|
|
6502
|
+
var renderSubtreeIntoContainer = _dereq_(137);
|
|
6503
|
+
var warning = _dereq_(173);
|
|
6491
6504
|
|
|
6492
6505
|
ReactDefaultInjection.inject();
|
|
6493
6506
|
|
|
@@ -6518,7 +6531,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
6518
6531
|
}
|
|
6519
6532
|
|
|
6520
6533
|
if ("development" !== 'production') {
|
|
6521
|
-
var ExecutionEnvironment = _dereq_(
|
|
6534
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
6522
6535
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
6523
6536
|
|
|
6524
6537
|
// First check if devtools is not installed
|
|
@@ -6552,7 +6565,7 @@ if ("development" !== 'production') {
|
|
|
6552
6565
|
}
|
|
6553
6566
|
|
|
6554
6567
|
module.exports = React;
|
|
6555
|
-
},{"
|
|
6568
|
+
},{"122":122,"137":137,"147":147,"173":173,"39":39,"51":51,"54":54,"67":67,"72":72,"78":78,"84":84,"96":96,"97":97}],41:[function(_dereq_,module,exports){
|
|
6556
6569
|
/**
|
|
6557
6570
|
* Copyright 2013-2015, Facebook, Inc.
|
|
6558
6571
|
* All rights reserved.
|
|
@@ -6638,15 +6651,16 @@ var ReactPerf = _dereq_(78);
|
|
|
6638
6651
|
var ReactUpdateQueue = _dereq_(95);
|
|
6639
6652
|
|
|
6640
6653
|
var assign = _dereq_(24);
|
|
6641
|
-
var
|
|
6642
|
-
var
|
|
6643
|
-
var
|
|
6644
|
-
var
|
|
6645
|
-
var
|
|
6646
|
-
var
|
|
6647
|
-
var
|
|
6648
|
-
var
|
|
6649
|
-
var
|
|
6654
|
+
var canDefineProperty = _dereq_(117);
|
|
6655
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
6656
|
+
var invariant = _dereq_(161);
|
|
6657
|
+
var isEventSupported = _dereq_(133);
|
|
6658
|
+
var keyOf = _dereq_(166);
|
|
6659
|
+
var setInnerHTML = _dereq_(138);
|
|
6660
|
+
var setTextContent = _dereq_(139);
|
|
6661
|
+
var shallowEqual = _dereq_(171);
|
|
6662
|
+
var validateDOMNesting = _dereq_(144);
|
|
6663
|
+
var warning = _dereq_(173);
|
|
6650
6664
|
|
|
6651
6665
|
var deleteListener = ReactBrowserEventEmitter.deleteListener;
|
|
6652
6666
|
var listenTo = ReactBrowserEventEmitter.listenTo;
|
|
@@ -6655,16 +6669,12 @@ var registrationNameModules = ReactBrowserEventEmitter.registrationNameModules;
|
|
|
6655
6669
|
// For quickly matching children type, to test if can be treated as content.
|
|
6656
6670
|
var CONTENT_TYPES = { 'string': true, 'number': true };
|
|
6657
6671
|
|
|
6672
|
+
var CHILDREN = keyOf({ children: null });
|
|
6658
6673
|
var STYLE = keyOf({ style: null });
|
|
6674
|
+
var HTML = keyOf({ __html: null });
|
|
6659
6675
|
|
|
6660
6676
|
var ELEMENT_NODE_TYPE = 1;
|
|
6661
6677
|
|
|
6662
|
-
var canDefineProperty = false;
|
|
6663
|
-
try {
|
|
6664
|
-
Object.defineProperty({}, 'test', { get: function () {} });
|
|
6665
|
-
canDefineProperty = true;
|
|
6666
|
-
} catch (e) {}
|
|
6667
|
-
|
|
6668
6678
|
function getDeclarationErrorAddendum(internalInstance) {
|
|
6669
6679
|
if (internalInstance) {
|
|
6670
6680
|
var owner = internalInstance._currentElement._owner || null;
|
|
@@ -6811,7 +6821,7 @@ function assertValidProps(component, props) {
|
|
|
6811
6821
|
}
|
|
6812
6822
|
if (props.dangerouslySetInnerHTML != null) {
|
|
6813
6823
|
!(props.children == null) ? "development" !== 'production' ? invariant(false, 'Can only set one of `children` or `props.dangerouslySetInnerHTML`.') : invariant(false) : undefined;
|
|
6814
|
-
!(typeof props.dangerouslySetInnerHTML === 'object' &&
|
|
6824
|
+
!(typeof props.dangerouslySetInnerHTML === 'object' && HTML in props.dangerouslySetInnerHTML) ? "development" !== 'production' ? invariant(false, '`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. ' + 'Please visit https://fb.me/react-invariant-dangerously-set-inner-html ' + 'for more information.') : invariant(false) : undefined;
|
|
6815
6825
|
}
|
|
6816
6826
|
if ("development" !== 'production') {
|
|
6817
6827
|
"development" !== 'production' ? warning(props.innerHTML == null, 'Directly setting property `innerHTML` is not permitted. ' + 'For more information, lookup documentation on `dangerouslySetInnerHTML`.') : undefined;
|
|
@@ -7150,7 +7160,9 @@ ReactDOMComponent.Mixin = {
|
|
|
7150
7160
|
}
|
|
7151
7161
|
var markup = null;
|
|
7152
7162
|
if (this._tag != null && isCustomComponent(this._tag, props)) {
|
|
7153
|
-
|
|
7163
|
+
if (propKey !== CHILDREN) {
|
|
7164
|
+
markup = DOMPropertyOperations.createMarkupForCustomAttribute(propKey, propValue);
|
|
7165
|
+
}
|
|
7154
7166
|
} else {
|
|
7155
7167
|
markup = DOMPropertyOperations.createMarkupForProperty(propKey, propValue);
|
|
7156
7168
|
}
|
|
@@ -7410,6 +7422,9 @@ ReactDOMComponent.Mixin = {
|
|
|
7410
7422
|
if (!node) {
|
|
7411
7423
|
node = ReactMount.getNode(this._rootNodeID);
|
|
7412
7424
|
}
|
|
7425
|
+
if (propKey === CHILDREN) {
|
|
7426
|
+
nextProp = null;
|
|
7427
|
+
}
|
|
7413
7428
|
DOMPropertyOperations.setValueForAttribute(node, propKey, nextProp);
|
|
7414
7429
|
} else if (DOMProperty.properties[propKey] || DOMProperty.isCustomAttribute(propKey)) {
|
|
7415
7430
|
if (!node) {
|
|
@@ -7564,7 +7579,7 @@ ReactPerf.measureMethods(ReactDOMComponent, 'ReactDOMComponent', {
|
|
|
7564
7579
|
assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
7565
7580
|
|
|
7566
7581
|
module.exports = ReactDOMComponent;
|
|
7567
|
-
},{"10":10,"11":11,"
|
|
7582
|
+
},{"10":10,"11":11,"117":117,"121":121,"133":133,"138":138,"139":139,"144":144,"15":15,"161":161,"166":166,"171":171,"173":173,"2":2,"24":24,"28":28,"35":35,"41":41,"46":46,"47":47,"48":48,"5":5,"52":52,"72":72,"73":73,"78":78,"95":95}],43:[function(_dereq_,module,exports){
|
|
7568
7583
|
/**
|
|
7569
7584
|
* Copyright 2013-2015, Facebook, Inc.
|
|
7570
7585
|
* All rights reserved.
|
|
@@ -7582,7 +7597,7 @@ module.exports = ReactDOMComponent;
|
|
|
7582
7597
|
var ReactElement = _dereq_(57);
|
|
7583
7598
|
var ReactElementValidator = _dereq_(58);
|
|
7584
7599
|
|
|
7585
|
-
var mapObject = _dereq_(
|
|
7600
|
+
var mapObject = _dereq_(167);
|
|
7586
7601
|
|
|
7587
7602
|
/**
|
|
7588
7603
|
* Create a factory that creates HTML tag elements.
|
|
@@ -7742,7 +7757,7 @@ var ReactDOMFactories = mapObject({
|
|
|
7742
7757
|
}, createDOMFactory);
|
|
7743
7758
|
|
|
7744
7759
|
module.exports = ReactDOMFactories;
|
|
7745
|
-
},{"
|
|
7760
|
+
},{"167":167,"57":57,"58":58}],44:[function(_dereq_,module,exports){
|
|
7746
7761
|
/**
|
|
7747
7762
|
* Copyright 2013-2015, Facebook, Inc.
|
|
7748
7763
|
* All rights reserved.
|
|
@@ -7781,7 +7796,7 @@ var DOMPropertyOperations = _dereq_(11);
|
|
|
7781
7796
|
var ReactMount = _dereq_(72);
|
|
7782
7797
|
var ReactPerf = _dereq_(78);
|
|
7783
7798
|
|
|
7784
|
-
var invariant = _dereq_(
|
|
7799
|
+
var invariant = _dereq_(161);
|
|
7785
7800
|
|
|
7786
7801
|
/**
|
|
7787
7802
|
* Errors for properties that should not be updated with `updatePropertyByID()`.
|
|
@@ -7856,7 +7871,7 @@ ReactPerf.measureMethods(ReactDOMIDOperations, 'ReactDOMIDOperations', {
|
|
|
7856
7871
|
});
|
|
7857
7872
|
|
|
7858
7873
|
module.exports = ReactDOMIDOperations;
|
|
7859
|
-
},{"11":11,"
|
|
7874
|
+
},{"11":11,"161":161,"72":72,"78":78,"9":9}],46:[function(_dereq_,module,exports){
|
|
7860
7875
|
/**
|
|
7861
7876
|
* Copyright 2013-2015, Facebook, Inc.
|
|
7862
7877
|
* All rights reserved.
|
|
@@ -7876,7 +7891,7 @@ var ReactMount = _dereq_(72);
|
|
|
7876
7891
|
var ReactUpdates = _dereq_(96);
|
|
7877
7892
|
|
|
7878
7893
|
var assign = _dereq_(24);
|
|
7879
|
-
var invariant = _dereq_(
|
|
7894
|
+
var invariant = _dereq_(161);
|
|
7880
7895
|
|
|
7881
7896
|
var instancesByReactID = {};
|
|
7882
7897
|
|
|
@@ -8010,7 +8025,7 @@ function _handleChange(event) {
|
|
|
8010
8025
|
}
|
|
8011
8026
|
|
|
8012
8027
|
module.exports = ReactDOMInput;
|
|
8013
|
-
},{"
|
|
8028
|
+
},{"161":161,"23":23,"24":24,"45":45,"72":72,"96":96}],47:[function(_dereq_,module,exports){
|
|
8014
8029
|
/**
|
|
8015
8030
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8016
8031
|
* All rights reserved.
|
|
@@ -8028,7 +8043,7 @@ var ReactChildren = _dereq_(32);
|
|
|
8028
8043
|
var ReactDOMSelect = _dereq_(48);
|
|
8029
8044
|
|
|
8030
8045
|
var assign = _dereq_(24);
|
|
8031
|
-
var warning = _dereq_(
|
|
8046
|
+
var warning = _dereq_(173);
|
|
8032
8047
|
|
|
8033
8048
|
var valueContextKey = ReactDOMSelect.valueContextKey;
|
|
8034
8049
|
|
|
@@ -8097,7 +8112,7 @@ var ReactDOMOption = {
|
|
|
8097
8112
|
};
|
|
8098
8113
|
|
|
8099
8114
|
module.exports = ReactDOMOption;
|
|
8100
|
-
},{"
|
|
8115
|
+
},{"173":173,"24":24,"32":32,"48":48}],48:[function(_dereq_,module,exports){
|
|
8101
8116
|
/**
|
|
8102
8117
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8103
8118
|
* All rights reserved.
|
|
@@ -8116,7 +8131,7 @@ var ReactMount = _dereq_(72);
|
|
|
8116
8131
|
var ReactUpdates = _dereq_(96);
|
|
8117
8132
|
|
|
8118
8133
|
var assign = _dereq_(24);
|
|
8119
|
-
var warning = _dereq_(
|
|
8134
|
+
var warning = _dereq_(173);
|
|
8120
8135
|
|
|
8121
8136
|
var valueContextKey = '__ReactDOMSelect_value$' + Math.random().toString(36).slice(2);
|
|
8122
8137
|
|
|
@@ -8128,7 +8143,7 @@ function updateOptionsIfPendingUpdateAndMounted() {
|
|
|
8128
8143
|
var value = LinkedValueUtils.getValue(props);
|
|
8129
8144
|
|
|
8130
8145
|
if (value != null) {
|
|
8131
|
-
updateOptions(this, props, value);
|
|
8146
|
+
updateOptions(this, Boolean(props.multiple), value);
|
|
8132
8147
|
}
|
|
8133
8148
|
}
|
|
8134
8149
|
}
|
|
@@ -8286,7 +8301,7 @@ function _handleChange(event) {
|
|
|
8286
8301
|
}
|
|
8287
8302
|
|
|
8288
8303
|
module.exports = ReactDOMSelect;
|
|
8289
|
-
},{"
|
|
8304
|
+
},{"173":173,"23":23,"24":24,"72":72,"96":96}],49:[function(_dereq_,module,exports){
|
|
8290
8305
|
/**
|
|
8291
8306
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8292
8307
|
* All rights reserved.
|
|
@@ -8300,10 +8315,10 @@ module.exports = ReactDOMSelect;
|
|
|
8300
8315
|
|
|
8301
8316
|
'use strict';
|
|
8302
8317
|
|
|
8303
|
-
var ExecutionEnvironment = _dereq_(
|
|
8318
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
8304
8319
|
|
|
8305
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
8306
|
-
var getTextContentAccessor = _dereq_(
|
|
8320
|
+
var getNodeForCharacterOffset = _dereq_(130);
|
|
8321
|
+
var getTextContentAccessor = _dereq_(131);
|
|
8307
8322
|
|
|
8308
8323
|
/**
|
|
8309
8324
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -8499,7 +8514,7 @@ var ReactDOMSelection = {
|
|
|
8499
8514
|
};
|
|
8500
8515
|
|
|
8501
8516
|
module.exports = ReactDOMSelection;
|
|
8502
|
-
},{"
|
|
8517
|
+
},{"130":130,"131":131,"147":147}],50:[function(_dereq_,module,exports){
|
|
8503
8518
|
/**
|
|
8504
8519
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8505
8520
|
* All rights reserved.
|
|
@@ -8547,9 +8562,9 @@ var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
|
8547
8562
|
var ReactMount = _dereq_(72);
|
|
8548
8563
|
|
|
8549
8564
|
var assign = _dereq_(24);
|
|
8550
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
8551
|
-
var setTextContent = _dereq_(
|
|
8552
|
-
var validateDOMNesting = _dereq_(
|
|
8565
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
8566
|
+
var setTextContent = _dereq_(139);
|
|
8567
|
+
var validateDOMNesting = _dereq_(144);
|
|
8553
8568
|
|
|
8554
8569
|
/**
|
|
8555
8570
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -8654,7 +8669,7 @@ assign(ReactDOMTextComponent.prototype, {
|
|
|
8654
8669
|
});
|
|
8655
8670
|
|
|
8656
8671
|
module.exports = ReactDOMTextComponent;
|
|
8657
|
-
},{"11":11,"
|
|
8672
|
+
},{"11":11,"121":121,"139":139,"144":144,"24":24,"35":35,"72":72,"9":9}],52:[function(_dereq_,module,exports){
|
|
8658
8673
|
/**
|
|
8659
8674
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8660
8675
|
* All rights reserved.
|
|
@@ -8673,8 +8688,8 @@ var ReactDOMIDOperations = _dereq_(45);
|
|
|
8673
8688
|
var ReactUpdates = _dereq_(96);
|
|
8674
8689
|
|
|
8675
8690
|
var assign = _dereq_(24);
|
|
8676
|
-
var invariant = _dereq_(
|
|
8677
|
-
var warning = _dereq_(
|
|
8691
|
+
var invariant = _dereq_(161);
|
|
8692
|
+
var warning = _dereq_(173);
|
|
8678
8693
|
|
|
8679
8694
|
function forceUpdateIfMounted() {
|
|
8680
8695
|
if (this._rootNodeID) {
|
|
@@ -8768,7 +8783,7 @@ function _handleChange(event) {
|
|
|
8768
8783
|
}
|
|
8769
8784
|
|
|
8770
8785
|
module.exports = ReactDOMTextarea;
|
|
8771
|
-
},{"
|
|
8786
|
+
},{"161":161,"173":173,"23":23,"24":24,"45":45,"96":96}],53:[function(_dereq_,module,exports){
|
|
8772
8787
|
/**
|
|
8773
8788
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8774
8789
|
* All rights reserved.
|
|
@@ -8786,7 +8801,7 @@ var ReactUpdates = _dereq_(96);
|
|
|
8786
8801
|
var Transaction = _dereq_(113);
|
|
8787
8802
|
|
|
8788
8803
|
var assign = _dereq_(24);
|
|
8789
|
-
var emptyFunction = _dereq_(
|
|
8804
|
+
var emptyFunction = _dereq_(153);
|
|
8790
8805
|
|
|
8791
8806
|
var RESET_BATCHED_UPDATES = {
|
|
8792
8807
|
initialize: emptyFunction,
|
|
@@ -8836,7 +8851,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
8836
8851
|
};
|
|
8837
8852
|
|
|
8838
8853
|
module.exports = ReactDefaultBatchingStrategy;
|
|
8839
|
-
},{"113":113,"
|
|
8854
|
+
},{"113":113,"153":153,"24":24,"96":96}],54:[function(_dereq_,module,exports){
|
|
8840
8855
|
/**
|
|
8841
8856
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8842
8857
|
* All rights reserved.
|
|
@@ -8855,7 +8870,7 @@ var ChangeEventPlugin = _dereq_(7);
|
|
|
8855
8870
|
var ClientReactRootIndex = _dereq_(8);
|
|
8856
8871
|
var DefaultEventPluginOrder = _dereq_(13);
|
|
8857
8872
|
var EnterLeaveEventPlugin = _dereq_(14);
|
|
8858
|
-
var ExecutionEnvironment = _dereq_(
|
|
8873
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
8859
8874
|
var HTMLDOMPropertyConfig = _dereq_(21);
|
|
8860
8875
|
var ReactBrowserComponentMixin = _dereq_(27);
|
|
8861
8876
|
var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
@@ -8934,7 +8949,7 @@ function inject() {
|
|
|
8934
8949
|
module.exports = {
|
|
8935
8950
|
inject: inject
|
|
8936
8951
|
};
|
|
8937
|
-
},{"100":100,"101":101,"13":13,"14":14,"
|
|
8952
|
+
},{"100":100,"101":101,"13":13,"14":14,"147":147,"21":21,"27":27,"3":3,"35":35,"42":42,"51":51,"53":53,"55":55,"63":63,"65":65,"67":67,"7":7,"72":72,"8":8,"83":83,"98":98,"99":99}],55:[function(_dereq_,module,exports){
|
|
8938
8953
|
/**
|
|
8939
8954
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8940
8955
|
* All rights reserved.
|
|
@@ -8954,7 +8969,7 @@ var ReactDefaultPerfAnalysis = _dereq_(56);
|
|
|
8954
8969
|
var ReactMount = _dereq_(72);
|
|
8955
8970
|
var ReactPerf = _dereq_(78);
|
|
8956
8971
|
|
|
8957
|
-
var performanceNow = _dereq_(
|
|
8972
|
+
var performanceNow = _dereq_(170);
|
|
8958
8973
|
|
|
8959
8974
|
function roundFloat(val) {
|
|
8960
8975
|
return Math.floor(val * 100) / 100;
|
|
@@ -9172,7 +9187,7 @@ var ReactDefaultPerf = {
|
|
|
9172
9187
|
};
|
|
9173
9188
|
|
|
9174
9189
|
module.exports = ReactDefaultPerf;
|
|
9175
|
-
},{"10":10,"
|
|
9190
|
+
},{"10":10,"170":170,"56":56,"72":72,"78":78}],56:[function(_dereq_,module,exports){
|
|
9176
9191
|
/**
|
|
9177
9192
|
* Copyright 2013-2015, Facebook, Inc.
|
|
9178
9193
|
* All rights reserved.
|
|
@@ -9200,7 +9215,9 @@ var DOM_OPERATION_TYPES = {
|
|
|
9200
9215
|
'setValueForProperty': 'update attribute',
|
|
9201
9216
|
'setValueForAttribute': 'update attribute',
|
|
9202
9217
|
'deleteValueForProperty': 'remove attribute',
|
|
9203
|
-
'
|
|
9218
|
+
'setValueForStyles': 'update styles',
|
|
9219
|
+
'replaceNodeWithMarkup': 'replace',
|
|
9220
|
+
'updateTextContent': 'set textContent'
|
|
9204
9221
|
};
|
|
9205
9222
|
|
|
9206
9223
|
function getTotalTime(measurements) {
|
|
@@ -9389,6 +9406,7 @@ module.exports = ReactDefaultPerfAnalysis;
|
|
|
9389
9406
|
var ReactCurrentOwner = _dereq_(39);
|
|
9390
9407
|
|
|
9391
9408
|
var assign = _dereq_(24);
|
|
9409
|
+
var canDefineProperty = _dereq_(117);
|
|
9392
9410
|
|
|
9393
9411
|
// The Symbol used to tag the ReactElement type. If there is no native Symbol
|
|
9394
9412
|
// nor polyfill, then a plain number is used for performance.
|
|
@@ -9401,16 +9419,6 @@ var RESERVED_PROPS = {
|
|
|
9401
9419
|
__source: true
|
|
9402
9420
|
};
|
|
9403
9421
|
|
|
9404
|
-
var canDefineProperty = false;
|
|
9405
|
-
if ("development" !== 'production') {
|
|
9406
|
-
try {
|
|
9407
|
-
Object.defineProperty({}, 'x', {});
|
|
9408
|
-
canDefineProperty = true;
|
|
9409
|
-
} catch (x) {
|
|
9410
|
-
// IE will fail on defineProperty
|
|
9411
|
-
}
|
|
9412
|
-
}
|
|
9413
|
-
|
|
9414
9422
|
/**
|
|
9415
9423
|
* Base constructor for all React elements. This is only used to make this
|
|
9416
9424
|
* work with a dynamic instanceof check. Nothing should live on this prototype.
|
|
@@ -9629,7 +9637,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
9629
9637
|
};
|
|
9630
9638
|
|
|
9631
9639
|
module.exports = ReactElement;
|
|
9632
|
-
},{"24":24,"39":39}],58:[function(_dereq_,module,exports){
|
|
9640
|
+
},{"117":117,"24":24,"39":39}],58:[function(_dereq_,module,exports){
|
|
9633
9641
|
/**
|
|
9634
9642
|
* Copyright 2014-2015, Facebook, Inc.
|
|
9635
9643
|
* All rights reserved.
|
|
@@ -9655,9 +9663,10 @@ var ReactPropTypeLocations = _dereq_(81);
|
|
|
9655
9663
|
var ReactPropTypeLocationNames = _dereq_(80);
|
|
9656
9664
|
var ReactCurrentOwner = _dereq_(39);
|
|
9657
9665
|
|
|
9658
|
-
var
|
|
9659
|
-
var
|
|
9660
|
-
var
|
|
9666
|
+
var canDefineProperty = _dereq_(117);
|
|
9667
|
+
var getIteratorFn = _dereq_(129);
|
|
9668
|
+
var invariant = _dereq_(161);
|
|
9669
|
+
var warning = _dereq_(173);
|
|
9661
9670
|
|
|
9662
9671
|
function getDeclarationErrorAddendum() {
|
|
9663
9672
|
if (ReactCurrentOwner.current) {
|
|
@@ -9881,7 +9890,7 @@ var ReactElementValidator = {
|
|
|
9881
9890
|
validatedFactory.type = type;
|
|
9882
9891
|
|
|
9883
9892
|
if ("development" !== 'production') {
|
|
9884
|
-
|
|
9893
|
+
if (canDefineProperty) {
|
|
9885
9894
|
Object.defineProperty(validatedFactory, 'type', {
|
|
9886
9895
|
enumerable: false,
|
|
9887
9896
|
get: function () {
|
|
@@ -9892,8 +9901,6 @@ var ReactElementValidator = {
|
|
|
9892
9901
|
return type;
|
|
9893
9902
|
}
|
|
9894
9903
|
});
|
|
9895
|
-
} catch (x) {
|
|
9896
|
-
// IE will fail on defineProperty (es5-shim/sham too)
|
|
9897
9904
|
}
|
|
9898
9905
|
}
|
|
9899
9906
|
|
|
@@ -9912,7 +9919,7 @@ var ReactElementValidator = {
|
|
|
9912
9919
|
};
|
|
9913
9920
|
|
|
9914
9921
|
module.exports = ReactElementValidator;
|
|
9915
|
-
},{"
|
|
9922
|
+
},{"117":117,"129":129,"161":161,"173":173,"39":39,"57":57,"80":80,"81":81}],59:[function(_dereq_,module,exports){
|
|
9916
9923
|
/**
|
|
9917
9924
|
* Copyright 2014-2015, Facebook, Inc.
|
|
9918
9925
|
* All rights reserved.
|
|
@@ -10076,13 +10083,16 @@ if ("development" !== 'production') {
|
|
|
10076
10083
|
* To help development we can get better devtools integration by simulating a
|
|
10077
10084
|
* real browser event.
|
|
10078
10085
|
*/
|
|
10079
|
-
if (typeof window !== 'undefined' && typeof window.dispatchEvent === 'function' && typeof
|
|
10086
|
+
if (typeof window !== 'undefined' && typeof window.dispatchEvent === 'function' && typeof document !== 'undefined' && typeof document.createEvent === 'function') {
|
|
10080
10087
|
var fakeNode = document.createElement('react');
|
|
10081
10088
|
ReactErrorUtils.invokeGuardedCallback = function (name, func, a, b) {
|
|
10082
10089
|
var boundFunc = func.bind(null, a, b);
|
|
10083
|
-
|
|
10084
|
-
fakeNode.
|
|
10085
|
-
|
|
10090
|
+
var evtType = 'react-' + name;
|
|
10091
|
+
fakeNode.addEventListener(evtType, boundFunc, false);
|
|
10092
|
+
var evt = document.createEvent('Event');
|
|
10093
|
+
evt.initEvent(evtType, false, false);
|
|
10094
|
+
fakeNode.dispatchEvent(evt);
|
|
10095
|
+
fakeNode.removeEventListener(evtType, boundFunc, false);
|
|
10086
10096
|
};
|
|
10087
10097
|
}
|
|
10088
10098
|
}
|
|
@@ -10142,16 +10152,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
10142
10152
|
|
|
10143
10153
|
'use strict';
|
|
10144
10154
|
|
|
10145
|
-
var EventListener = _dereq_(
|
|
10146
|
-
var ExecutionEnvironment = _dereq_(
|
|
10155
|
+
var EventListener = _dereq_(146);
|
|
10156
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
10147
10157
|
var PooledClass = _dereq_(25);
|
|
10148
10158
|
var ReactInstanceHandles = _dereq_(67);
|
|
10149
10159
|
var ReactMount = _dereq_(72);
|
|
10150
10160
|
var ReactUpdates = _dereq_(96);
|
|
10151
10161
|
|
|
10152
10162
|
var assign = _dereq_(24);
|
|
10153
|
-
var getEventTarget = _dereq_(
|
|
10154
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
10163
|
+
var getEventTarget = _dereq_(128);
|
|
10164
|
+
var getUnboundedScrollPosition = _dereq_(158);
|
|
10155
10165
|
|
|
10156
10166
|
var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
|
|
10157
10167
|
|
|
@@ -10339,7 +10349,7 @@ var ReactEventListener = {
|
|
|
10339
10349
|
};
|
|
10340
10350
|
|
|
10341
10351
|
module.exports = ReactEventListener;
|
|
10342
|
-
},{"
|
|
10352
|
+
},{"128":128,"146":146,"147":147,"158":158,"24":24,"25":25,"67":67,"72":72,"96":96}],64:[function(_dereq_,module,exports){
|
|
10343
10353
|
/**
|
|
10344
10354
|
* Copyright 2015, Facebook, Inc.
|
|
10345
10355
|
* All rights reserved.
|
|
@@ -10356,9 +10366,9 @@ module.exports = ReactEventListener;
|
|
|
10356
10366
|
var ReactChildren = _dereq_(32);
|
|
10357
10367
|
var ReactElement = _dereq_(57);
|
|
10358
10368
|
|
|
10359
|
-
var emptyFunction = _dereq_(
|
|
10360
|
-
var invariant = _dereq_(
|
|
10361
|
-
var warning = _dereq_(
|
|
10369
|
+
var emptyFunction = _dereq_(153);
|
|
10370
|
+
var invariant = _dereq_(161);
|
|
10371
|
+
var warning = _dereq_(173);
|
|
10362
10372
|
|
|
10363
10373
|
/**
|
|
10364
10374
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -10404,7 +10414,7 @@ var ReactFragment = {
|
|
|
10404
10414
|
};
|
|
10405
10415
|
|
|
10406
10416
|
module.exports = ReactFragment;
|
|
10407
|
-
},{"
|
|
10417
|
+
},{"153":153,"161":161,"173":173,"32":32,"57":57}],65:[function(_dereq_,module,exports){
|
|
10408
10418
|
/**
|
|
10409
10419
|
* Copyright 2013-2015, Facebook, Inc.
|
|
10410
10420
|
* All rights reserved.
|
|
@@ -10459,9 +10469,9 @@ module.exports = ReactInjection;
|
|
|
10459
10469
|
|
|
10460
10470
|
var ReactDOMSelection = _dereq_(49);
|
|
10461
10471
|
|
|
10462
|
-
var containsNode = _dereq_(
|
|
10463
|
-
var focusNode = _dereq_(
|
|
10464
|
-
var getActiveElement = _dereq_(
|
|
10472
|
+
var containsNode = _dereq_(150);
|
|
10473
|
+
var focusNode = _dereq_(155);
|
|
10474
|
+
var getActiveElement = _dereq_(156);
|
|
10465
10475
|
|
|
10466
10476
|
function isInDocument(node) {
|
|
10467
10477
|
return containsNode(document.documentElement, node);
|
|
@@ -10568,7 +10578,7 @@ var ReactInputSelection = {
|
|
|
10568
10578
|
};
|
|
10569
10579
|
|
|
10570
10580
|
module.exports = ReactInputSelection;
|
|
10571
|
-
},{"
|
|
10581
|
+
},{"150":150,"155":155,"156":156,"49":49}],67:[function(_dereq_,module,exports){
|
|
10572
10582
|
/**
|
|
10573
10583
|
* Copyright 2013-2015, Facebook, Inc.
|
|
10574
10584
|
* All rights reserved.
|
|
@@ -10585,7 +10595,7 @@ module.exports = ReactInputSelection;
|
|
|
10585
10595
|
|
|
10586
10596
|
var ReactRootIndex = _dereq_(86);
|
|
10587
10597
|
|
|
10588
|
-
var invariant = _dereq_(
|
|
10598
|
+
var invariant = _dereq_(161);
|
|
10589
10599
|
|
|
10590
10600
|
var SEPARATOR = '.';
|
|
10591
10601
|
var SEPARATOR_LENGTH = SEPARATOR.length;
|
|
@@ -10871,7 +10881,7 @@ var ReactInstanceHandles = {
|
|
|
10871
10881
|
};
|
|
10872
10882
|
|
|
10873
10883
|
module.exports = ReactInstanceHandles;
|
|
10874
|
-
},{"
|
|
10884
|
+
},{"161":161,"86":86}],68:[function(_dereq_,module,exports){
|
|
10875
10885
|
/**
|
|
10876
10886
|
* Copyright 2013-2015, Facebook, Inc.
|
|
10877
10887
|
* All rights reserved.
|
|
@@ -10943,7 +10953,7 @@ var ReactPropTypes = _dereq_(82);
|
|
|
10943
10953
|
var ReactVersion = _dereq_(97);
|
|
10944
10954
|
|
|
10945
10955
|
var assign = _dereq_(24);
|
|
10946
|
-
var onlyChild = _dereq_(
|
|
10956
|
+
var onlyChild = _dereq_(135);
|
|
10947
10957
|
|
|
10948
10958
|
var createElement = ReactElement.createElement;
|
|
10949
10959
|
var createFactory = ReactElement.createFactory;
|
|
@@ -10994,7 +11004,7 @@ var React = {
|
|
|
10994
11004
|
};
|
|
10995
11005
|
|
|
10996
11006
|
module.exports = React;
|
|
10997
|
-
},{"
|
|
11007
|
+
},{"135":135,"24":24,"32":32,"33":33,"34":34,"43":43,"57":57,"58":58,"82":82,"97":97}],70:[function(_dereq_,module,exports){
|
|
10998
11008
|
/**
|
|
10999
11009
|
* Copyright 2013-2015, Facebook, Inc.
|
|
11000
11010
|
* All rights reserved.
|
|
@@ -11139,14 +11149,14 @@ var ReactUpdateQueue = _dereq_(95);
|
|
|
11139
11149
|
var ReactUpdates = _dereq_(96);
|
|
11140
11150
|
|
|
11141
11151
|
var assign = _dereq_(24);
|
|
11142
|
-
var emptyObject = _dereq_(
|
|
11143
|
-
var containsNode = _dereq_(
|
|
11144
|
-
var instantiateReactComponent = _dereq_(
|
|
11145
|
-
var invariant = _dereq_(
|
|
11146
|
-
var setInnerHTML = _dereq_(
|
|
11147
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
11148
|
-
var validateDOMNesting = _dereq_(
|
|
11149
|
-
var warning = _dereq_(
|
|
11152
|
+
var emptyObject = _dereq_(154);
|
|
11153
|
+
var containsNode = _dereq_(150);
|
|
11154
|
+
var instantiateReactComponent = _dereq_(132);
|
|
11155
|
+
var invariant = _dereq_(161);
|
|
11156
|
+
var setInnerHTML = _dereq_(138);
|
|
11157
|
+
var shouldUpdateReactComponent = _dereq_(141);
|
|
11158
|
+
var validateDOMNesting = _dereq_(144);
|
|
11159
|
+
var warning = _dereq_(173);
|
|
11150
11160
|
|
|
11151
11161
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
11152
11162
|
var nodeCache = {};
|
|
@@ -11629,7 +11639,12 @@ var ReactMount = {
|
|
|
11629
11639
|
var prevWrappedElement = prevComponent._currentElement;
|
|
11630
11640
|
var prevElement = prevWrappedElement.props;
|
|
11631
11641
|
if (shouldUpdateReactComponent(prevElement, nextElement)) {
|
|
11632
|
-
|
|
11642
|
+
var publicInst = prevComponent._renderedComponent.getPublicInstance();
|
|
11643
|
+
var updatedCallback = callback && function () {
|
|
11644
|
+
callback.call(publicInst);
|
|
11645
|
+
};
|
|
11646
|
+
ReactMount._updateRootComponent(prevComponent, nextWrappedElement, container, updatedCallback);
|
|
11647
|
+
return publicInst;
|
|
11633
11648
|
} else {
|
|
11634
11649
|
ReactMount.unmountComponentAtNode(container);
|
|
11635
11650
|
}
|
|
@@ -11956,7 +11971,7 @@ ReactPerf.measureMethods(ReactMount, 'ReactMount', {
|
|
|
11956
11971
|
});
|
|
11957
11972
|
|
|
11958
11973
|
module.exports = ReactMount;
|
|
11959
|
-
},{"10":10,"
|
|
11974
|
+
},{"10":10,"132":132,"138":138,"141":141,"144":144,"150":150,"154":154,"161":161,"173":173,"24":24,"28":28,"39":39,"44":44,"57":57,"60":60,"67":67,"68":68,"71":71,"78":78,"84":84,"95":95,"96":96}],73:[function(_dereq_,module,exports){
|
|
11960
11975
|
/**
|
|
11961
11976
|
* Copyright 2013-2015, Facebook, Inc.
|
|
11962
11977
|
* All rights reserved.
|
|
@@ -11978,7 +11993,7 @@ var ReactCurrentOwner = _dereq_(39);
|
|
|
11978
11993
|
var ReactReconciler = _dereq_(84);
|
|
11979
11994
|
var ReactChildReconciler = _dereq_(31);
|
|
11980
11995
|
|
|
11981
|
-
var flattenChildren = _dereq_(
|
|
11996
|
+
var flattenChildren = _dereq_(123);
|
|
11982
11997
|
|
|
11983
11998
|
/**
|
|
11984
11999
|
* Updating children of a component may trigger recursive updates. The depth is
|
|
@@ -12453,7 +12468,7 @@ var ReactMultiChild = {
|
|
|
12453
12468
|
};
|
|
12454
12469
|
|
|
12455
12470
|
module.exports = ReactMultiChild;
|
|
12456
|
-
},{"
|
|
12471
|
+
},{"123":123,"31":31,"36":36,"39":39,"74":74,"84":84}],74:[function(_dereq_,module,exports){
|
|
12457
12472
|
/**
|
|
12458
12473
|
* Copyright 2013-2015, Facebook, Inc.
|
|
12459
12474
|
* All rights reserved.
|
|
@@ -12467,7 +12482,7 @@ module.exports = ReactMultiChild;
|
|
|
12467
12482
|
|
|
12468
12483
|
'use strict';
|
|
12469
12484
|
|
|
12470
|
-
var keyMirror = _dereq_(
|
|
12485
|
+
var keyMirror = _dereq_(165);
|
|
12471
12486
|
|
|
12472
12487
|
/**
|
|
12473
12488
|
* When a component's children are updated, a series of update configuration
|
|
@@ -12486,7 +12501,7 @@ var ReactMultiChildUpdateTypes = keyMirror({
|
|
|
12486
12501
|
});
|
|
12487
12502
|
|
|
12488
12503
|
module.exports = ReactMultiChildUpdateTypes;
|
|
12489
|
-
},{"
|
|
12504
|
+
},{"165":165}],75:[function(_dereq_,module,exports){
|
|
12490
12505
|
/**
|
|
12491
12506
|
* Copyright 2014-2015, Facebook, Inc.
|
|
12492
12507
|
* All rights reserved.
|
|
@@ -12501,7 +12516,7 @@ module.exports = ReactMultiChildUpdateTypes;
|
|
|
12501
12516
|
'use strict';
|
|
12502
12517
|
|
|
12503
12518
|
var assign = _dereq_(24);
|
|
12504
|
-
var invariant = _dereq_(
|
|
12519
|
+
var invariant = _dereq_(161);
|
|
12505
12520
|
|
|
12506
12521
|
var autoGenerateWrapperClass = null;
|
|
12507
12522
|
var genericComponentClass = null;
|
|
@@ -12581,7 +12596,7 @@ var ReactNativeComponent = {
|
|
|
12581
12596
|
};
|
|
12582
12597
|
|
|
12583
12598
|
module.exports = ReactNativeComponent;
|
|
12584
|
-
},{"
|
|
12599
|
+
},{"161":161,"24":24}],76:[function(_dereq_,module,exports){
|
|
12585
12600
|
/**
|
|
12586
12601
|
* Copyright 2015, Facebook, Inc.
|
|
12587
12602
|
* All rights reserved.
|
|
@@ -12595,7 +12610,7 @@ module.exports = ReactNativeComponent;
|
|
|
12595
12610
|
|
|
12596
12611
|
'use strict';
|
|
12597
12612
|
|
|
12598
|
-
var warning = _dereq_(
|
|
12613
|
+
var warning = _dereq_(173);
|
|
12599
12614
|
|
|
12600
12615
|
function warnTDZ(publicInstance, callerName) {
|
|
12601
12616
|
if ("development" !== 'production') {
|
|
@@ -12700,7 +12715,7 @@ var ReactNoopUpdateQueue = {
|
|
|
12700
12715
|
};
|
|
12701
12716
|
|
|
12702
12717
|
module.exports = ReactNoopUpdateQueue;
|
|
12703
|
-
},{"
|
|
12718
|
+
},{"173":173}],77:[function(_dereq_,module,exports){
|
|
12704
12719
|
/**
|
|
12705
12720
|
* Copyright 2013-2015, Facebook, Inc.
|
|
12706
12721
|
* All rights reserved.
|
|
@@ -12714,7 +12729,7 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
12714
12729
|
|
|
12715
12730
|
'use strict';
|
|
12716
12731
|
|
|
12717
|
-
var invariant = _dereq_(
|
|
12732
|
+
var invariant = _dereq_(161);
|
|
12718
12733
|
|
|
12719
12734
|
/**
|
|
12720
12735
|
* ReactOwners are capable of storing references to owned components.
|
|
@@ -12792,7 +12807,7 @@ var ReactOwner = {
|
|
|
12792
12807
|
};
|
|
12793
12808
|
|
|
12794
12809
|
module.exports = ReactOwner;
|
|
12795
|
-
},{"
|
|
12810
|
+
},{"161":161}],78:[function(_dereq_,module,exports){
|
|
12796
12811
|
/**
|
|
12797
12812
|
* Copyright 2013-2015, Facebook, Inc.
|
|
12798
12813
|
* All rights reserved.
|
|
@@ -12904,8 +12919,8 @@ module.exports = ReactPerf;
|
|
|
12904
12919
|
'use strict';
|
|
12905
12920
|
|
|
12906
12921
|
var assign = _dereq_(24);
|
|
12907
|
-
var emptyFunction = _dereq_(
|
|
12908
|
-
var joinClasses = _dereq_(
|
|
12922
|
+
var emptyFunction = _dereq_(153);
|
|
12923
|
+
var joinClasses = _dereq_(164);
|
|
12909
12924
|
|
|
12910
12925
|
/**
|
|
12911
12926
|
* Creates a transfer strategy that will merge prop values using the supplied
|
|
@@ -12998,7 +13013,7 @@ var ReactPropTransferer = {
|
|
|
12998
13013
|
};
|
|
12999
13014
|
|
|
13000
13015
|
module.exports = ReactPropTransferer;
|
|
13001
|
-
},{"
|
|
13016
|
+
},{"153":153,"164":164,"24":24}],80:[function(_dereq_,module,exports){
|
|
13002
13017
|
/**
|
|
13003
13018
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13004
13019
|
* All rights reserved.
|
|
@@ -13037,7 +13052,7 @@ module.exports = ReactPropTypeLocationNames;
|
|
|
13037
13052
|
|
|
13038
13053
|
'use strict';
|
|
13039
13054
|
|
|
13040
|
-
var keyMirror = _dereq_(
|
|
13055
|
+
var keyMirror = _dereq_(165);
|
|
13041
13056
|
|
|
13042
13057
|
var ReactPropTypeLocations = keyMirror({
|
|
13043
13058
|
prop: null,
|
|
@@ -13046,7 +13061,7 @@ var ReactPropTypeLocations = keyMirror({
|
|
|
13046
13061
|
});
|
|
13047
13062
|
|
|
13048
13063
|
module.exports = ReactPropTypeLocations;
|
|
13049
|
-
},{"
|
|
13064
|
+
},{"165":165}],82:[function(_dereq_,module,exports){
|
|
13050
13065
|
/**
|
|
13051
13066
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13052
13067
|
* All rights reserved.
|
|
@@ -13063,8 +13078,8 @@ module.exports = ReactPropTypeLocations;
|
|
|
13063
13078
|
var ReactElement = _dereq_(57);
|
|
13064
13079
|
var ReactPropTypeLocationNames = _dereq_(80);
|
|
13065
13080
|
|
|
13066
|
-
var emptyFunction = _dereq_(
|
|
13067
|
-
var getIteratorFn = _dereq_(
|
|
13081
|
+
var emptyFunction = _dereq_(153);
|
|
13082
|
+
var getIteratorFn = _dereq_(129);
|
|
13068
13083
|
|
|
13069
13084
|
/**
|
|
13070
13085
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -13403,7 +13418,7 @@ function getClassName(propValue) {
|
|
|
13403
13418
|
}
|
|
13404
13419
|
|
|
13405
13420
|
module.exports = ReactPropTypes;
|
|
13406
|
-
},{"
|
|
13421
|
+
},{"129":129,"153":153,"57":57,"80":80}],83:[function(_dereq_,module,exports){
|
|
13407
13422
|
/**
|
|
13408
13423
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13409
13424
|
* All rights reserved.
|
|
@@ -13818,9 +13833,9 @@ var ReactServerBatchingStrategy = _dereq_(87);
|
|
|
13818
13833
|
var ReactServerRenderingTransaction = _dereq_(89);
|
|
13819
13834
|
var ReactUpdates = _dereq_(96);
|
|
13820
13835
|
|
|
13821
|
-
var emptyObject = _dereq_(
|
|
13822
|
-
var instantiateReactComponent = _dereq_(
|
|
13823
|
-
var invariant = _dereq_(
|
|
13836
|
+
var emptyObject = _dereq_(154);
|
|
13837
|
+
var instantiateReactComponent = _dereq_(132);
|
|
13838
|
+
var invariant = _dereq_(161);
|
|
13824
13839
|
|
|
13825
13840
|
/**
|
|
13826
13841
|
* @param {ReactElement} element
|
|
@@ -13880,7 +13895,7 @@ module.exports = {
|
|
|
13880
13895
|
renderToString: renderToString,
|
|
13881
13896
|
renderToStaticMarkup: renderToStaticMarkup
|
|
13882
13897
|
};
|
|
13883
|
-
},{"
|
|
13898
|
+
},{"132":132,"154":154,"161":161,"53":53,"57":57,"67":67,"71":71,"87":87,"89":89,"96":96}],89:[function(_dereq_,module,exports){
|
|
13884
13899
|
/**
|
|
13885
13900
|
* Copyright 2014-2015, Facebook, Inc.
|
|
13886
13901
|
* All rights reserved.
|
|
@@ -13900,7 +13915,7 @@ var CallbackQueue = _dereq_(6);
|
|
|
13900
13915
|
var Transaction = _dereq_(113);
|
|
13901
13916
|
|
|
13902
13917
|
var assign = _dereq_(24);
|
|
13903
|
-
var emptyFunction = _dereq_(
|
|
13918
|
+
var emptyFunction = _dereq_(153);
|
|
13904
13919
|
|
|
13905
13920
|
/**
|
|
13906
13921
|
* Provides a `CallbackQueue` queue for collecting `onDOMReady` callbacks
|
|
@@ -13968,7 +13983,7 @@ assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
13968
13983
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
13969
13984
|
|
|
13970
13985
|
module.exports = ReactServerRenderingTransaction;
|
|
13971
|
-
},{"113":113,"
|
|
13986
|
+
},{"113":113,"153":153,"24":24,"25":25,"6":6}],90:[function(_dereq_,module,exports){
|
|
13972
13987
|
/**
|
|
13973
13988
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13974
13989
|
* All rights reserved.
|
|
@@ -14102,9 +14117,9 @@ var ReactUpdates = _dereq_(96);
|
|
|
14102
14117
|
var SyntheticEvent = _dereq_(105);
|
|
14103
14118
|
|
|
14104
14119
|
var assign = _dereq_(24);
|
|
14105
|
-
var emptyObject = _dereq_(
|
|
14106
|
-
var findDOMNode = _dereq_(
|
|
14107
|
-
var invariant = _dereq_(
|
|
14120
|
+
var emptyObject = _dereq_(154);
|
|
14121
|
+
var findDOMNode = _dereq_(122);
|
|
14122
|
+
var invariant = _dereq_(161);
|
|
14108
14123
|
|
|
14109
14124
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
14110
14125
|
|
|
@@ -14161,8 +14176,6 @@ var ReactTestUtils = {
|
|
|
14161
14176
|
},
|
|
14162
14177
|
|
|
14163
14178
|
isDOMComponent: function (inst) {
|
|
14164
|
-
// TODO: Fix this heuristic. It's just here because composites can currently
|
|
14165
|
-
// pretend to be DOM components.
|
|
14166
14179
|
return !!(inst && inst.nodeType === 1 && inst.tagName);
|
|
14167
14180
|
},
|
|
14168
14181
|
|
|
@@ -14233,9 +14246,14 @@ var ReactTestUtils = {
|
|
|
14233
14246
|
}
|
|
14234
14247
|
return ReactTestUtils.findAllInRenderedTree(root, function (inst) {
|
|
14235
14248
|
if (ReactTestUtils.isDOMComponent(inst)) {
|
|
14236
|
-
var
|
|
14237
|
-
|
|
14238
|
-
|
|
14249
|
+
var className = inst.className;
|
|
14250
|
+
if (typeof className !== 'string') {
|
|
14251
|
+
// SVG, probably.
|
|
14252
|
+
className = inst.getAttribute('class') || '';
|
|
14253
|
+
}
|
|
14254
|
+
var classList = className.split(/\s+/);
|
|
14255
|
+
return classNames.every(function (name) {
|
|
14256
|
+
return classList.indexOf(name) !== -1;
|
|
14239
14257
|
});
|
|
14240
14258
|
}
|
|
14241
14259
|
return false;
|
|
@@ -14390,8 +14408,11 @@ NoopInternalComponent.prototype = {
|
|
|
14390
14408
|
this._currentElement = element;
|
|
14391
14409
|
},
|
|
14392
14410
|
|
|
14393
|
-
unmountComponent: function () {}
|
|
14411
|
+
unmountComponent: function () {},
|
|
14394
14412
|
|
|
14413
|
+
getPublicInstance: function () {
|
|
14414
|
+
return null;
|
|
14415
|
+
}
|
|
14395
14416
|
};
|
|
14396
14417
|
|
|
14397
14418
|
var ShallowComponentWrapper = function () {};
|
|
@@ -14541,7 +14562,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
14541
14562
|
});
|
|
14542
14563
|
|
|
14543
14564
|
module.exports = ReactTestUtils;
|
|
14544
|
-
},{"105":105,"
|
|
14565
|
+
},{"105":105,"122":122,"15":15,"154":154,"16":16,"161":161,"19":19,"24":24,"26":26,"28":28,"38":38,"40":40,"57":57,"67":67,"68":68,"72":72,"96":96}],92:[function(_dereq_,module,exports){
|
|
14545
14566
|
/**
|
|
14546
14567
|
* Copyright 2013-2015, Facebook, Inc.
|
|
14547
14568
|
* All rights reserved.
|
|
@@ -14556,7 +14577,7 @@ module.exports = ReactTestUtils;
|
|
|
14556
14577
|
|
|
14557
14578
|
'use strict';
|
|
14558
14579
|
|
|
14559
|
-
var flattenChildren = _dereq_(
|
|
14580
|
+
var flattenChildren = _dereq_(123);
|
|
14560
14581
|
|
|
14561
14582
|
var ReactTransitionChildMapping = {
|
|
14562
14583
|
/**
|
|
@@ -14640,7 +14661,7 @@ var ReactTransitionChildMapping = {
|
|
|
14640
14661
|
};
|
|
14641
14662
|
|
|
14642
14663
|
module.exports = ReactTransitionChildMapping;
|
|
14643
|
-
},{"
|
|
14664
|
+
},{"123":123}],93:[function(_dereq_,module,exports){
|
|
14644
14665
|
/**
|
|
14645
14666
|
* Copyright 2013-2015, Facebook, Inc.
|
|
14646
14667
|
* All rights reserved.
|
|
@@ -14654,7 +14675,7 @@ module.exports = ReactTransitionChildMapping;
|
|
|
14654
14675
|
|
|
14655
14676
|
'use strict';
|
|
14656
14677
|
|
|
14657
|
-
var ExecutionEnvironment = _dereq_(
|
|
14678
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
14658
14679
|
|
|
14659
14680
|
/**
|
|
14660
14681
|
* EVENT_NAME_MAP is used to determine which event fired when a
|
|
@@ -14750,7 +14771,7 @@ var ReactTransitionEvents = {
|
|
|
14750
14771
|
};
|
|
14751
14772
|
|
|
14752
14773
|
module.exports = ReactTransitionEvents;
|
|
14753
|
-
},{"
|
|
14774
|
+
},{"147":147}],94:[function(_dereq_,module,exports){
|
|
14754
14775
|
/**
|
|
14755
14776
|
* Copyright 2013-2015, Facebook, Inc.
|
|
14756
14777
|
* All rights reserved.
|
|
@@ -14768,7 +14789,7 @@ var React = _dereq_(26);
|
|
|
14768
14789
|
var ReactTransitionChildMapping = _dereq_(92);
|
|
14769
14790
|
|
|
14770
14791
|
var assign = _dereq_(24);
|
|
14771
|
-
var emptyFunction = _dereq_(
|
|
14792
|
+
var emptyFunction = _dereq_(153);
|
|
14772
14793
|
|
|
14773
14794
|
var ReactTransitionGroup = React.createClass({
|
|
14774
14795
|
displayName: 'ReactTransitionGroup',
|
|
@@ -14956,7 +14977,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
14956
14977
|
});
|
|
14957
14978
|
|
|
14958
14979
|
module.exports = ReactTransitionGroup;
|
|
14959
|
-
},{"
|
|
14980
|
+
},{"153":153,"24":24,"26":26,"92":92}],95:[function(_dereq_,module,exports){
|
|
14960
14981
|
/**
|
|
14961
14982
|
* Copyright 2015, Facebook, Inc.
|
|
14962
14983
|
* All rights reserved.
|
|
@@ -14976,8 +14997,8 @@ var ReactInstanceMap = _dereq_(68);
|
|
|
14976
14997
|
var ReactUpdates = _dereq_(96);
|
|
14977
14998
|
|
|
14978
14999
|
var assign = _dereq_(24);
|
|
14979
|
-
var invariant = _dereq_(
|
|
14980
|
-
var warning = _dereq_(
|
|
15000
|
+
var invariant = _dereq_(161);
|
|
15001
|
+
var warning = _dereq_(173);
|
|
14981
15002
|
|
|
14982
15003
|
function enqueueUpdate(internalInstance) {
|
|
14983
15004
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -15214,7 +15235,7 @@ var ReactUpdateQueue = {
|
|
|
15214
15235
|
};
|
|
15215
15236
|
|
|
15216
15237
|
module.exports = ReactUpdateQueue;
|
|
15217
|
-
},{"
|
|
15238
|
+
},{"161":161,"173":173,"24":24,"39":39,"57":57,"68":68,"96":96}],96:[function(_dereq_,module,exports){
|
|
15218
15239
|
/**
|
|
15219
15240
|
* Copyright 2013-2015, Facebook, Inc.
|
|
15220
15241
|
* All rights reserved.
|
|
@@ -15235,7 +15256,7 @@ var ReactReconciler = _dereq_(84);
|
|
|
15235
15256
|
var Transaction = _dereq_(113);
|
|
15236
15257
|
|
|
15237
15258
|
var assign = _dereq_(24);
|
|
15238
|
-
var invariant = _dereq_(
|
|
15259
|
+
var invariant = _dereq_(161);
|
|
15239
15260
|
|
|
15240
15261
|
var dirtyComponents = [];
|
|
15241
15262
|
var asapCallbackQueue = CallbackQueue.getPooled();
|
|
@@ -15438,7 +15459,7 @@ var ReactUpdates = {
|
|
|
15438
15459
|
};
|
|
15439
15460
|
|
|
15440
15461
|
module.exports = ReactUpdates;
|
|
15441
|
-
},{"113":113,"
|
|
15462
|
+
},{"113":113,"161":161,"24":24,"25":25,"6":6,"78":78,"84":84}],97:[function(_dereq_,module,exports){
|
|
15442
15463
|
/**
|
|
15443
15464
|
* Copyright 2013-2015, Facebook, Inc.
|
|
15444
15465
|
* All rights reserved.
|
|
@@ -15452,7 +15473,7 @@ module.exports = ReactUpdates;
|
|
|
15452
15473
|
|
|
15453
15474
|
'use strict';
|
|
15454
15475
|
|
|
15455
|
-
module.exports = '0.14.
|
|
15476
|
+
module.exports = '0.14.4';
|
|
15456
15477
|
},{}],98:[function(_dereq_,module,exports){
|
|
15457
15478
|
/**
|
|
15458
15479
|
* Copyright 2013-2015, Facebook, Inc.
|
|
@@ -15597,14 +15618,14 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
15597
15618
|
|
|
15598
15619
|
var EventConstants = _dereq_(15);
|
|
15599
15620
|
var EventPropagators = _dereq_(19);
|
|
15600
|
-
var ExecutionEnvironment = _dereq_(
|
|
15621
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
15601
15622
|
var ReactInputSelection = _dereq_(66);
|
|
15602
15623
|
var SyntheticEvent = _dereq_(105);
|
|
15603
15624
|
|
|
15604
|
-
var getActiveElement = _dereq_(
|
|
15605
|
-
var isTextInputElement = _dereq_(
|
|
15606
|
-
var keyOf = _dereq_(
|
|
15607
|
-
var shallowEqual = _dereq_(
|
|
15625
|
+
var getActiveElement = _dereq_(156);
|
|
15626
|
+
var isTextInputElement = _dereq_(134);
|
|
15627
|
+
var keyOf = _dereq_(166);
|
|
15628
|
+
var shallowEqual = _dereq_(171);
|
|
15608
15629
|
|
|
15609
15630
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15610
15631
|
|
|
@@ -15783,7 +15804,7 @@ var SelectEventPlugin = {
|
|
|
15783
15804
|
};
|
|
15784
15805
|
|
|
15785
15806
|
module.exports = SelectEventPlugin;
|
|
15786
|
-
},{"105":105,"
|
|
15807
|
+
},{"105":105,"134":134,"147":147,"15":15,"156":156,"166":166,"171":171,"19":19,"66":66}],100:[function(_dereq_,module,exports){
|
|
15787
15808
|
/**
|
|
15788
15809
|
* Copyright 2013-2015, Facebook, Inc.
|
|
15789
15810
|
* All rights reserved.
|
|
@@ -15828,7 +15849,7 @@ module.exports = ServerReactRootIndex;
|
|
|
15828
15849
|
'use strict';
|
|
15829
15850
|
|
|
15830
15851
|
var EventConstants = _dereq_(15);
|
|
15831
|
-
var EventListener = _dereq_(
|
|
15852
|
+
var EventListener = _dereq_(146);
|
|
15832
15853
|
var EventPropagators = _dereq_(19);
|
|
15833
15854
|
var ReactMount = _dereq_(72);
|
|
15834
15855
|
var SyntheticClipboardEvent = _dereq_(102);
|
|
@@ -15841,10 +15862,10 @@ var SyntheticTouchEvent = _dereq_(110);
|
|
|
15841
15862
|
var SyntheticUIEvent = _dereq_(111);
|
|
15842
15863
|
var SyntheticWheelEvent = _dereq_(112);
|
|
15843
15864
|
|
|
15844
|
-
var emptyFunction = _dereq_(
|
|
15845
|
-
var getEventCharCode = _dereq_(
|
|
15846
|
-
var invariant = _dereq_(
|
|
15847
|
-
var keyOf = _dereq_(
|
|
15865
|
+
var emptyFunction = _dereq_(153);
|
|
15866
|
+
var getEventCharCode = _dereq_(125);
|
|
15867
|
+
var invariant = _dereq_(161);
|
|
15868
|
+
var keyOf = _dereq_(166);
|
|
15848
15869
|
|
|
15849
15870
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15850
15871
|
|
|
@@ -16401,7 +16422,7 @@ var SimpleEventPlugin = {
|
|
|
16401
16422
|
};
|
|
16402
16423
|
|
|
16403
16424
|
module.exports = SimpleEventPlugin;
|
|
16404
|
-
},{"102":102,"104":104,"105":105,"106":106,"108":108,"109":109,"110":110,"111":111,"112":112,"
|
|
16425
|
+
},{"102":102,"104":104,"105":105,"106":106,"108":108,"109":109,"110":110,"111":111,"112":112,"125":125,"146":146,"15":15,"153":153,"161":161,"166":166,"19":19,"72":72}],102:[function(_dereq_,module,exports){
|
|
16405
16426
|
/**
|
|
16406
16427
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16407
16428
|
* All rights reserved.
|
|
@@ -16535,8 +16556,8 @@ module.exports = SyntheticDragEvent;
|
|
|
16535
16556
|
var PooledClass = _dereq_(25);
|
|
16536
16557
|
|
|
16537
16558
|
var assign = _dereq_(24);
|
|
16538
|
-
var emptyFunction = _dereq_(
|
|
16539
|
-
var warning = _dereq_(
|
|
16559
|
+
var emptyFunction = _dereq_(153);
|
|
16560
|
+
var warning = _dereq_(173);
|
|
16540
16561
|
|
|
16541
16562
|
/**
|
|
16542
16563
|
* @interface Event
|
|
@@ -16695,7 +16716,7 @@ SyntheticEvent.augmentClass = function (Class, Interface) {
|
|
|
16695
16716
|
PooledClass.addPoolingTo(SyntheticEvent, PooledClass.fourArgumentPooler);
|
|
16696
16717
|
|
|
16697
16718
|
module.exports = SyntheticEvent;
|
|
16698
|
-
},{"
|
|
16719
|
+
},{"153":153,"173":173,"24":24,"25":25}],106:[function(_dereq_,module,exports){
|
|
16699
16720
|
/**
|
|
16700
16721
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16701
16722
|
* All rights reserved.
|
|
@@ -16789,9 +16810,9 @@ module.exports = SyntheticInputEvent;
|
|
|
16789
16810
|
|
|
16790
16811
|
var SyntheticUIEvent = _dereq_(111);
|
|
16791
16812
|
|
|
16792
|
-
var getEventCharCode = _dereq_(
|
|
16793
|
-
var getEventKey = _dereq_(
|
|
16794
|
-
var getEventModifierState = _dereq_(
|
|
16813
|
+
var getEventCharCode = _dereq_(125);
|
|
16814
|
+
var getEventKey = _dereq_(126);
|
|
16815
|
+
var getEventModifierState = _dereq_(127);
|
|
16795
16816
|
|
|
16796
16817
|
/**
|
|
16797
16818
|
* @interface KeyboardEvent
|
|
@@ -16858,7 +16879,7 @@ function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nat
|
|
|
16858
16879
|
SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);
|
|
16859
16880
|
|
|
16860
16881
|
module.exports = SyntheticKeyboardEvent;
|
|
16861
|
-
},{"111":111,"
|
|
16882
|
+
},{"111":111,"125":125,"126":126,"127":127}],109:[function(_dereq_,module,exports){
|
|
16862
16883
|
/**
|
|
16863
16884
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16864
16885
|
* All rights reserved.
|
|
@@ -16876,7 +16897,7 @@ module.exports = SyntheticKeyboardEvent;
|
|
|
16876
16897
|
var SyntheticUIEvent = _dereq_(111);
|
|
16877
16898
|
var ViewportMetrics = _dereq_(114);
|
|
16878
16899
|
|
|
16879
|
-
var getEventModifierState = _dereq_(
|
|
16900
|
+
var getEventModifierState = _dereq_(127);
|
|
16880
16901
|
|
|
16881
16902
|
/**
|
|
16882
16903
|
* @interface MouseEvent
|
|
@@ -16932,7 +16953,7 @@ function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16932
16953
|
SyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);
|
|
16933
16954
|
|
|
16934
16955
|
module.exports = SyntheticMouseEvent;
|
|
16935
|
-
},{"111":111,"114":114,"
|
|
16956
|
+
},{"111":111,"114":114,"127":127}],110:[function(_dereq_,module,exports){
|
|
16936
16957
|
/**
|
|
16937
16958
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16938
16959
|
* All rights reserved.
|
|
@@ -16949,7 +16970,7 @@ module.exports = SyntheticMouseEvent;
|
|
|
16949
16970
|
|
|
16950
16971
|
var SyntheticUIEvent = _dereq_(111);
|
|
16951
16972
|
|
|
16952
|
-
var getEventModifierState = _dereq_(
|
|
16973
|
+
var getEventModifierState = _dereq_(127);
|
|
16953
16974
|
|
|
16954
16975
|
/**
|
|
16955
16976
|
* @interface TouchEvent
|
|
@@ -16979,7 +17000,7 @@ function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16979
17000
|
SyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);
|
|
16980
17001
|
|
|
16981
17002
|
module.exports = SyntheticTouchEvent;
|
|
16982
|
-
},{"111":111,"
|
|
17003
|
+
},{"111":111,"127":127}],111:[function(_dereq_,module,exports){
|
|
16983
17004
|
/**
|
|
16984
17005
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16985
17006
|
* All rights reserved.
|
|
@@ -16996,7 +17017,7 @@ module.exports = SyntheticTouchEvent;
|
|
|
16996
17017
|
|
|
16997
17018
|
var SyntheticEvent = _dereq_(105);
|
|
16998
17019
|
|
|
16999
|
-
var getEventTarget = _dereq_(
|
|
17020
|
+
var getEventTarget = _dereq_(128);
|
|
17000
17021
|
|
|
17001
17022
|
/**
|
|
17002
17023
|
* @interface UIEvent
|
|
@@ -17040,7 +17061,7 @@ function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEve
|
|
|
17040
17061
|
SyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);
|
|
17041
17062
|
|
|
17042
17063
|
module.exports = SyntheticUIEvent;
|
|
17043
|
-
},{"105":105,"
|
|
17064
|
+
},{"105":105,"128":128}],112:[function(_dereq_,module,exports){
|
|
17044
17065
|
/**
|
|
17045
17066
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17046
17067
|
* All rights reserved.
|
|
@@ -17110,7 +17131,7 @@ module.exports = SyntheticWheelEvent;
|
|
|
17110
17131
|
|
|
17111
17132
|
'use strict';
|
|
17112
17133
|
|
|
17113
|
-
var invariant = _dereq_(
|
|
17134
|
+
var invariant = _dereq_(161);
|
|
17114
17135
|
|
|
17115
17136
|
/**
|
|
17116
17137
|
* `Transaction` creates a black box that is able to wrap any method such that
|
|
@@ -17328,7 +17349,7 @@ var Transaction = {
|
|
|
17328
17349
|
};
|
|
17329
17350
|
|
|
17330
17351
|
module.exports = Transaction;
|
|
17331
|
-
},{"
|
|
17352
|
+
},{"161":161}],114:[function(_dereq_,module,exports){
|
|
17332
17353
|
/**
|
|
17333
17354
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17334
17355
|
* All rights reserved.
|
|
@@ -17370,7 +17391,7 @@ module.exports = ViewportMetrics;
|
|
|
17370
17391
|
|
|
17371
17392
|
'use strict';
|
|
17372
17393
|
|
|
17373
|
-
var invariant = _dereq_(
|
|
17394
|
+
var invariant = _dereq_(161);
|
|
17374
17395
|
|
|
17375
17396
|
/**
|
|
17376
17397
|
*
|
|
@@ -17416,7 +17437,7 @@ function accumulateInto(current, next) {
|
|
|
17416
17437
|
}
|
|
17417
17438
|
|
|
17418
17439
|
module.exports = accumulateInto;
|
|
17419
|
-
},{"
|
|
17440
|
+
},{"161":161}],116:[function(_dereq_,module,exports){
|
|
17420
17441
|
/**
|
|
17421
17442
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17422
17443
|
* All rights reserved.
|
|
@@ -17460,6 +17481,31 @@ function adler32(data) {
|
|
|
17460
17481
|
|
|
17461
17482
|
module.exports = adler32;
|
|
17462
17483
|
},{}],117:[function(_dereq_,module,exports){
|
|
17484
|
+
/**
|
|
17485
|
+
* Copyright 2013-2015, Facebook, Inc.
|
|
17486
|
+
* All rights reserved.
|
|
17487
|
+
*
|
|
17488
|
+
* This source code is licensed under the BSD-style license found in the
|
|
17489
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
17490
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
17491
|
+
*
|
|
17492
|
+
* @providesModule canDefineProperty
|
|
17493
|
+
*/
|
|
17494
|
+
|
|
17495
|
+
'use strict';
|
|
17496
|
+
|
|
17497
|
+
var canDefineProperty = false;
|
|
17498
|
+
if ("development" !== 'production') {
|
|
17499
|
+
try {
|
|
17500
|
+
Object.defineProperty({}, 'x', { get: function () {} });
|
|
17501
|
+
canDefineProperty = true;
|
|
17502
|
+
} catch (x) {
|
|
17503
|
+
// IE will fail on defineProperty
|
|
17504
|
+
}
|
|
17505
|
+
}
|
|
17506
|
+
|
|
17507
|
+
module.exports = canDefineProperty;
|
|
17508
|
+
},{}],118:[function(_dereq_,module,exports){
|
|
17463
17509
|
/**
|
|
17464
17510
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17465
17511
|
* All rights reserved.
|
|
@@ -17477,8 +17523,8 @@ module.exports = adler32;
|
|
|
17477
17523
|
var ReactElement = _dereq_(57);
|
|
17478
17524
|
var ReactPropTransferer = _dereq_(79);
|
|
17479
17525
|
|
|
17480
|
-
var keyOf = _dereq_(
|
|
17481
|
-
var warning = _dereq_(
|
|
17526
|
+
var keyOf = _dereq_(166);
|
|
17527
|
+
var warning = _dereq_(173);
|
|
17482
17528
|
|
|
17483
17529
|
var CHILDREN_PROP = keyOf({ children: null });
|
|
17484
17530
|
|
|
@@ -17514,7 +17560,7 @@ function cloneWithProps(child, props) {
|
|
|
17514
17560
|
}
|
|
17515
17561
|
|
|
17516
17562
|
module.exports = cloneWithProps;
|
|
17517
|
-
},{"
|
|
17563
|
+
},{"166":166,"173":173,"57":57,"79":79}],119:[function(_dereq_,module,exports){
|
|
17518
17564
|
/**
|
|
17519
17565
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17520
17566
|
* All rights reserved.
|
|
@@ -17570,7 +17616,7 @@ function dangerousStyleValue(name, value) {
|
|
|
17570
17616
|
}
|
|
17571
17617
|
|
|
17572
17618
|
module.exports = dangerousStyleValue;
|
|
17573
|
-
},{"4":4}],
|
|
17619
|
+
},{"4":4}],120:[function(_dereq_,module,exports){
|
|
17574
17620
|
/**
|
|
17575
17621
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17576
17622
|
* All rights reserved.
|
|
@@ -17585,7 +17631,7 @@ module.exports = dangerousStyleValue;
|
|
|
17585
17631
|
'use strict';
|
|
17586
17632
|
|
|
17587
17633
|
var assign = _dereq_(24);
|
|
17588
|
-
var warning = _dereq_(
|
|
17634
|
+
var warning = _dereq_(173);
|
|
17589
17635
|
|
|
17590
17636
|
/**
|
|
17591
17637
|
* This will log a single deprecation notice per function and forward the call
|
|
@@ -17619,7 +17665,7 @@ function deprecated(fnName, newModule, newPackage, ctx, fn) {
|
|
|
17619
17665
|
}
|
|
17620
17666
|
|
|
17621
17667
|
module.exports = deprecated;
|
|
17622
|
-
},{"
|
|
17668
|
+
},{"173":173,"24":24}],121:[function(_dereq_,module,exports){
|
|
17623
17669
|
/**
|
|
17624
17670
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17625
17671
|
* All rights reserved.
|
|
@@ -17658,7 +17704,7 @@ function escapeTextContentForBrowser(text) {
|
|
|
17658
17704
|
}
|
|
17659
17705
|
|
|
17660
17706
|
module.exports = escapeTextContentForBrowser;
|
|
17661
|
-
},{}],
|
|
17707
|
+
},{}],122:[function(_dereq_,module,exports){
|
|
17662
17708
|
/**
|
|
17663
17709
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17664
17710
|
* All rights reserved.
|
|
@@ -17677,8 +17723,8 @@ var ReactCurrentOwner = _dereq_(39);
|
|
|
17677
17723
|
var ReactInstanceMap = _dereq_(68);
|
|
17678
17724
|
var ReactMount = _dereq_(72);
|
|
17679
17725
|
|
|
17680
|
-
var invariant = _dereq_(
|
|
17681
|
-
var warning = _dereq_(
|
|
17726
|
+
var invariant = _dereq_(161);
|
|
17727
|
+
var warning = _dereq_(173);
|
|
17682
17728
|
|
|
17683
17729
|
/**
|
|
17684
17730
|
* Returns the DOM node rendered by this element.
|
|
@@ -17708,7 +17754,7 @@ function findDOMNode(componentOrElement) {
|
|
|
17708
17754
|
}
|
|
17709
17755
|
|
|
17710
17756
|
module.exports = findDOMNode;
|
|
17711
|
-
},{"
|
|
17757
|
+
},{"161":161,"173":173,"39":39,"68":68,"72":72}],123:[function(_dereq_,module,exports){
|
|
17712
17758
|
/**
|
|
17713
17759
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17714
17760
|
* All rights reserved.
|
|
@@ -17722,8 +17768,8 @@ module.exports = findDOMNode;
|
|
|
17722
17768
|
|
|
17723
17769
|
'use strict';
|
|
17724
17770
|
|
|
17725
|
-
var traverseAllChildren = _dereq_(
|
|
17726
|
-
var warning = _dereq_(
|
|
17771
|
+
var traverseAllChildren = _dereq_(142);
|
|
17772
|
+
var warning = _dereq_(173);
|
|
17727
17773
|
|
|
17728
17774
|
/**
|
|
17729
17775
|
* @param {function} traverseContext Context passed through traversal.
|
|
@@ -17757,7 +17803,7 @@ function flattenChildren(children) {
|
|
|
17757
17803
|
}
|
|
17758
17804
|
|
|
17759
17805
|
module.exports = flattenChildren;
|
|
17760
|
-
},{"
|
|
17806
|
+
},{"142":142,"173":173}],124:[function(_dereq_,module,exports){
|
|
17761
17807
|
/**
|
|
17762
17808
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17763
17809
|
* All rights reserved.
|
|
@@ -17787,7 +17833,7 @@ var forEachAccumulated = function (arr, cb, scope) {
|
|
|
17787
17833
|
};
|
|
17788
17834
|
|
|
17789
17835
|
module.exports = forEachAccumulated;
|
|
17790
|
-
},{}],
|
|
17836
|
+
},{}],125:[function(_dereq_,module,exports){
|
|
17791
17837
|
/**
|
|
17792
17838
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17793
17839
|
* All rights reserved.
|
|
@@ -17838,7 +17884,7 @@ function getEventCharCode(nativeEvent) {
|
|
|
17838
17884
|
}
|
|
17839
17885
|
|
|
17840
17886
|
module.exports = getEventCharCode;
|
|
17841
|
-
},{}],
|
|
17887
|
+
},{}],126:[function(_dereq_,module,exports){
|
|
17842
17888
|
/**
|
|
17843
17889
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17844
17890
|
* All rights reserved.
|
|
@@ -17853,7 +17899,7 @@ module.exports = getEventCharCode;
|
|
|
17853
17899
|
|
|
17854
17900
|
'use strict';
|
|
17855
17901
|
|
|
17856
|
-
var getEventCharCode = _dereq_(
|
|
17902
|
+
var getEventCharCode = _dereq_(125);
|
|
17857
17903
|
|
|
17858
17904
|
/**
|
|
17859
17905
|
* Normalization of deprecated HTML5 `key` values
|
|
@@ -17942,7 +17988,7 @@ function getEventKey(nativeEvent) {
|
|
|
17942
17988
|
}
|
|
17943
17989
|
|
|
17944
17990
|
module.exports = getEventKey;
|
|
17945
|
-
},{"
|
|
17991
|
+
},{"125":125}],127:[function(_dereq_,module,exports){
|
|
17946
17992
|
/**
|
|
17947
17993
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17948
17994
|
* All rights reserved.
|
|
@@ -17987,7 +18033,7 @@ function getEventModifierState(nativeEvent) {
|
|
|
17987
18033
|
}
|
|
17988
18034
|
|
|
17989
18035
|
module.exports = getEventModifierState;
|
|
17990
|
-
},{}],
|
|
18036
|
+
},{}],128:[function(_dereq_,module,exports){
|
|
17991
18037
|
/**
|
|
17992
18038
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17993
18039
|
* All rights reserved.
|
|
@@ -18017,7 +18063,7 @@ function getEventTarget(nativeEvent) {
|
|
|
18017
18063
|
}
|
|
18018
18064
|
|
|
18019
18065
|
module.exports = getEventTarget;
|
|
18020
|
-
},{}],
|
|
18066
|
+
},{}],129:[function(_dereq_,module,exports){
|
|
18021
18067
|
/**
|
|
18022
18068
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18023
18069
|
* All rights reserved.
|
|
@@ -18058,7 +18104,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
18058
18104
|
}
|
|
18059
18105
|
|
|
18060
18106
|
module.exports = getIteratorFn;
|
|
18061
|
-
},{}],
|
|
18107
|
+
},{}],130:[function(_dereq_,module,exports){
|
|
18062
18108
|
/**
|
|
18063
18109
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18064
18110
|
* All rights reserved.
|
|
@@ -18132,7 +18178,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
18132
18178
|
}
|
|
18133
18179
|
|
|
18134
18180
|
module.exports = getNodeForCharacterOffset;
|
|
18135
|
-
},{}],
|
|
18181
|
+
},{}],131:[function(_dereq_,module,exports){
|
|
18136
18182
|
/**
|
|
18137
18183
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18138
18184
|
* All rights reserved.
|
|
@@ -18146,7 +18192,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
18146
18192
|
|
|
18147
18193
|
'use strict';
|
|
18148
18194
|
|
|
18149
|
-
var ExecutionEnvironment = _dereq_(
|
|
18195
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18150
18196
|
|
|
18151
18197
|
var contentKey = null;
|
|
18152
18198
|
|
|
@@ -18166,7 +18212,7 @@ function getTextContentAccessor() {
|
|
|
18166
18212
|
}
|
|
18167
18213
|
|
|
18168
18214
|
module.exports = getTextContentAccessor;
|
|
18169
|
-
},{"
|
|
18215
|
+
},{"147":147}],132:[function(_dereq_,module,exports){
|
|
18170
18216
|
/**
|
|
18171
18217
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18172
18218
|
* All rights reserved.
|
|
@@ -18186,8 +18232,8 @@ var ReactEmptyComponent = _dereq_(59);
|
|
|
18186
18232
|
var ReactNativeComponent = _dereq_(75);
|
|
18187
18233
|
|
|
18188
18234
|
var assign = _dereq_(24);
|
|
18189
|
-
var invariant = _dereq_(
|
|
18190
|
-
var warning = _dereq_(
|
|
18235
|
+
var invariant = _dereq_(161);
|
|
18236
|
+
var warning = _dereq_(173);
|
|
18191
18237
|
|
|
18192
18238
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
18193
18239
|
var ReactCompositeComponentWrapper = function () {};
|
|
@@ -18279,7 +18325,7 @@ function instantiateReactComponent(node) {
|
|
|
18279
18325
|
}
|
|
18280
18326
|
|
|
18281
18327
|
module.exports = instantiateReactComponent;
|
|
18282
|
-
},{"
|
|
18328
|
+
},{"161":161,"173":173,"24":24,"38":38,"59":59,"75":75}],133:[function(_dereq_,module,exports){
|
|
18283
18329
|
/**
|
|
18284
18330
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18285
18331
|
* All rights reserved.
|
|
@@ -18293,7 +18339,7 @@ module.exports = instantiateReactComponent;
|
|
|
18293
18339
|
|
|
18294
18340
|
'use strict';
|
|
18295
18341
|
|
|
18296
|
-
var ExecutionEnvironment = _dereq_(
|
|
18342
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18297
18343
|
|
|
18298
18344
|
var useHasFeature;
|
|
18299
18345
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -18340,7 +18386,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
18340
18386
|
}
|
|
18341
18387
|
|
|
18342
18388
|
module.exports = isEventSupported;
|
|
18343
|
-
},{"
|
|
18389
|
+
},{"147":147}],134:[function(_dereq_,module,exports){
|
|
18344
18390
|
/**
|
|
18345
18391
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18346
18392
|
* All rights reserved.
|
|
@@ -18381,7 +18427,7 @@ function isTextInputElement(elem) {
|
|
|
18381
18427
|
}
|
|
18382
18428
|
|
|
18383
18429
|
module.exports = isTextInputElement;
|
|
18384
|
-
},{}],
|
|
18430
|
+
},{}],135:[function(_dereq_,module,exports){
|
|
18385
18431
|
/**
|
|
18386
18432
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18387
18433
|
* All rights reserved.
|
|
@@ -18396,7 +18442,7 @@ module.exports = isTextInputElement;
|
|
|
18396
18442
|
|
|
18397
18443
|
var ReactElement = _dereq_(57);
|
|
18398
18444
|
|
|
18399
|
-
var invariant = _dereq_(
|
|
18445
|
+
var invariant = _dereq_(161);
|
|
18400
18446
|
|
|
18401
18447
|
/**
|
|
18402
18448
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -18415,7 +18461,7 @@ function onlyChild(children) {
|
|
|
18415
18461
|
}
|
|
18416
18462
|
|
|
18417
18463
|
module.exports = onlyChild;
|
|
18418
|
-
},{"
|
|
18464
|
+
},{"161":161,"57":57}],136:[function(_dereq_,module,exports){
|
|
18419
18465
|
/**
|
|
18420
18466
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18421
18467
|
* All rights reserved.
|
|
@@ -18429,7 +18475,7 @@ module.exports = onlyChild;
|
|
|
18429
18475
|
|
|
18430
18476
|
'use strict';
|
|
18431
18477
|
|
|
18432
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18478
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
18433
18479
|
|
|
18434
18480
|
/**
|
|
18435
18481
|
* Escapes attribute value to prevent scripting attacks.
|
|
@@ -18442,7 +18488,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
18442
18488
|
}
|
|
18443
18489
|
|
|
18444
18490
|
module.exports = quoteAttributeValueForBrowser;
|
|
18445
|
-
},{"
|
|
18491
|
+
},{"121":121}],137:[function(_dereq_,module,exports){
|
|
18446
18492
|
/**
|
|
18447
18493
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18448
18494
|
* All rights reserved.
|
|
@@ -18459,7 +18505,7 @@ module.exports = quoteAttributeValueForBrowser;
|
|
|
18459
18505
|
var ReactMount = _dereq_(72);
|
|
18460
18506
|
|
|
18461
18507
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
18462
|
-
},{"72":72}],
|
|
18508
|
+
},{"72":72}],138:[function(_dereq_,module,exports){
|
|
18463
18509
|
/**
|
|
18464
18510
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18465
18511
|
* All rights reserved.
|
|
@@ -18475,7 +18521,7 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
18475
18521
|
|
|
18476
18522
|
'use strict';
|
|
18477
18523
|
|
|
18478
|
-
var ExecutionEnvironment = _dereq_(
|
|
18524
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18479
18525
|
|
|
18480
18526
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
18481
18527
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
|
@@ -18550,7 +18596,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18550
18596
|
}
|
|
18551
18597
|
|
|
18552
18598
|
module.exports = setInnerHTML;
|
|
18553
|
-
},{"
|
|
18599
|
+
},{"147":147}],139:[function(_dereq_,module,exports){
|
|
18554
18600
|
/**
|
|
18555
18601
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18556
18602
|
* All rights reserved.
|
|
@@ -18564,9 +18610,9 @@ module.exports = setInnerHTML;
|
|
|
18564
18610
|
|
|
18565
18611
|
'use strict';
|
|
18566
18612
|
|
|
18567
|
-
var ExecutionEnvironment = _dereq_(
|
|
18568
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18569
|
-
var setInnerHTML = _dereq_(
|
|
18613
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18614
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
18615
|
+
var setInnerHTML = _dereq_(138);
|
|
18570
18616
|
|
|
18571
18617
|
/**
|
|
18572
18618
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -18591,7 +18637,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18591
18637
|
}
|
|
18592
18638
|
|
|
18593
18639
|
module.exports = setTextContent;
|
|
18594
|
-
},{"
|
|
18640
|
+
},{"121":121,"138":138,"147":147}],140:[function(_dereq_,module,exports){
|
|
18595
18641
|
/**
|
|
18596
18642
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18597
18643
|
* All rights reserved.
|
|
@@ -18605,7 +18651,7 @@ module.exports = setTextContent;
|
|
|
18605
18651
|
|
|
18606
18652
|
'use strict';
|
|
18607
18653
|
|
|
18608
|
-
var shallowEqual = _dereq_(
|
|
18654
|
+
var shallowEqual = _dereq_(171);
|
|
18609
18655
|
|
|
18610
18656
|
/**
|
|
18611
18657
|
* Does a shallow comparison for props and state.
|
|
@@ -18616,7 +18662,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
18616
18662
|
}
|
|
18617
18663
|
|
|
18618
18664
|
module.exports = shallowCompare;
|
|
18619
|
-
},{"
|
|
18665
|
+
},{"171":171}],141:[function(_dereq_,module,exports){
|
|
18620
18666
|
/**
|
|
18621
18667
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18622
18668
|
* All rights reserved.
|
|
@@ -18660,7 +18706,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
18660
18706
|
}
|
|
18661
18707
|
|
|
18662
18708
|
module.exports = shouldUpdateReactComponent;
|
|
18663
|
-
},{}],
|
|
18709
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
18664
18710
|
/**
|
|
18665
18711
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18666
18712
|
* All rights reserved.
|
|
@@ -18678,9 +18724,9 @@ var ReactCurrentOwner = _dereq_(39);
|
|
|
18678
18724
|
var ReactElement = _dereq_(57);
|
|
18679
18725
|
var ReactInstanceHandles = _dereq_(67);
|
|
18680
18726
|
|
|
18681
|
-
var getIteratorFn = _dereq_(
|
|
18682
|
-
var invariant = _dereq_(
|
|
18683
|
-
var warning = _dereq_(
|
|
18727
|
+
var getIteratorFn = _dereq_(129);
|
|
18728
|
+
var invariant = _dereq_(161);
|
|
18729
|
+
var warning = _dereq_(173);
|
|
18684
18730
|
|
|
18685
18731
|
var SEPARATOR = ReactInstanceHandles.SEPARATOR;
|
|
18686
18732
|
var SUBSEPARATOR = ':';
|
|
@@ -18850,7 +18896,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
18850
18896
|
}
|
|
18851
18897
|
|
|
18852
18898
|
module.exports = traverseAllChildren;
|
|
18853
|
-
},{"
|
|
18899
|
+
},{"129":129,"161":161,"173":173,"39":39,"57":57,"67":67}],143:[function(_dereq_,module,exports){
|
|
18854
18900
|
/**
|
|
18855
18901
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18856
18902
|
* All rights reserved.
|
|
@@ -18867,8 +18913,8 @@ module.exports = traverseAllChildren;
|
|
|
18867
18913
|
'use strict';
|
|
18868
18914
|
|
|
18869
18915
|
var assign = _dereq_(24);
|
|
18870
|
-
var keyOf = _dereq_(
|
|
18871
|
-
var invariant = _dereq_(
|
|
18916
|
+
var keyOf = _dereq_(166);
|
|
18917
|
+
var invariant = _dereq_(161);
|
|
18872
18918
|
var hasOwnProperty = ({}).hasOwnProperty;
|
|
18873
18919
|
|
|
18874
18920
|
function shallowCopy(x) {
|
|
@@ -18958,7 +19004,7 @@ function update(value, spec) {
|
|
|
18958
19004
|
}
|
|
18959
19005
|
|
|
18960
19006
|
module.exports = update;
|
|
18961
|
-
},{"
|
|
19007
|
+
},{"161":161,"166":166,"24":24}],144:[function(_dereq_,module,exports){
|
|
18962
19008
|
/**
|
|
18963
19009
|
* Copyright 2015, Facebook, Inc.
|
|
18964
19010
|
* All rights reserved.
|
|
@@ -18973,8 +19019,8 @@ module.exports = update;
|
|
|
18973
19019
|
'use strict';
|
|
18974
19020
|
|
|
18975
19021
|
var assign = _dereq_(24);
|
|
18976
|
-
var emptyFunction = _dereq_(
|
|
18977
|
-
var warning = _dereq_(
|
|
19022
|
+
var emptyFunction = _dereq_(153);
|
|
19023
|
+
var warning = _dereq_(173);
|
|
18978
19024
|
|
|
18979
19025
|
var validateDOMNesting = emptyFunction;
|
|
18980
19026
|
|
|
@@ -19322,7 +19368,7 @@ if ("development" !== 'production') {
|
|
|
19322
19368
|
}
|
|
19323
19369
|
|
|
19324
19370
|
module.exports = validateDOMNesting;
|
|
19325
|
-
},{"
|
|
19371
|
+
},{"153":153,"173":173,"24":24}],145:[function(_dereq_,module,exports){
|
|
19326
19372
|
/**
|
|
19327
19373
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19328
19374
|
* All rights reserved.
|
|
@@ -19337,7 +19383,7 @@ module.exports = validateDOMNesting;
|
|
|
19337
19383
|
|
|
19338
19384
|
'use strict';
|
|
19339
19385
|
|
|
19340
|
-
var invariant = _dereq_(
|
|
19386
|
+
var invariant = _dereq_(161);
|
|
19341
19387
|
|
|
19342
19388
|
/**
|
|
19343
19389
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -19420,7 +19466,7 @@ var CSSCore = {
|
|
|
19420
19466
|
};
|
|
19421
19467
|
|
|
19422
19468
|
module.exports = CSSCore;
|
|
19423
|
-
},{"
|
|
19469
|
+
},{"161":161}],146:[function(_dereq_,module,exports){
|
|
19424
19470
|
/**
|
|
19425
19471
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19426
19472
|
*
|
|
@@ -19442,7 +19488,7 @@ module.exports = CSSCore;
|
|
|
19442
19488
|
|
|
19443
19489
|
'use strict';
|
|
19444
19490
|
|
|
19445
|
-
var emptyFunction = _dereq_(
|
|
19491
|
+
var emptyFunction = _dereq_(153);
|
|
19446
19492
|
|
|
19447
19493
|
/**
|
|
19448
19494
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -19505,7 +19551,7 @@ var EventListener = {
|
|
|
19505
19551
|
};
|
|
19506
19552
|
|
|
19507
19553
|
module.exports = EventListener;
|
|
19508
|
-
},{"
|
|
19554
|
+
},{"153":153}],147:[function(_dereq_,module,exports){
|
|
19509
19555
|
/**
|
|
19510
19556
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19511
19557
|
* All rights reserved.
|
|
@@ -19542,7 +19588,7 @@ var ExecutionEnvironment = {
|
|
|
19542
19588
|
};
|
|
19543
19589
|
|
|
19544
19590
|
module.exports = ExecutionEnvironment;
|
|
19545
|
-
},{}],
|
|
19591
|
+
},{}],148:[function(_dereq_,module,exports){
|
|
19546
19592
|
/**
|
|
19547
19593
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19548
19594
|
* All rights reserved.
|
|
@@ -19575,7 +19621,7 @@ function camelize(string) {
|
|
|
19575
19621
|
}
|
|
19576
19622
|
|
|
19577
19623
|
module.exports = camelize;
|
|
19578
|
-
},{}],
|
|
19624
|
+
},{}],149:[function(_dereq_,module,exports){
|
|
19579
19625
|
/**
|
|
19580
19626
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19581
19627
|
* All rights reserved.
|
|
@@ -19590,7 +19636,7 @@ module.exports = camelize;
|
|
|
19590
19636
|
|
|
19591
19637
|
'use strict';
|
|
19592
19638
|
|
|
19593
|
-
var camelize = _dereq_(
|
|
19639
|
+
var camelize = _dereq_(148);
|
|
19594
19640
|
|
|
19595
19641
|
var msPattern = /^-ms-/;
|
|
19596
19642
|
|
|
@@ -19616,7 +19662,7 @@ function camelizeStyleName(string) {
|
|
|
19616
19662
|
}
|
|
19617
19663
|
|
|
19618
19664
|
module.exports = camelizeStyleName;
|
|
19619
|
-
},{"
|
|
19665
|
+
},{"148":148}],150:[function(_dereq_,module,exports){
|
|
19620
19666
|
/**
|
|
19621
19667
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19622
19668
|
* All rights reserved.
|
|
@@ -19631,7 +19677,7 @@ module.exports = camelizeStyleName;
|
|
|
19631
19677
|
|
|
19632
19678
|
'use strict';
|
|
19633
19679
|
|
|
19634
|
-
var isTextNode = _dereq_(
|
|
19680
|
+
var isTextNode = _dereq_(163);
|
|
19635
19681
|
|
|
19636
19682
|
/*eslint-disable no-bitwise */
|
|
19637
19683
|
|
|
@@ -19672,7 +19718,7 @@ function containsNode(_x, _x2) {
|
|
|
19672
19718
|
}
|
|
19673
19719
|
|
|
19674
19720
|
module.exports = containsNode;
|
|
19675
|
-
},{"
|
|
19721
|
+
},{"163":163}],151:[function(_dereq_,module,exports){
|
|
19676
19722
|
/**
|
|
19677
19723
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19678
19724
|
* All rights reserved.
|
|
@@ -19687,7 +19733,7 @@ module.exports = containsNode;
|
|
|
19687
19733
|
|
|
19688
19734
|
'use strict';
|
|
19689
19735
|
|
|
19690
|
-
var toArray = _dereq_(
|
|
19736
|
+
var toArray = _dereq_(172);
|
|
19691
19737
|
|
|
19692
19738
|
/**
|
|
19693
19739
|
* Perform a heuristic test to determine if an object is "array-like".
|
|
@@ -19758,7 +19804,7 @@ function createArrayFromMixed(obj) {
|
|
|
19758
19804
|
}
|
|
19759
19805
|
|
|
19760
19806
|
module.exports = createArrayFromMixed;
|
|
19761
|
-
},{"
|
|
19807
|
+
},{"172":172}],152:[function(_dereq_,module,exports){
|
|
19762
19808
|
/**
|
|
19763
19809
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19764
19810
|
* All rights reserved.
|
|
@@ -19775,11 +19821,11 @@ module.exports = createArrayFromMixed;
|
|
|
19775
19821
|
|
|
19776
19822
|
'use strict';
|
|
19777
19823
|
|
|
19778
|
-
var ExecutionEnvironment = _dereq_(
|
|
19824
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
19779
19825
|
|
|
19780
|
-
var createArrayFromMixed = _dereq_(
|
|
19781
|
-
var getMarkupWrap = _dereq_(
|
|
19782
|
-
var invariant = _dereq_(
|
|
19826
|
+
var createArrayFromMixed = _dereq_(151);
|
|
19827
|
+
var getMarkupWrap = _dereq_(157);
|
|
19828
|
+
var invariant = _dereq_(161);
|
|
19783
19829
|
|
|
19784
19830
|
/**
|
|
19785
19831
|
* Dummy container used to render all markup.
|
|
@@ -19843,7 +19889,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
19843
19889
|
}
|
|
19844
19890
|
|
|
19845
19891
|
module.exports = createNodesFromMarkup;
|
|
19846
|
-
},{"
|
|
19892
|
+
},{"147":147,"151":151,"157":157,"161":161}],153:[function(_dereq_,module,exports){
|
|
19847
19893
|
/**
|
|
19848
19894
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19849
19895
|
* All rights reserved.
|
|
@@ -19882,7 +19928,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
19882
19928
|
};
|
|
19883
19929
|
|
|
19884
19930
|
module.exports = emptyFunction;
|
|
19885
|
-
},{}],
|
|
19931
|
+
},{}],154:[function(_dereq_,module,exports){
|
|
19886
19932
|
/**
|
|
19887
19933
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19888
19934
|
* All rights reserved.
|
|
@@ -19903,7 +19949,7 @@ if ("development" !== 'production') {
|
|
|
19903
19949
|
}
|
|
19904
19950
|
|
|
19905
19951
|
module.exports = emptyObject;
|
|
19906
|
-
},{}],
|
|
19952
|
+
},{}],155:[function(_dereq_,module,exports){
|
|
19907
19953
|
/**
|
|
19908
19954
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19909
19955
|
* All rights reserved.
|
|
@@ -19930,7 +19976,7 @@ function focusNode(node) {
|
|
|
19930
19976
|
}
|
|
19931
19977
|
|
|
19932
19978
|
module.exports = focusNode;
|
|
19933
|
-
},{}],
|
|
19979
|
+
},{}],156:[function(_dereq_,module,exports){
|
|
19934
19980
|
/**
|
|
19935
19981
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19936
19982
|
* All rights reserved.
|
|
@@ -19947,15 +19993,11 @@ module.exports = focusNode;
|
|
|
19947
19993
|
* Same as document.activeElement but wraps in a try-catch block. In IE it is
|
|
19948
19994
|
* not safe to call document.activeElement if there is nothing focused.
|
|
19949
19995
|
*
|
|
19950
|
-
* The activeElement will be null only if the document
|
|
19996
|
+
* The activeElement will be null only if the document body is not yet defined.
|
|
19951
19997
|
*/
|
|
19952
|
-
|
|
19998
|
+
"use strict";
|
|
19953
19999
|
|
|
19954
20000
|
function getActiveElement() /*?DOMElement*/{
|
|
19955
|
-
if (typeof document === 'undefined') {
|
|
19956
|
-
return null;
|
|
19957
|
-
}
|
|
19958
|
-
|
|
19959
20001
|
try {
|
|
19960
20002
|
return document.activeElement || document.body;
|
|
19961
20003
|
} catch (e) {
|
|
@@ -19964,7 +20006,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
19964
20006
|
}
|
|
19965
20007
|
|
|
19966
20008
|
module.exports = getActiveElement;
|
|
19967
|
-
},{}],
|
|
20009
|
+
},{}],157:[function(_dereq_,module,exports){
|
|
19968
20010
|
/**
|
|
19969
20011
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19970
20012
|
* All rights reserved.
|
|
@@ -19980,9 +20022,9 @@ module.exports = getActiveElement;
|
|
|
19980
20022
|
|
|
19981
20023
|
'use strict';
|
|
19982
20024
|
|
|
19983
|
-
var ExecutionEnvironment = _dereq_(
|
|
20025
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
19984
20026
|
|
|
19985
|
-
var invariant = _dereq_(
|
|
20027
|
+
var invariant = _dereq_(161);
|
|
19986
20028
|
|
|
19987
20029
|
/**
|
|
19988
20030
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -20060,7 +20102,7 @@ function getMarkupWrap(nodeName) {
|
|
|
20060
20102
|
}
|
|
20061
20103
|
|
|
20062
20104
|
module.exports = getMarkupWrap;
|
|
20063
|
-
},{"
|
|
20105
|
+
},{"147":147,"161":161}],158:[function(_dereq_,module,exports){
|
|
20064
20106
|
/**
|
|
20065
20107
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20066
20108
|
* All rights reserved.
|
|
@@ -20099,7 +20141,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
20099
20141
|
}
|
|
20100
20142
|
|
|
20101
20143
|
module.exports = getUnboundedScrollPosition;
|
|
20102
|
-
},{}],
|
|
20144
|
+
},{}],159:[function(_dereq_,module,exports){
|
|
20103
20145
|
/**
|
|
20104
20146
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20105
20147
|
* All rights reserved.
|
|
@@ -20133,7 +20175,7 @@ function hyphenate(string) {
|
|
|
20133
20175
|
}
|
|
20134
20176
|
|
|
20135
20177
|
module.exports = hyphenate;
|
|
20136
|
-
},{}],
|
|
20178
|
+
},{}],160:[function(_dereq_,module,exports){
|
|
20137
20179
|
/**
|
|
20138
20180
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20139
20181
|
* All rights reserved.
|
|
@@ -20148,7 +20190,7 @@ module.exports = hyphenate;
|
|
|
20148
20190
|
|
|
20149
20191
|
'use strict';
|
|
20150
20192
|
|
|
20151
|
-
var hyphenate = _dereq_(
|
|
20193
|
+
var hyphenate = _dereq_(159);
|
|
20152
20194
|
|
|
20153
20195
|
var msPattern = /^ms-/;
|
|
20154
20196
|
|
|
@@ -20173,7 +20215,7 @@ function hyphenateStyleName(string) {
|
|
|
20173
20215
|
}
|
|
20174
20216
|
|
|
20175
20217
|
module.exports = hyphenateStyleName;
|
|
20176
|
-
},{"
|
|
20218
|
+
},{"159":159}],161:[function(_dereq_,module,exports){
|
|
20177
20219
|
/**
|
|
20178
20220
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20179
20221
|
* All rights reserved.
|
|
@@ -20198,7 +20240,7 @@ module.exports = hyphenateStyleName;
|
|
|
20198
20240
|
* will remain to ensure logic does not differ in production.
|
|
20199
20241
|
*/
|
|
20200
20242
|
|
|
20201
|
-
|
|
20243
|
+
function invariant(condition, format, a, b, c, d, e, f) {
|
|
20202
20244
|
if ("development" !== 'production') {
|
|
20203
20245
|
if (format === undefined) {
|
|
20204
20246
|
throw new Error('invariant requires an error message argument');
|
|
@@ -20212,18 +20254,19 @@ var invariant = function (condition, format, a, b, c, d, e, f) {
|
|
|
20212
20254
|
} else {
|
|
20213
20255
|
var args = [a, b, c, d, e, f];
|
|
20214
20256
|
var argIndex = 0;
|
|
20215
|
-
error = new Error(
|
|
20257
|
+
error = new Error(format.replace(/%s/g, function () {
|
|
20216
20258
|
return args[argIndex++];
|
|
20217
20259
|
}));
|
|
20260
|
+
error.name = 'Invariant Violation';
|
|
20218
20261
|
}
|
|
20219
20262
|
|
|
20220
20263
|
error.framesToPop = 1; // we don't care about invariant's own frame
|
|
20221
20264
|
throw error;
|
|
20222
20265
|
}
|
|
20223
|
-
}
|
|
20266
|
+
}
|
|
20224
20267
|
|
|
20225
20268
|
module.exports = invariant;
|
|
20226
|
-
},{}],
|
|
20269
|
+
},{}],162:[function(_dereq_,module,exports){
|
|
20227
20270
|
/**
|
|
20228
20271
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20229
20272
|
* All rights reserved.
|
|
@@ -20247,7 +20290,7 @@ function isNode(object) {
|
|
|
20247
20290
|
}
|
|
20248
20291
|
|
|
20249
20292
|
module.exports = isNode;
|
|
20250
|
-
},{}],
|
|
20293
|
+
},{}],163:[function(_dereq_,module,exports){
|
|
20251
20294
|
/**
|
|
20252
20295
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20253
20296
|
* All rights reserved.
|
|
@@ -20262,7 +20305,7 @@ module.exports = isNode;
|
|
|
20262
20305
|
|
|
20263
20306
|
'use strict';
|
|
20264
20307
|
|
|
20265
|
-
var isNode = _dereq_(
|
|
20308
|
+
var isNode = _dereq_(162);
|
|
20266
20309
|
|
|
20267
20310
|
/**
|
|
20268
20311
|
* @param {*} object The object to check.
|
|
@@ -20273,7 +20316,7 @@ function isTextNode(object) {
|
|
|
20273
20316
|
}
|
|
20274
20317
|
|
|
20275
20318
|
module.exports = isTextNode;
|
|
20276
|
-
},{"
|
|
20319
|
+
},{"162":162}],164:[function(_dereq_,module,exports){
|
|
20277
20320
|
/**
|
|
20278
20321
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20279
20322
|
* All rights reserved.
|
|
@@ -20313,7 +20356,7 @@ function joinClasses(className /*, ... */) {
|
|
|
20313
20356
|
}
|
|
20314
20357
|
|
|
20315
20358
|
module.exports = joinClasses;
|
|
20316
|
-
},{}],
|
|
20359
|
+
},{}],165:[function(_dereq_,module,exports){
|
|
20317
20360
|
/**
|
|
20318
20361
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20319
20362
|
* All rights reserved.
|
|
@@ -20328,7 +20371,7 @@ module.exports = joinClasses;
|
|
|
20328
20371
|
|
|
20329
20372
|
'use strict';
|
|
20330
20373
|
|
|
20331
|
-
var invariant = _dereq_(
|
|
20374
|
+
var invariant = _dereq_(161);
|
|
20332
20375
|
|
|
20333
20376
|
/**
|
|
20334
20377
|
* Constructs an enumeration with keys equal to their value.
|
|
@@ -20362,7 +20405,7 @@ var keyMirror = function (obj) {
|
|
|
20362
20405
|
};
|
|
20363
20406
|
|
|
20364
20407
|
module.exports = keyMirror;
|
|
20365
|
-
},{"
|
|
20408
|
+
},{"161":161}],166:[function(_dereq_,module,exports){
|
|
20366
20409
|
/**
|
|
20367
20410
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20368
20411
|
* All rights reserved.
|
|
@@ -20398,7 +20441,7 @@ var keyOf = function (oneKeyObj) {
|
|
|
20398
20441
|
};
|
|
20399
20442
|
|
|
20400
20443
|
module.exports = keyOf;
|
|
20401
|
-
},{}],
|
|
20444
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
20402
20445
|
/**
|
|
20403
20446
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20404
20447
|
* All rights reserved.
|
|
@@ -20450,7 +20493,7 @@ function mapObject(object, callback, context) {
|
|
|
20450
20493
|
}
|
|
20451
20494
|
|
|
20452
20495
|
module.exports = mapObject;
|
|
20453
|
-
},{}],
|
|
20496
|
+
},{}],168:[function(_dereq_,module,exports){
|
|
20454
20497
|
/**
|
|
20455
20498
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20456
20499
|
* All rights reserved.
|
|
@@ -20482,7 +20525,7 @@ function memoizeStringOnly(callback) {
|
|
|
20482
20525
|
}
|
|
20483
20526
|
|
|
20484
20527
|
module.exports = memoizeStringOnly;
|
|
20485
|
-
},{}],
|
|
20528
|
+
},{}],169:[function(_dereq_,module,exports){
|
|
20486
20529
|
/**
|
|
20487
20530
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20488
20531
|
* All rights reserved.
|
|
@@ -20497,7 +20540,7 @@ module.exports = memoizeStringOnly;
|
|
|
20497
20540
|
|
|
20498
20541
|
'use strict';
|
|
20499
20542
|
|
|
20500
|
-
var ExecutionEnvironment = _dereq_(
|
|
20543
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
20501
20544
|
|
|
20502
20545
|
var performance;
|
|
20503
20546
|
|
|
@@ -20506,7 +20549,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20506
20549
|
}
|
|
20507
20550
|
|
|
20508
20551
|
module.exports = performance || {};
|
|
20509
|
-
},{"
|
|
20552
|
+
},{"147":147}],170:[function(_dereq_,module,exports){
|
|
20510
20553
|
/**
|
|
20511
20554
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20512
20555
|
* All rights reserved.
|
|
@@ -20521,22 +20564,27 @@ module.exports = performance || {};
|
|
|
20521
20564
|
|
|
20522
20565
|
'use strict';
|
|
20523
20566
|
|
|
20524
|
-
var performance = _dereq_(
|
|
20525
|
-
|
|
20567
|
+
var performance = _dereq_(169);
|
|
20568
|
+
|
|
20569
|
+
var performanceNow;
|
|
20526
20570
|
|
|
20527
20571
|
/**
|
|
20528
20572
|
* Detect if we can use `window.performance.now()` and gracefully fallback to
|
|
20529
20573
|
* `Date.now()` if it doesn't exist. We need to support Firefox < 15 for now
|
|
20530
20574
|
* because of Facebook's testing infrastructure.
|
|
20531
20575
|
*/
|
|
20532
|
-
if (
|
|
20533
|
-
|
|
20576
|
+
if (performance.now) {
|
|
20577
|
+
performanceNow = function () {
|
|
20578
|
+
return performance.now();
|
|
20579
|
+
};
|
|
20580
|
+
} else {
|
|
20581
|
+
performanceNow = function () {
|
|
20582
|
+
return Date.now();
|
|
20583
|
+
};
|
|
20534
20584
|
}
|
|
20535
20585
|
|
|
20536
|
-
var performanceNow = curPerformance.now.bind(curPerformance);
|
|
20537
|
-
|
|
20538
20586
|
module.exports = performanceNow;
|
|
20539
|
-
},{"
|
|
20587
|
+
},{"169":169}],171:[function(_dereq_,module,exports){
|
|
20540
20588
|
/**
|
|
20541
20589
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20542
20590
|
* All rights reserved.
|
|
@@ -20587,7 +20635,7 @@ function shallowEqual(objA, objB) {
|
|
|
20587
20635
|
}
|
|
20588
20636
|
|
|
20589
20637
|
module.exports = shallowEqual;
|
|
20590
|
-
},{}],
|
|
20638
|
+
},{}],172:[function(_dereq_,module,exports){
|
|
20591
20639
|
/**
|
|
20592
20640
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20593
20641
|
* All rights reserved.
|
|
@@ -20602,7 +20650,7 @@ module.exports = shallowEqual;
|
|
|
20602
20650
|
|
|
20603
20651
|
'use strict';
|
|
20604
20652
|
|
|
20605
|
-
var invariant = _dereq_(
|
|
20653
|
+
var invariant = _dereq_(161);
|
|
20606
20654
|
|
|
20607
20655
|
/**
|
|
20608
20656
|
* Convert array-like objects to arrays.
|
|
@@ -20645,7 +20693,7 @@ function toArray(obj) {
|
|
|
20645
20693
|
}
|
|
20646
20694
|
|
|
20647
20695
|
module.exports = toArray;
|
|
20648
|
-
},{"
|
|
20696
|
+
},{"161":161}],173:[function(_dereq_,module,exports){
|
|
20649
20697
|
/**
|
|
20650
20698
|
* Copyright 2014-2015, Facebook, Inc.
|
|
20651
20699
|
* All rights reserved.
|
|
@@ -20659,7 +20707,7 @@ module.exports = toArray;
|
|
|
20659
20707
|
|
|
20660
20708
|
'use strict';
|
|
20661
20709
|
|
|
20662
|
-
var emptyFunction = _dereq_(
|
|
20710
|
+
var emptyFunction = _dereq_(153);
|
|
20663
20711
|
|
|
20664
20712
|
/**
|
|
20665
20713
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -20703,5 +20751,5 @@ if ("development" !== 'production') {
|
|
|
20703
20751
|
}
|
|
20704
20752
|
|
|
20705
20753
|
module.exports = warning;
|
|
20706
|
-
},{"
|
|
20754
|
+
},{"153":153}]},{},[1])(1)
|
|
20707
20755
|
});
|