react 0.14.0 → 0.14.1
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/README.md +4 -4
- package/dist/react-with-addons.js +407 -380
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +360 -336
- package/dist/react.min.js +6 -6
- package/lib/ChangeEventPlugin.js +2 -0
- package/lib/HTMLDOMPropertyConfig.js +5 -0
- package/lib/ReactCSSTransitionGroup.js +1 -1
- package/lib/ReactComponent.js +2 -3
- package/lib/ReactDOMComponent.js +3 -7
- package/lib/ReactElement.js +1 -10
- package/lib/ReactElementValidator.js +2 -3
- package/lib/ReactErrorUtils.js +4 -2
- package/lib/ReactMount.js +6 -1
- package/lib/ReactTestUtils.js +8 -5
- package/lib/ReactVersion.js +1 -1
- package/lib/canDefineProperty.js +24 -0
- package/package.json +1 -1
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.1
|
|
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,
|
|
@@ -3277,6 +3280,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3277
3280
|
is: MUST_USE_ATTRIBUTE,
|
|
3278
3281
|
keyParams: MUST_USE_ATTRIBUTE,
|
|
3279
3282
|
keyType: MUST_USE_ATTRIBUTE,
|
|
3283
|
+
kind: null,
|
|
3280
3284
|
label: null,
|
|
3281
3285
|
lang: null,
|
|
3282
3286
|
list: MUST_USE_ATTRIBUTE,
|
|
@@ -3322,6 +3326,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3322
3326
|
spellCheck: null,
|
|
3323
3327
|
src: null,
|
|
3324
3328
|
srcDoc: MUST_USE_PROPERTY,
|
|
3329
|
+
srcLang: null,
|
|
3325
3330
|
srcSet: MUST_USE_ATTRIBUTE,
|
|
3326
3331
|
start: HAS_NUMERIC_VALUE,
|
|
3327
3332
|
step: null,
|
|
@@ -3359,6 +3364,8 @@ var HTMLDOMPropertyConfig = {
|
|
|
3359
3364
|
autoCorrect: null,
|
|
3360
3365
|
// autoSave allows WebKit/Blink to persist values of input fields on page reloads
|
|
3361
3366
|
autoSave: null,
|
|
3367
|
+
// color is for Safari mask-icon link
|
|
3368
|
+
color: null,
|
|
3362
3369
|
// itemProp, itemScope, itemType are for
|
|
3363
3370
|
// Microdata support. See http://schema.org/docs/gs.html
|
|
3364
3371
|
itemProp: MUST_USE_ATTRIBUTE,
|
|
@@ -3403,7 +3410,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3403
3410
|
};
|
|
3404
3411
|
|
|
3405
3412
|
module.exports = HTMLDOMPropertyConfig;
|
|
3406
|
-
},{"10":10,"
|
|
3413
|
+
},{"10":10,"147":147}],22:[function(_dereq_,module,exports){
|
|
3407
3414
|
/**
|
|
3408
3415
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3409
3416
|
* All rights reserved.
|
|
@@ -3458,8 +3465,8 @@ module.exports = LinkedStateMixin;
|
|
|
3458
3465
|
var ReactPropTypes = _dereq_(82);
|
|
3459
3466
|
var ReactPropTypeLocations = _dereq_(81);
|
|
3460
3467
|
|
|
3461
|
-
var invariant = _dereq_(
|
|
3462
|
-
var warning = _dereq_(
|
|
3468
|
+
var invariant = _dereq_(161);
|
|
3469
|
+
var warning = _dereq_(173);
|
|
3463
3470
|
|
|
3464
3471
|
var hasReadOnlyValue = {
|
|
3465
3472
|
'button': true,
|
|
@@ -3575,7 +3582,7 @@ var LinkedValueUtils = {
|
|
|
3575
3582
|
};
|
|
3576
3583
|
|
|
3577
3584
|
module.exports = LinkedValueUtils;
|
|
3578
|
-
},{"
|
|
3585
|
+
},{"161":161,"173":173,"81":81,"82":82}],24:[function(_dereq_,module,exports){
|
|
3579
3586
|
/**
|
|
3580
3587
|
* Copyright 2014-2015, Facebook, Inc.
|
|
3581
3588
|
* All rights reserved.
|
|
@@ -3637,7 +3644,7 @@ module.exports = assign;
|
|
|
3637
3644
|
|
|
3638
3645
|
'use strict';
|
|
3639
3646
|
|
|
3640
|
-
var invariant = _dereq_(
|
|
3647
|
+
var invariant = _dereq_(161);
|
|
3641
3648
|
|
|
3642
3649
|
/**
|
|
3643
3650
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3743,7 +3750,7 @@ var PooledClass = {
|
|
|
3743
3750
|
};
|
|
3744
3751
|
|
|
3745
3752
|
module.exports = PooledClass;
|
|
3746
|
-
},{"
|
|
3753
|
+
},{"161":161}],26:[function(_dereq_,module,exports){
|
|
3747
3754
|
/**
|
|
3748
3755
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3749
3756
|
* All rights reserved.
|
|
@@ -3762,7 +3769,7 @@ var ReactDOMServer = _dereq_(50);
|
|
|
3762
3769
|
var ReactIsomorphic = _dereq_(69);
|
|
3763
3770
|
|
|
3764
3771
|
var assign = _dereq_(24);
|
|
3765
|
-
var deprecated = _dereq_(
|
|
3772
|
+
var deprecated = _dereq_(120);
|
|
3766
3773
|
|
|
3767
3774
|
// `version` will be added here by ReactIsomorphic.
|
|
3768
3775
|
var React = {};
|
|
@@ -3783,7 +3790,7 @@ assign(React, {
|
|
|
3783
3790
|
React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactDOM;
|
|
3784
3791
|
|
|
3785
3792
|
module.exports = React;
|
|
3786
|
-
},{"
|
|
3793
|
+
},{"120":120,"24":24,"40":40,"50":50,"69":69}],27:[function(_dereq_,module,exports){
|
|
3787
3794
|
/**
|
|
3788
3795
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3789
3796
|
* All rights reserved.
|
|
@@ -3799,8 +3806,8 @@ module.exports = React;
|
|
|
3799
3806
|
|
|
3800
3807
|
var ReactInstanceMap = _dereq_(68);
|
|
3801
3808
|
|
|
3802
|
-
var findDOMNode = _dereq_(
|
|
3803
|
-
var warning = _dereq_(
|
|
3809
|
+
var findDOMNode = _dereq_(122);
|
|
3810
|
+
var warning = _dereq_(173);
|
|
3804
3811
|
|
|
3805
3812
|
var didWarnKey = '_getDOMNodeDidWarn';
|
|
3806
3813
|
|
|
@@ -3820,7 +3827,7 @@ var ReactBrowserComponentMixin = {
|
|
|
3820
3827
|
};
|
|
3821
3828
|
|
|
3822
3829
|
module.exports = ReactBrowserComponentMixin;
|
|
3823
|
-
},{"
|
|
3830
|
+
},{"122":122,"173":173,"68":68}],28:[function(_dereq_,module,exports){
|
|
3824
3831
|
/**
|
|
3825
3832
|
* Copyright 2013-2015, Facebook, Inc.
|
|
3826
3833
|
* All rights reserved.
|
|
@@ -3843,7 +3850,7 @@ var ReactPerf = _dereq_(78);
|
|
|
3843
3850
|
var ViewportMetrics = _dereq_(114);
|
|
3844
3851
|
|
|
3845
3852
|
var assign = _dereq_(24);
|
|
3846
|
-
var isEventSupported = _dereq_(
|
|
3853
|
+
var isEventSupported = _dereq_(133);
|
|
3847
3854
|
|
|
3848
3855
|
/**
|
|
3849
3856
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4145,7 +4152,7 @@ ReactPerf.measureMethods(ReactBrowserEventEmitter, 'ReactBrowserEventEmitter', {
|
|
|
4145
4152
|
});
|
|
4146
4153
|
|
|
4147
4154
|
module.exports = ReactBrowserEventEmitter;
|
|
4148
|
-
},{"114":114,"
|
|
4155
|
+
},{"114":114,"133":133,"15":15,"16":16,"17":17,"24":24,"62":62,"78":78}],29:[function(_dereq_,module,exports){
|
|
4149
4156
|
/**
|
|
4150
4157
|
* Copyright 2013-2015, Facebook, Inc.
|
|
4151
4158
|
* All rights reserved.
|
|
@@ -4175,7 +4182,7 @@ function createTransitionTimeoutPropValidator(transitionType) {
|
|
|
4175
4182
|
// If the transition is enabled
|
|
4176
4183
|
if (props[enabledPropName]) {
|
|
4177
4184
|
// If no timeout duration is provided
|
|
4178
|
-
if (
|
|
4185
|
+
if (props[timeoutPropName] == null) {
|
|
4179
4186
|
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
4187
|
|
|
4181
4188
|
// If the duration isn't a number
|
|
@@ -4247,10 +4254,10 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
4247
4254
|
var React = _dereq_(26);
|
|
4248
4255
|
var ReactDOM = _dereq_(40);
|
|
4249
4256
|
|
|
4250
|
-
var CSSCore = _dereq_(
|
|
4257
|
+
var CSSCore = _dereq_(145);
|
|
4251
4258
|
var ReactTransitionEvents = _dereq_(93);
|
|
4252
4259
|
|
|
4253
|
-
var onlyChild = _dereq_(
|
|
4260
|
+
var onlyChild = _dereq_(135);
|
|
4254
4261
|
|
|
4255
4262
|
// We don't remove the element from the DOM until we receive an animationend or
|
|
4256
4263
|
// transitionend event. If the user screws up and forgets to add an animation
|
|
@@ -4390,7 +4397,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4390
4397
|
});
|
|
4391
4398
|
|
|
4392
4399
|
module.exports = ReactCSSTransitionGroupChild;
|
|
4393
|
-
},{"
|
|
4400
|
+
},{"135":135,"145":145,"26":26,"40":40,"93":93}],31:[function(_dereq_,module,exports){
|
|
4394
4401
|
/**
|
|
4395
4402
|
* Copyright 2014-2015, Facebook, Inc.
|
|
4396
4403
|
* All rights reserved.
|
|
@@ -4407,10 +4414,10 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
4407
4414
|
|
|
4408
4415
|
var ReactReconciler = _dereq_(84);
|
|
4409
4416
|
|
|
4410
|
-
var instantiateReactComponent = _dereq_(
|
|
4411
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4412
|
-
var traverseAllChildren = _dereq_(
|
|
4413
|
-
var warning = _dereq_(
|
|
4417
|
+
var instantiateReactComponent = _dereq_(132);
|
|
4418
|
+
var shouldUpdateReactComponent = _dereq_(141);
|
|
4419
|
+
var traverseAllChildren = _dereq_(142);
|
|
4420
|
+
var warning = _dereq_(173);
|
|
4414
4421
|
|
|
4415
4422
|
function instantiateChild(childInstances, child, name) {
|
|
4416
4423
|
// We found a component instance.
|
|
@@ -4513,7 +4520,7 @@ var ReactChildReconciler = {
|
|
|
4513
4520
|
};
|
|
4514
4521
|
|
|
4515
4522
|
module.exports = ReactChildReconciler;
|
|
4516
|
-
},{"
|
|
4523
|
+
},{"132":132,"141":141,"142":142,"173":173,"84":84}],32:[function(_dereq_,module,exports){
|
|
4517
4524
|
/**
|
|
4518
4525
|
* Copyright 2013-2015, Facebook, Inc.
|
|
4519
4526
|
* All rights reserved.
|
|
@@ -4530,8 +4537,8 @@ module.exports = ReactChildReconciler;
|
|
|
4530
4537
|
var PooledClass = _dereq_(25);
|
|
4531
4538
|
var ReactElement = _dereq_(57);
|
|
4532
4539
|
|
|
4533
|
-
var emptyFunction = _dereq_(
|
|
4534
|
-
var traverseAllChildren = _dereq_(
|
|
4540
|
+
var emptyFunction = _dereq_(153);
|
|
4541
|
+
var traverseAllChildren = _dereq_(142);
|
|
4535
4542
|
|
|
4536
4543
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
4537
4544
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -4696,7 +4703,7 @@ var ReactChildren = {
|
|
|
4696
4703
|
};
|
|
4697
4704
|
|
|
4698
4705
|
module.exports = ReactChildren;
|
|
4699
|
-
},{"
|
|
4706
|
+
},{"142":142,"153":153,"25":25,"57":57}],33:[function(_dereq_,module,exports){
|
|
4700
4707
|
/**
|
|
4701
4708
|
* Copyright 2013-2015, Facebook, Inc.
|
|
4702
4709
|
* All rights reserved.
|
|
@@ -4717,11 +4724,11 @@ var ReactPropTypeLocationNames = _dereq_(80);
|
|
|
4717
4724
|
var ReactNoopUpdateQueue = _dereq_(76);
|
|
4718
4725
|
|
|
4719
4726
|
var assign = _dereq_(24);
|
|
4720
|
-
var emptyObject = _dereq_(
|
|
4721
|
-
var invariant = _dereq_(
|
|
4722
|
-
var keyMirror = _dereq_(
|
|
4723
|
-
var keyOf = _dereq_(
|
|
4724
|
-
var warning = _dereq_(
|
|
4727
|
+
var emptyObject = _dereq_(154);
|
|
4728
|
+
var invariant = _dereq_(161);
|
|
4729
|
+
var keyMirror = _dereq_(165);
|
|
4730
|
+
var keyOf = _dereq_(166);
|
|
4731
|
+
var warning = _dereq_(173);
|
|
4725
4732
|
|
|
4726
4733
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4727
4734
|
|
|
@@ -5468,7 +5475,7 @@ var ReactClass = {
|
|
|
5468
5475
|
};
|
|
5469
5476
|
|
|
5470
5477
|
module.exports = ReactClass;
|
|
5471
|
-
},{"
|
|
5478
|
+
},{"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
5479
|
/**
|
|
5473
5480
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5474
5481
|
* All rights reserved.
|
|
@@ -5484,9 +5491,10 @@ module.exports = ReactClass;
|
|
|
5484
5491
|
|
|
5485
5492
|
var ReactNoopUpdateQueue = _dereq_(76);
|
|
5486
5493
|
|
|
5487
|
-
var
|
|
5488
|
-
var
|
|
5489
|
-
var
|
|
5494
|
+
var canDefineProperty = _dereq_(117);
|
|
5495
|
+
var emptyObject = _dereq_(154);
|
|
5496
|
+
var invariant = _dereq_(161);
|
|
5497
|
+
var warning = _dereq_(173);
|
|
5490
5498
|
|
|
5491
5499
|
/**
|
|
5492
5500
|
* Base class helpers for the updating state of a component.
|
|
@@ -5573,15 +5581,13 @@ if ("development" !== 'production') {
|
|
|
5573
5581
|
setProps: ['setProps', 'Instead, call render again at the top level.']
|
|
5574
5582
|
};
|
|
5575
5583
|
var defineDeprecationWarning = function (methodName, info) {
|
|
5576
|
-
|
|
5584
|
+
if (canDefineProperty) {
|
|
5577
5585
|
Object.defineProperty(ReactComponent.prototype, methodName, {
|
|
5578
5586
|
get: function () {
|
|
5579
5587
|
"development" !== 'production' ? warning(false, '%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]) : undefined;
|
|
5580
5588
|
return undefined;
|
|
5581
5589
|
}
|
|
5582
5590
|
});
|
|
5583
|
-
} catch (x) {
|
|
5584
|
-
// IE will fail on defineProperty (es5-shim/sham too)
|
|
5585
5591
|
}
|
|
5586
5592
|
};
|
|
5587
5593
|
for (var fnName in deprecatedAPIs) {
|
|
@@ -5592,7 +5598,7 @@ if ("development" !== 'production') {
|
|
|
5592
5598
|
}
|
|
5593
5599
|
|
|
5594
5600
|
module.exports = ReactComponent;
|
|
5595
|
-
},{"
|
|
5601
|
+
},{"117":117,"154":154,"161":161,"173":173,"76":76}],35:[function(_dereq_,module,exports){
|
|
5596
5602
|
/**
|
|
5597
5603
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5598
5604
|
* All rights reserved.
|
|
@@ -5648,7 +5654,7 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
5648
5654
|
|
|
5649
5655
|
'use strict';
|
|
5650
5656
|
|
|
5651
|
-
var invariant = _dereq_(
|
|
5657
|
+
var invariant = _dereq_(161);
|
|
5652
5658
|
|
|
5653
5659
|
var injected = false;
|
|
5654
5660
|
|
|
@@ -5686,7 +5692,7 @@ var ReactComponentEnvironment = {
|
|
|
5686
5692
|
};
|
|
5687
5693
|
|
|
5688
5694
|
module.exports = ReactComponentEnvironment;
|
|
5689
|
-
},{"
|
|
5695
|
+
},{"161":161}],37:[function(_dereq_,module,exports){
|
|
5690
5696
|
/**
|
|
5691
5697
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5692
5698
|
* All rights reserved.
|
|
@@ -5700,7 +5706,7 @@ module.exports = ReactComponentEnvironment;
|
|
|
5700
5706
|
|
|
5701
5707
|
'use strict';
|
|
5702
5708
|
|
|
5703
|
-
var shallowCompare = _dereq_(
|
|
5709
|
+
var shallowCompare = _dereq_(140);
|
|
5704
5710
|
|
|
5705
5711
|
/**
|
|
5706
5712
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -5733,7 +5739,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
5733
5739
|
};
|
|
5734
5740
|
|
|
5735
5741
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
5736
|
-
},{"
|
|
5742
|
+
},{"140":140}],38:[function(_dereq_,module,exports){
|
|
5737
5743
|
/**
|
|
5738
5744
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5739
5745
|
* All rights reserved.
|
|
@@ -5758,10 +5764,10 @@ var ReactReconciler = _dereq_(84);
|
|
|
5758
5764
|
var ReactUpdateQueue = _dereq_(95);
|
|
5759
5765
|
|
|
5760
5766
|
var assign = _dereq_(24);
|
|
5761
|
-
var emptyObject = _dereq_(
|
|
5762
|
-
var invariant = _dereq_(
|
|
5763
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
5764
|
-
var warning = _dereq_(
|
|
5767
|
+
var emptyObject = _dereq_(154);
|
|
5768
|
+
var invariant = _dereq_(161);
|
|
5769
|
+
var shouldUpdateReactComponent = _dereq_(141);
|
|
5770
|
+
var warning = _dereq_(173);
|
|
5765
5771
|
|
|
5766
5772
|
function getDeclarationErrorAddendum(component) {
|
|
5767
5773
|
var owner = component._currentElement._owner || null;
|
|
@@ -6428,7 +6434,7 @@ var ReactCompositeComponent = {
|
|
|
6428
6434
|
};
|
|
6429
6435
|
|
|
6430
6436
|
module.exports = ReactCompositeComponent;
|
|
6431
|
-
},{"
|
|
6437
|
+
},{"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
6438
|
/**
|
|
6433
6439
|
* Copyright 2013-2015, Facebook, Inc.
|
|
6434
6440
|
* All rights reserved.
|
|
@@ -6485,9 +6491,9 @@ var ReactReconciler = _dereq_(84);
|
|
|
6485
6491
|
var ReactUpdates = _dereq_(96);
|
|
6486
6492
|
var ReactVersion = _dereq_(97);
|
|
6487
6493
|
|
|
6488
|
-
var findDOMNode = _dereq_(
|
|
6489
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
6490
|
-
var warning = _dereq_(
|
|
6494
|
+
var findDOMNode = _dereq_(122);
|
|
6495
|
+
var renderSubtreeIntoContainer = _dereq_(137);
|
|
6496
|
+
var warning = _dereq_(173);
|
|
6491
6497
|
|
|
6492
6498
|
ReactDefaultInjection.inject();
|
|
6493
6499
|
|
|
@@ -6518,7 +6524,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
6518
6524
|
}
|
|
6519
6525
|
|
|
6520
6526
|
if ("development" !== 'production') {
|
|
6521
|
-
var ExecutionEnvironment = _dereq_(
|
|
6527
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
6522
6528
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
6523
6529
|
|
|
6524
6530
|
// First check if devtools is not installed
|
|
@@ -6552,7 +6558,7 @@ if ("development" !== 'production') {
|
|
|
6552
6558
|
}
|
|
6553
6559
|
|
|
6554
6560
|
module.exports = React;
|
|
6555
|
-
},{"
|
|
6561
|
+
},{"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
6562
|
/**
|
|
6557
6563
|
* Copyright 2013-2015, Facebook, Inc.
|
|
6558
6564
|
* All rights reserved.
|
|
@@ -6638,15 +6644,16 @@ var ReactPerf = _dereq_(78);
|
|
|
6638
6644
|
var ReactUpdateQueue = _dereq_(95);
|
|
6639
6645
|
|
|
6640
6646
|
var assign = _dereq_(24);
|
|
6641
|
-
var
|
|
6642
|
-
var
|
|
6643
|
-
var
|
|
6644
|
-
var
|
|
6645
|
-
var
|
|
6646
|
-
var
|
|
6647
|
-
var
|
|
6648
|
-
var
|
|
6649
|
-
var
|
|
6647
|
+
var canDefineProperty = _dereq_(117);
|
|
6648
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
6649
|
+
var invariant = _dereq_(161);
|
|
6650
|
+
var isEventSupported = _dereq_(133);
|
|
6651
|
+
var keyOf = _dereq_(166);
|
|
6652
|
+
var setInnerHTML = _dereq_(138);
|
|
6653
|
+
var setTextContent = _dereq_(139);
|
|
6654
|
+
var shallowEqual = _dereq_(171);
|
|
6655
|
+
var validateDOMNesting = _dereq_(144);
|
|
6656
|
+
var warning = _dereq_(173);
|
|
6650
6657
|
|
|
6651
6658
|
var deleteListener = ReactBrowserEventEmitter.deleteListener;
|
|
6652
6659
|
var listenTo = ReactBrowserEventEmitter.listenTo;
|
|
@@ -6656,15 +6663,10 @@ var registrationNameModules = ReactBrowserEventEmitter.registrationNameModules;
|
|
|
6656
6663
|
var CONTENT_TYPES = { 'string': true, 'number': true };
|
|
6657
6664
|
|
|
6658
6665
|
var STYLE = keyOf({ style: null });
|
|
6666
|
+
var HTML = keyOf({ __html: null });
|
|
6659
6667
|
|
|
6660
6668
|
var ELEMENT_NODE_TYPE = 1;
|
|
6661
6669
|
|
|
6662
|
-
var canDefineProperty = false;
|
|
6663
|
-
try {
|
|
6664
|
-
Object.defineProperty({}, 'test', { get: function () {} });
|
|
6665
|
-
canDefineProperty = true;
|
|
6666
|
-
} catch (e) {}
|
|
6667
|
-
|
|
6668
6670
|
function getDeclarationErrorAddendum(internalInstance) {
|
|
6669
6671
|
if (internalInstance) {
|
|
6670
6672
|
var owner = internalInstance._currentElement._owner || null;
|
|
@@ -6811,7 +6813,7 @@ function assertValidProps(component, props) {
|
|
|
6811
6813
|
}
|
|
6812
6814
|
if (props.dangerouslySetInnerHTML != null) {
|
|
6813
6815
|
!(props.children == null) ? "development" !== 'production' ? invariant(false, 'Can only set one of `children` or `props.dangerouslySetInnerHTML`.') : invariant(false) : undefined;
|
|
6814
|
-
!(typeof props.dangerouslySetInnerHTML === 'object' &&
|
|
6816
|
+
!(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
6817
|
}
|
|
6816
6818
|
if ("development" !== 'production') {
|
|
6817
6819
|
"development" !== 'production' ? warning(props.innerHTML == null, 'Directly setting property `innerHTML` is not permitted. ' + 'For more information, lookup documentation on `dangerouslySetInnerHTML`.') : undefined;
|
|
@@ -7564,7 +7566,7 @@ ReactPerf.measureMethods(ReactDOMComponent, 'ReactDOMComponent', {
|
|
|
7564
7566
|
assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
7565
7567
|
|
|
7566
7568
|
module.exports = ReactDOMComponent;
|
|
7567
|
-
},{"10":10,"11":11,"
|
|
7569
|
+
},{"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
7570
|
/**
|
|
7569
7571
|
* Copyright 2013-2015, Facebook, Inc.
|
|
7570
7572
|
* All rights reserved.
|
|
@@ -7582,7 +7584,7 @@ module.exports = ReactDOMComponent;
|
|
|
7582
7584
|
var ReactElement = _dereq_(57);
|
|
7583
7585
|
var ReactElementValidator = _dereq_(58);
|
|
7584
7586
|
|
|
7585
|
-
var mapObject = _dereq_(
|
|
7587
|
+
var mapObject = _dereq_(167);
|
|
7586
7588
|
|
|
7587
7589
|
/**
|
|
7588
7590
|
* Create a factory that creates HTML tag elements.
|
|
@@ -7742,7 +7744,7 @@ var ReactDOMFactories = mapObject({
|
|
|
7742
7744
|
}, createDOMFactory);
|
|
7743
7745
|
|
|
7744
7746
|
module.exports = ReactDOMFactories;
|
|
7745
|
-
},{"
|
|
7747
|
+
},{"167":167,"57":57,"58":58}],44:[function(_dereq_,module,exports){
|
|
7746
7748
|
/**
|
|
7747
7749
|
* Copyright 2013-2015, Facebook, Inc.
|
|
7748
7750
|
* All rights reserved.
|
|
@@ -7781,7 +7783,7 @@ var DOMPropertyOperations = _dereq_(11);
|
|
|
7781
7783
|
var ReactMount = _dereq_(72);
|
|
7782
7784
|
var ReactPerf = _dereq_(78);
|
|
7783
7785
|
|
|
7784
|
-
var invariant = _dereq_(
|
|
7786
|
+
var invariant = _dereq_(161);
|
|
7785
7787
|
|
|
7786
7788
|
/**
|
|
7787
7789
|
* Errors for properties that should not be updated with `updatePropertyByID()`.
|
|
@@ -7856,7 +7858,7 @@ ReactPerf.measureMethods(ReactDOMIDOperations, 'ReactDOMIDOperations', {
|
|
|
7856
7858
|
});
|
|
7857
7859
|
|
|
7858
7860
|
module.exports = ReactDOMIDOperations;
|
|
7859
|
-
},{"11":11,"
|
|
7861
|
+
},{"11":11,"161":161,"72":72,"78":78,"9":9}],46:[function(_dereq_,module,exports){
|
|
7860
7862
|
/**
|
|
7861
7863
|
* Copyright 2013-2015, Facebook, Inc.
|
|
7862
7864
|
* All rights reserved.
|
|
@@ -7876,7 +7878,7 @@ var ReactMount = _dereq_(72);
|
|
|
7876
7878
|
var ReactUpdates = _dereq_(96);
|
|
7877
7879
|
|
|
7878
7880
|
var assign = _dereq_(24);
|
|
7879
|
-
var invariant = _dereq_(
|
|
7881
|
+
var invariant = _dereq_(161);
|
|
7880
7882
|
|
|
7881
7883
|
var instancesByReactID = {};
|
|
7882
7884
|
|
|
@@ -8010,7 +8012,7 @@ function _handleChange(event) {
|
|
|
8010
8012
|
}
|
|
8011
8013
|
|
|
8012
8014
|
module.exports = ReactDOMInput;
|
|
8013
|
-
},{"
|
|
8015
|
+
},{"161":161,"23":23,"24":24,"45":45,"72":72,"96":96}],47:[function(_dereq_,module,exports){
|
|
8014
8016
|
/**
|
|
8015
8017
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8016
8018
|
* All rights reserved.
|
|
@@ -8028,7 +8030,7 @@ var ReactChildren = _dereq_(32);
|
|
|
8028
8030
|
var ReactDOMSelect = _dereq_(48);
|
|
8029
8031
|
|
|
8030
8032
|
var assign = _dereq_(24);
|
|
8031
|
-
var warning = _dereq_(
|
|
8033
|
+
var warning = _dereq_(173);
|
|
8032
8034
|
|
|
8033
8035
|
var valueContextKey = ReactDOMSelect.valueContextKey;
|
|
8034
8036
|
|
|
@@ -8097,7 +8099,7 @@ var ReactDOMOption = {
|
|
|
8097
8099
|
};
|
|
8098
8100
|
|
|
8099
8101
|
module.exports = ReactDOMOption;
|
|
8100
|
-
},{"
|
|
8102
|
+
},{"173":173,"24":24,"32":32,"48":48}],48:[function(_dereq_,module,exports){
|
|
8101
8103
|
/**
|
|
8102
8104
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8103
8105
|
* All rights reserved.
|
|
@@ -8116,7 +8118,7 @@ var ReactMount = _dereq_(72);
|
|
|
8116
8118
|
var ReactUpdates = _dereq_(96);
|
|
8117
8119
|
|
|
8118
8120
|
var assign = _dereq_(24);
|
|
8119
|
-
var warning = _dereq_(
|
|
8121
|
+
var warning = _dereq_(173);
|
|
8120
8122
|
|
|
8121
8123
|
var valueContextKey = '__ReactDOMSelect_value$' + Math.random().toString(36).slice(2);
|
|
8122
8124
|
|
|
@@ -8286,7 +8288,7 @@ function _handleChange(event) {
|
|
|
8286
8288
|
}
|
|
8287
8289
|
|
|
8288
8290
|
module.exports = ReactDOMSelect;
|
|
8289
|
-
},{"
|
|
8291
|
+
},{"173":173,"23":23,"24":24,"72":72,"96":96}],49:[function(_dereq_,module,exports){
|
|
8290
8292
|
/**
|
|
8291
8293
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8292
8294
|
* All rights reserved.
|
|
@@ -8300,10 +8302,10 @@ module.exports = ReactDOMSelect;
|
|
|
8300
8302
|
|
|
8301
8303
|
'use strict';
|
|
8302
8304
|
|
|
8303
|
-
var ExecutionEnvironment = _dereq_(
|
|
8305
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
8304
8306
|
|
|
8305
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
8306
|
-
var getTextContentAccessor = _dereq_(
|
|
8307
|
+
var getNodeForCharacterOffset = _dereq_(130);
|
|
8308
|
+
var getTextContentAccessor = _dereq_(131);
|
|
8307
8309
|
|
|
8308
8310
|
/**
|
|
8309
8311
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -8499,7 +8501,7 @@ var ReactDOMSelection = {
|
|
|
8499
8501
|
};
|
|
8500
8502
|
|
|
8501
8503
|
module.exports = ReactDOMSelection;
|
|
8502
|
-
},{"
|
|
8504
|
+
},{"130":130,"131":131,"147":147}],50:[function(_dereq_,module,exports){
|
|
8503
8505
|
/**
|
|
8504
8506
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8505
8507
|
* All rights reserved.
|
|
@@ -8547,9 +8549,9 @@ var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
|
8547
8549
|
var ReactMount = _dereq_(72);
|
|
8548
8550
|
|
|
8549
8551
|
var assign = _dereq_(24);
|
|
8550
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
8551
|
-
var setTextContent = _dereq_(
|
|
8552
|
-
var validateDOMNesting = _dereq_(
|
|
8552
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
8553
|
+
var setTextContent = _dereq_(139);
|
|
8554
|
+
var validateDOMNesting = _dereq_(144);
|
|
8553
8555
|
|
|
8554
8556
|
/**
|
|
8555
8557
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -8654,7 +8656,7 @@ assign(ReactDOMTextComponent.prototype, {
|
|
|
8654
8656
|
});
|
|
8655
8657
|
|
|
8656
8658
|
module.exports = ReactDOMTextComponent;
|
|
8657
|
-
},{"11":11,"
|
|
8659
|
+
},{"11":11,"121":121,"139":139,"144":144,"24":24,"35":35,"72":72,"9":9}],52:[function(_dereq_,module,exports){
|
|
8658
8660
|
/**
|
|
8659
8661
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8660
8662
|
* All rights reserved.
|
|
@@ -8673,8 +8675,8 @@ var ReactDOMIDOperations = _dereq_(45);
|
|
|
8673
8675
|
var ReactUpdates = _dereq_(96);
|
|
8674
8676
|
|
|
8675
8677
|
var assign = _dereq_(24);
|
|
8676
|
-
var invariant = _dereq_(
|
|
8677
|
-
var warning = _dereq_(
|
|
8678
|
+
var invariant = _dereq_(161);
|
|
8679
|
+
var warning = _dereq_(173);
|
|
8678
8680
|
|
|
8679
8681
|
function forceUpdateIfMounted() {
|
|
8680
8682
|
if (this._rootNodeID) {
|
|
@@ -8768,7 +8770,7 @@ function _handleChange(event) {
|
|
|
8768
8770
|
}
|
|
8769
8771
|
|
|
8770
8772
|
module.exports = ReactDOMTextarea;
|
|
8771
|
-
},{"
|
|
8773
|
+
},{"161":161,"173":173,"23":23,"24":24,"45":45,"96":96}],53:[function(_dereq_,module,exports){
|
|
8772
8774
|
/**
|
|
8773
8775
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8774
8776
|
* All rights reserved.
|
|
@@ -8786,7 +8788,7 @@ var ReactUpdates = _dereq_(96);
|
|
|
8786
8788
|
var Transaction = _dereq_(113);
|
|
8787
8789
|
|
|
8788
8790
|
var assign = _dereq_(24);
|
|
8789
|
-
var emptyFunction = _dereq_(
|
|
8791
|
+
var emptyFunction = _dereq_(153);
|
|
8790
8792
|
|
|
8791
8793
|
var RESET_BATCHED_UPDATES = {
|
|
8792
8794
|
initialize: emptyFunction,
|
|
@@ -8836,7 +8838,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
8836
8838
|
};
|
|
8837
8839
|
|
|
8838
8840
|
module.exports = ReactDefaultBatchingStrategy;
|
|
8839
|
-
},{"113":113,"
|
|
8841
|
+
},{"113":113,"153":153,"24":24,"96":96}],54:[function(_dereq_,module,exports){
|
|
8840
8842
|
/**
|
|
8841
8843
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8842
8844
|
* All rights reserved.
|
|
@@ -8855,7 +8857,7 @@ var ChangeEventPlugin = _dereq_(7);
|
|
|
8855
8857
|
var ClientReactRootIndex = _dereq_(8);
|
|
8856
8858
|
var DefaultEventPluginOrder = _dereq_(13);
|
|
8857
8859
|
var EnterLeaveEventPlugin = _dereq_(14);
|
|
8858
|
-
var ExecutionEnvironment = _dereq_(
|
|
8860
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
8859
8861
|
var HTMLDOMPropertyConfig = _dereq_(21);
|
|
8860
8862
|
var ReactBrowserComponentMixin = _dereq_(27);
|
|
8861
8863
|
var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
@@ -8934,7 +8936,7 @@ function inject() {
|
|
|
8934
8936
|
module.exports = {
|
|
8935
8937
|
inject: inject
|
|
8936
8938
|
};
|
|
8937
|
-
},{"100":100,"101":101,"13":13,"14":14,"
|
|
8939
|
+
},{"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
8940
|
/**
|
|
8939
8941
|
* Copyright 2013-2015, Facebook, Inc.
|
|
8940
8942
|
* All rights reserved.
|
|
@@ -8954,7 +8956,7 @@ var ReactDefaultPerfAnalysis = _dereq_(56);
|
|
|
8954
8956
|
var ReactMount = _dereq_(72);
|
|
8955
8957
|
var ReactPerf = _dereq_(78);
|
|
8956
8958
|
|
|
8957
|
-
var performanceNow = _dereq_(
|
|
8959
|
+
var performanceNow = _dereq_(170);
|
|
8958
8960
|
|
|
8959
8961
|
function roundFloat(val) {
|
|
8960
8962
|
return Math.floor(val * 100) / 100;
|
|
@@ -9172,7 +9174,7 @@ var ReactDefaultPerf = {
|
|
|
9172
9174
|
};
|
|
9173
9175
|
|
|
9174
9176
|
module.exports = ReactDefaultPerf;
|
|
9175
|
-
},{"10":10,"
|
|
9177
|
+
},{"10":10,"170":170,"56":56,"72":72,"78":78}],56:[function(_dereq_,module,exports){
|
|
9176
9178
|
/**
|
|
9177
9179
|
* Copyright 2013-2015, Facebook, Inc.
|
|
9178
9180
|
* All rights reserved.
|
|
@@ -9389,6 +9391,7 @@ module.exports = ReactDefaultPerfAnalysis;
|
|
|
9389
9391
|
var ReactCurrentOwner = _dereq_(39);
|
|
9390
9392
|
|
|
9391
9393
|
var assign = _dereq_(24);
|
|
9394
|
+
var canDefineProperty = _dereq_(117);
|
|
9392
9395
|
|
|
9393
9396
|
// The Symbol used to tag the ReactElement type. If there is no native Symbol
|
|
9394
9397
|
// nor polyfill, then a plain number is used for performance.
|
|
@@ -9401,16 +9404,6 @@ var RESERVED_PROPS = {
|
|
|
9401
9404
|
__source: true
|
|
9402
9405
|
};
|
|
9403
9406
|
|
|
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
9407
|
/**
|
|
9415
9408
|
* Base constructor for all React elements. This is only used to make this
|
|
9416
9409
|
* work with a dynamic instanceof check. Nothing should live on this prototype.
|
|
@@ -9629,7 +9622,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
9629
9622
|
};
|
|
9630
9623
|
|
|
9631
9624
|
module.exports = ReactElement;
|
|
9632
|
-
},{"24":24,"39":39}],58:[function(_dereq_,module,exports){
|
|
9625
|
+
},{"117":117,"24":24,"39":39}],58:[function(_dereq_,module,exports){
|
|
9633
9626
|
/**
|
|
9634
9627
|
* Copyright 2014-2015, Facebook, Inc.
|
|
9635
9628
|
* All rights reserved.
|
|
@@ -9655,9 +9648,10 @@ var ReactPropTypeLocations = _dereq_(81);
|
|
|
9655
9648
|
var ReactPropTypeLocationNames = _dereq_(80);
|
|
9656
9649
|
var ReactCurrentOwner = _dereq_(39);
|
|
9657
9650
|
|
|
9658
|
-
var
|
|
9659
|
-
var
|
|
9660
|
-
var
|
|
9651
|
+
var canDefineProperty = _dereq_(117);
|
|
9652
|
+
var getIteratorFn = _dereq_(129);
|
|
9653
|
+
var invariant = _dereq_(161);
|
|
9654
|
+
var warning = _dereq_(173);
|
|
9661
9655
|
|
|
9662
9656
|
function getDeclarationErrorAddendum() {
|
|
9663
9657
|
if (ReactCurrentOwner.current) {
|
|
@@ -9881,7 +9875,7 @@ var ReactElementValidator = {
|
|
|
9881
9875
|
validatedFactory.type = type;
|
|
9882
9876
|
|
|
9883
9877
|
if ("development" !== 'production') {
|
|
9884
|
-
|
|
9878
|
+
if (canDefineProperty) {
|
|
9885
9879
|
Object.defineProperty(validatedFactory, 'type', {
|
|
9886
9880
|
enumerable: false,
|
|
9887
9881
|
get: function () {
|
|
@@ -9892,8 +9886,6 @@ var ReactElementValidator = {
|
|
|
9892
9886
|
return type;
|
|
9893
9887
|
}
|
|
9894
9888
|
});
|
|
9895
|
-
} catch (x) {
|
|
9896
|
-
// IE will fail on defineProperty (es5-shim/sham too)
|
|
9897
9889
|
}
|
|
9898
9890
|
}
|
|
9899
9891
|
|
|
@@ -9912,7 +9904,7 @@ var ReactElementValidator = {
|
|
|
9912
9904
|
};
|
|
9913
9905
|
|
|
9914
9906
|
module.exports = ReactElementValidator;
|
|
9915
|
-
},{"
|
|
9907
|
+
},{"117":117,"129":129,"161":161,"173":173,"39":39,"57":57,"80":80,"81":81}],59:[function(_dereq_,module,exports){
|
|
9916
9908
|
/**
|
|
9917
9909
|
* Copyright 2014-2015, Facebook, Inc.
|
|
9918
9910
|
* All rights reserved.
|
|
@@ -10076,12 +10068,14 @@ if ("development" !== 'production') {
|
|
|
10076
10068
|
* To help development we can get better devtools integration by simulating a
|
|
10077
10069
|
* real browser event.
|
|
10078
10070
|
*/
|
|
10079
|
-
if (typeof window !== 'undefined' && typeof window.dispatchEvent === 'function' && typeof
|
|
10071
|
+
if (typeof window !== 'undefined' && typeof window.dispatchEvent === 'function' && typeof document !== 'undefined' && typeof document.createEvent === 'function') {
|
|
10080
10072
|
var fakeNode = document.createElement('react');
|
|
10081
10073
|
ReactErrorUtils.invokeGuardedCallback = function (name, func, a, b) {
|
|
10082
10074
|
var boundFunc = func.bind(null, a, b);
|
|
10083
10075
|
fakeNode.addEventListener(name, boundFunc, false);
|
|
10084
|
-
|
|
10076
|
+
var evt = document.createEvent('Event');
|
|
10077
|
+
evt.initEvent(name, false, false);
|
|
10078
|
+
fakeNode.dispatchEvent(evt);
|
|
10085
10079
|
fakeNode.removeEventListener(name, boundFunc, false);
|
|
10086
10080
|
};
|
|
10087
10081
|
}
|
|
@@ -10142,16 +10136,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
10142
10136
|
|
|
10143
10137
|
'use strict';
|
|
10144
10138
|
|
|
10145
|
-
var EventListener = _dereq_(
|
|
10146
|
-
var ExecutionEnvironment = _dereq_(
|
|
10139
|
+
var EventListener = _dereq_(146);
|
|
10140
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
10147
10141
|
var PooledClass = _dereq_(25);
|
|
10148
10142
|
var ReactInstanceHandles = _dereq_(67);
|
|
10149
10143
|
var ReactMount = _dereq_(72);
|
|
10150
10144
|
var ReactUpdates = _dereq_(96);
|
|
10151
10145
|
|
|
10152
10146
|
var assign = _dereq_(24);
|
|
10153
|
-
var getEventTarget = _dereq_(
|
|
10154
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
10147
|
+
var getEventTarget = _dereq_(128);
|
|
10148
|
+
var getUnboundedScrollPosition = _dereq_(158);
|
|
10155
10149
|
|
|
10156
10150
|
var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
|
|
10157
10151
|
|
|
@@ -10339,7 +10333,7 @@ var ReactEventListener = {
|
|
|
10339
10333
|
};
|
|
10340
10334
|
|
|
10341
10335
|
module.exports = ReactEventListener;
|
|
10342
|
-
},{"
|
|
10336
|
+
},{"128":128,"146":146,"147":147,"158":158,"24":24,"25":25,"67":67,"72":72,"96":96}],64:[function(_dereq_,module,exports){
|
|
10343
10337
|
/**
|
|
10344
10338
|
* Copyright 2015, Facebook, Inc.
|
|
10345
10339
|
* All rights reserved.
|
|
@@ -10356,9 +10350,9 @@ module.exports = ReactEventListener;
|
|
|
10356
10350
|
var ReactChildren = _dereq_(32);
|
|
10357
10351
|
var ReactElement = _dereq_(57);
|
|
10358
10352
|
|
|
10359
|
-
var emptyFunction = _dereq_(
|
|
10360
|
-
var invariant = _dereq_(
|
|
10361
|
-
var warning = _dereq_(
|
|
10353
|
+
var emptyFunction = _dereq_(153);
|
|
10354
|
+
var invariant = _dereq_(161);
|
|
10355
|
+
var warning = _dereq_(173);
|
|
10362
10356
|
|
|
10363
10357
|
/**
|
|
10364
10358
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -10404,7 +10398,7 @@ var ReactFragment = {
|
|
|
10404
10398
|
};
|
|
10405
10399
|
|
|
10406
10400
|
module.exports = ReactFragment;
|
|
10407
|
-
},{"
|
|
10401
|
+
},{"153":153,"161":161,"173":173,"32":32,"57":57}],65:[function(_dereq_,module,exports){
|
|
10408
10402
|
/**
|
|
10409
10403
|
* Copyright 2013-2015, Facebook, Inc.
|
|
10410
10404
|
* All rights reserved.
|
|
@@ -10459,9 +10453,9 @@ module.exports = ReactInjection;
|
|
|
10459
10453
|
|
|
10460
10454
|
var ReactDOMSelection = _dereq_(49);
|
|
10461
10455
|
|
|
10462
|
-
var containsNode = _dereq_(
|
|
10463
|
-
var focusNode = _dereq_(
|
|
10464
|
-
var getActiveElement = _dereq_(
|
|
10456
|
+
var containsNode = _dereq_(150);
|
|
10457
|
+
var focusNode = _dereq_(155);
|
|
10458
|
+
var getActiveElement = _dereq_(156);
|
|
10465
10459
|
|
|
10466
10460
|
function isInDocument(node) {
|
|
10467
10461
|
return containsNode(document.documentElement, node);
|
|
@@ -10568,7 +10562,7 @@ var ReactInputSelection = {
|
|
|
10568
10562
|
};
|
|
10569
10563
|
|
|
10570
10564
|
module.exports = ReactInputSelection;
|
|
10571
|
-
},{"
|
|
10565
|
+
},{"150":150,"155":155,"156":156,"49":49}],67:[function(_dereq_,module,exports){
|
|
10572
10566
|
/**
|
|
10573
10567
|
* Copyright 2013-2015, Facebook, Inc.
|
|
10574
10568
|
* All rights reserved.
|
|
@@ -10585,7 +10579,7 @@ module.exports = ReactInputSelection;
|
|
|
10585
10579
|
|
|
10586
10580
|
var ReactRootIndex = _dereq_(86);
|
|
10587
10581
|
|
|
10588
|
-
var invariant = _dereq_(
|
|
10582
|
+
var invariant = _dereq_(161);
|
|
10589
10583
|
|
|
10590
10584
|
var SEPARATOR = '.';
|
|
10591
10585
|
var SEPARATOR_LENGTH = SEPARATOR.length;
|
|
@@ -10871,7 +10865,7 @@ var ReactInstanceHandles = {
|
|
|
10871
10865
|
};
|
|
10872
10866
|
|
|
10873
10867
|
module.exports = ReactInstanceHandles;
|
|
10874
|
-
},{"
|
|
10868
|
+
},{"161":161,"86":86}],68:[function(_dereq_,module,exports){
|
|
10875
10869
|
/**
|
|
10876
10870
|
* Copyright 2013-2015, Facebook, Inc.
|
|
10877
10871
|
* All rights reserved.
|
|
@@ -10943,7 +10937,7 @@ var ReactPropTypes = _dereq_(82);
|
|
|
10943
10937
|
var ReactVersion = _dereq_(97);
|
|
10944
10938
|
|
|
10945
10939
|
var assign = _dereq_(24);
|
|
10946
|
-
var onlyChild = _dereq_(
|
|
10940
|
+
var onlyChild = _dereq_(135);
|
|
10947
10941
|
|
|
10948
10942
|
var createElement = ReactElement.createElement;
|
|
10949
10943
|
var createFactory = ReactElement.createFactory;
|
|
@@ -10994,7 +10988,7 @@ var React = {
|
|
|
10994
10988
|
};
|
|
10995
10989
|
|
|
10996
10990
|
module.exports = React;
|
|
10997
|
-
},{"
|
|
10991
|
+
},{"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
10992
|
/**
|
|
10999
10993
|
* Copyright 2013-2015, Facebook, Inc.
|
|
11000
10994
|
* All rights reserved.
|
|
@@ -11139,14 +11133,14 @@ var ReactUpdateQueue = _dereq_(95);
|
|
|
11139
11133
|
var ReactUpdates = _dereq_(96);
|
|
11140
11134
|
|
|
11141
11135
|
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_(
|
|
11136
|
+
var emptyObject = _dereq_(154);
|
|
11137
|
+
var containsNode = _dereq_(150);
|
|
11138
|
+
var instantiateReactComponent = _dereq_(132);
|
|
11139
|
+
var invariant = _dereq_(161);
|
|
11140
|
+
var setInnerHTML = _dereq_(138);
|
|
11141
|
+
var shouldUpdateReactComponent = _dereq_(141);
|
|
11142
|
+
var validateDOMNesting = _dereq_(144);
|
|
11143
|
+
var warning = _dereq_(173);
|
|
11150
11144
|
|
|
11151
11145
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
11152
11146
|
var nodeCache = {};
|
|
@@ -11629,7 +11623,12 @@ var ReactMount = {
|
|
|
11629
11623
|
var prevWrappedElement = prevComponent._currentElement;
|
|
11630
11624
|
var prevElement = prevWrappedElement.props;
|
|
11631
11625
|
if (shouldUpdateReactComponent(prevElement, nextElement)) {
|
|
11632
|
-
|
|
11626
|
+
var publicInst = prevComponent._renderedComponent.getPublicInstance();
|
|
11627
|
+
var updatedCallback = callback && function () {
|
|
11628
|
+
callback.call(publicInst);
|
|
11629
|
+
};
|
|
11630
|
+
ReactMount._updateRootComponent(prevComponent, nextWrappedElement, container, updatedCallback);
|
|
11631
|
+
return publicInst;
|
|
11633
11632
|
} else {
|
|
11634
11633
|
ReactMount.unmountComponentAtNode(container);
|
|
11635
11634
|
}
|
|
@@ -11956,7 +11955,7 @@ ReactPerf.measureMethods(ReactMount, 'ReactMount', {
|
|
|
11956
11955
|
});
|
|
11957
11956
|
|
|
11958
11957
|
module.exports = ReactMount;
|
|
11959
|
-
},{"10":10,"
|
|
11958
|
+
},{"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
11959
|
/**
|
|
11961
11960
|
* Copyright 2013-2015, Facebook, Inc.
|
|
11962
11961
|
* All rights reserved.
|
|
@@ -11978,7 +11977,7 @@ var ReactCurrentOwner = _dereq_(39);
|
|
|
11978
11977
|
var ReactReconciler = _dereq_(84);
|
|
11979
11978
|
var ReactChildReconciler = _dereq_(31);
|
|
11980
11979
|
|
|
11981
|
-
var flattenChildren = _dereq_(
|
|
11980
|
+
var flattenChildren = _dereq_(123);
|
|
11982
11981
|
|
|
11983
11982
|
/**
|
|
11984
11983
|
* Updating children of a component may trigger recursive updates. The depth is
|
|
@@ -12453,7 +12452,7 @@ var ReactMultiChild = {
|
|
|
12453
12452
|
};
|
|
12454
12453
|
|
|
12455
12454
|
module.exports = ReactMultiChild;
|
|
12456
|
-
},{"
|
|
12455
|
+
},{"123":123,"31":31,"36":36,"39":39,"74":74,"84":84}],74:[function(_dereq_,module,exports){
|
|
12457
12456
|
/**
|
|
12458
12457
|
* Copyright 2013-2015, Facebook, Inc.
|
|
12459
12458
|
* All rights reserved.
|
|
@@ -12467,7 +12466,7 @@ module.exports = ReactMultiChild;
|
|
|
12467
12466
|
|
|
12468
12467
|
'use strict';
|
|
12469
12468
|
|
|
12470
|
-
var keyMirror = _dereq_(
|
|
12469
|
+
var keyMirror = _dereq_(165);
|
|
12471
12470
|
|
|
12472
12471
|
/**
|
|
12473
12472
|
* When a component's children are updated, a series of update configuration
|
|
@@ -12486,7 +12485,7 @@ var ReactMultiChildUpdateTypes = keyMirror({
|
|
|
12486
12485
|
});
|
|
12487
12486
|
|
|
12488
12487
|
module.exports = ReactMultiChildUpdateTypes;
|
|
12489
|
-
},{"
|
|
12488
|
+
},{"165":165}],75:[function(_dereq_,module,exports){
|
|
12490
12489
|
/**
|
|
12491
12490
|
* Copyright 2014-2015, Facebook, Inc.
|
|
12492
12491
|
* All rights reserved.
|
|
@@ -12501,7 +12500,7 @@ module.exports = ReactMultiChildUpdateTypes;
|
|
|
12501
12500
|
'use strict';
|
|
12502
12501
|
|
|
12503
12502
|
var assign = _dereq_(24);
|
|
12504
|
-
var invariant = _dereq_(
|
|
12503
|
+
var invariant = _dereq_(161);
|
|
12505
12504
|
|
|
12506
12505
|
var autoGenerateWrapperClass = null;
|
|
12507
12506
|
var genericComponentClass = null;
|
|
@@ -12581,7 +12580,7 @@ var ReactNativeComponent = {
|
|
|
12581
12580
|
};
|
|
12582
12581
|
|
|
12583
12582
|
module.exports = ReactNativeComponent;
|
|
12584
|
-
},{"
|
|
12583
|
+
},{"161":161,"24":24}],76:[function(_dereq_,module,exports){
|
|
12585
12584
|
/**
|
|
12586
12585
|
* Copyright 2015, Facebook, Inc.
|
|
12587
12586
|
* All rights reserved.
|
|
@@ -12595,7 +12594,7 @@ module.exports = ReactNativeComponent;
|
|
|
12595
12594
|
|
|
12596
12595
|
'use strict';
|
|
12597
12596
|
|
|
12598
|
-
var warning = _dereq_(
|
|
12597
|
+
var warning = _dereq_(173);
|
|
12599
12598
|
|
|
12600
12599
|
function warnTDZ(publicInstance, callerName) {
|
|
12601
12600
|
if ("development" !== 'production') {
|
|
@@ -12700,7 +12699,7 @@ var ReactNoopUpdateQueue = {
|
|
|
12700
12699
|
};
|
|
12701
12700
|
|
|
12702
12701
|
module.exports = ReactNoopUpdateQueue;
|
|
12703
|
-
},{"
|
|
12702
|
+
},{"173":173}],77:[function(_dereq_,module,exports){
|
|
12704
12703
|
/**
|
|
12705
12704
|
* Copyright 2013-2015, Facebook, Inc.
|
|
12706
12705
|
* All rights reserved.
|
|
@@ -12714,7 +12713,7 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
12714
12713
|
|
|
12715
12714
|
'use strict';
|
|
12716
12715
|
|
|
12717
|
-
var invariant = _dereq_(
|
|
12716
|
+
var invariant = _dereq_(161);
|
|
12718
12717
|
|
|
12719
12718
|
/**
|
|
12720
12719
|
* ReactOwners are capable of storing references to owned components.
|
|
@@ -12792,7 +12791,7 @@ var ReactOwner = {
|
|
|
12792
12791
|
};
|
|
12793
12792
|
|
|
12794
12793
|
module.exports = ReactOwner;
|
|
12795
|
-
},{"
|
|
12794
|
+
},{"161":161}],78:[function(_dereq_,module,exports){
|
|
12796
12795
|
/**
|
|
12797
12796
|
* Copyright 2013-2015, Facebook, Inc.
|
|
12798
12797
|
* All rights reserved.
|
|
@@ -12904,8 +12903,8 @@ module.exports = ReactPerf;
|
|
|
12904
12903
|
'use strict';
|
|
12905
12904
|
|
|
12906
12905
|
var assign = _dereq_(24);
|
|
12907
|
-
var emptyFunction = _dereq_(
|
|
12908
|
-
var joinClasses = _dereq_(
|
|
12906
|
+
var emptyFunction = _dereq_(153);
|
|
12907
|
+
var joinClasses = _dereq_(164);
|
|
12909
12908
|
|
|
12910
12909
|
/**
|
|
12911
12910
|
* Creates a transfer strategy that will merge prop values using the supplied
|
|
@@ -12998,7 +12997,7 @@ var ReactPropTransferer = {
|
|
|
12998
12997
|
};
|
|
12999
12998
|
|
|
13000
12999
|
module.exports = ReactPropTransferer;
|
|
13001
|
-
},{"
|
|
13000
|
+
},{"153":153,"164":164,"24":24}],80:[function(_dereq_,module,exports){
|
|
13002
13001
|
/**
|
|
13003
13002
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13004
13003
|
* All rights reserved.
|
|
@@ -13037,7 +13036,7 @@ module.exports = ReactPropTypeLocationNames;
|
|
|
13037
13036
|
|
|
13038
13037
|
'use strict';
|
|
13039
13038
|
|
|
13040
|
-
var keyMirror = _dereq_(
|
|
13039
|
+
var keyMirror = _dereq_(165);
|
|
13041
13040
|
|
|
13042
13041
|
var ReactPropTypeLocations = keyMirror({
|
|
13043
13042
|
prop: null,
|
|
@@ -13046,7 +13045,7 @@ var ReactPropTypeLocations = keyMirror({
|
|
|
13046
13045
|
});
|
|
13047
13046
|
|
|
13048
13047
|
module.exports = ReactPropTypeLocations;
|
|
13049
|
-
},{"
|
|
13048
|
+
},{"165":165}],82:[function(_dereq_,module,exports){
|
|
13050
13049
|
/**
|
|
13051
13050
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13052
13051
|
* All rights reserved.
|
|
@@ -13063,8 +13062,8 @@ module.exports = ReactPropTypeLocations;
|
|
|
13063
13062
|
var ReactElement = _dereq_(57);
|
|
13064
13063
|
var ReactPropTypeLocationNames = _dereq_(80);
|
|
13065
13064
|
|
|
13066
|
-
var emptyFunction = _dereq_(
|
|
13067
|
-
var getIteratorFn = _dereq_(
|
|
13065
|
+
var emptyFunction = _dereq_(153);
|
|
13066
|
+
var getIteratorFn = _dereq_(129);
|
|
13068
13067
|
|
|
13069
13068
|
/**
|
|
13070
13069
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -13403,7 +13402,7 @@ function getClassName(propValue) {
|
|
|
13403
13402
|
}
|
|
13404
13403
|
|
|
13405
13404
|
module.exports = ReactPropTypes;
|
|
13406
|
-
},{"
|
|
13405
|
+
},{"129":129,"153":153,"57":57,"80":80}],83:[function(_dereq_,module,exports){
|
|
13407
13406
|
/**
|
|
13408
13407
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13409
13408
|
* All rights reserved.
|
|
@@ -13818,9 +13817,9 @@ var ReactServerBatchingStrategy = _dereq_(87);
|
|
|
13818
13817
|
var ReactServerRenderingTransaction = _dereq_(89);
|
|
13819
13818
|
var ReactUpdates = _dereq_(96);
|
|
13820
13819
|
|
|
13821
|
-
var emptyObject = _dereq_(
|
|
13822
|
-
var instantiateReactComponent = _dereq_(
|
|
13823
|
-
var invariant = _dereq_(
|
|
13820
|
+
var emptyObject = _dereq_(154);
|
|
13821
|
+
var instantiateReactComponent = _dereq_(132);
|
|
13822
|
+
var invariant = _dereq_(161);
|
|
13824
13823
|
|
|
13825
13824
|
/**
|
|
13826
13825
|
* @param {ReactElement} element
|
|
@@ -13880,7 +13879,7 @@ module.exports = {
|
|
|
13880
13879
|
renderToString: renderToString,
|
|
13881
13880
|
renderToStaticMarkup: renderToStaticMarkup
|
|
13882
13881
|
};
|
|
13883
|
-
},{"
|
|
13882
|
+
},{"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
13883
|
/**
|
|
13885
13884
|
* Copyright 2014-2015, Facebook, Inc.
|
|
13886
13885
|
* All rights reserved.
|
|
@@ -13900,7 +13899,7 @@ var CallbackQueue = _dereq_(6);
|
|
|
13900
13899
|
var Transaction = _dereq_(113);
|
|
13901
13900
|
|
|
13902
13901
|
var assign = _dereq_(24);
|
|
13903
|
-
var emptyFunction = _dereq_(
|
|
13902
|
+
var emptyFunction = _dereq_(153);
|
|
13904
13903
|
|
|
13905
13904
|
/**
|
|
13906
13905
|
* Provides a `CallbackQueue` queue for collecting `onDOMReady` callbacks
|
|
@@ -13968,7 +13967,7 @@ assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
13968
13967
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
13969
13968
|
|
|
13970
13969
|
module.exports = ReactServerRenderingTransaction;
|
|
13971
|
-
},{"113":113,"
|
|
13970
|
+
},{"113":113,"153":153,"24":24,"25":25,"6":6}],90:[function(_dereq_,module,exports){
|
|
13972
13971
|
/**
|
|
13973
13972
|
* Copyright 2013-2015, Facebook, Inc.
|
|
13974
13973
|
* All rights reserved.
|
|
@@ -14102,9 +14101,9 @@ var ReactUpdates = _dereq_(96);
|
|
|
14102
14101
|
var SyntheticEvent = _dereq_(105);
|
|
14103
14102
|
|
|
14104
14103
|
var assign = _dereq_(24);
|
|
14105
|
-
var emptyObject = _dereq_(
|
|
14106
|
-
var findDOMNode = _dereq_(
|
|
14107
|
-
var invariant = _dereq_(
|
|
14104
|
+
var emptyObject = _dereq_(154);
|
|
14105
|
+
var findDOMNode = _dereq_(122);
|
|
14106
|
+
var invariant = _dereq_(161);
|
|
14108
14107
|
|
|
14109
14108
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
14110
14109
|
|
|
@@ -14161,8 +14160,6 @@ var ReactTestUtils = {
|
|
|
14161
14160
|
},
|
|
14162
14161
|
|
|
14163
14162
|
isDOMComponent: function (inst) {
|
|
14164
|
-
// TODO: Fix this heuristic. It's just here because composites can currently
|
|
14165
|
-
// pretend to be DOM components.
|
|
14166
14163
|
return !!(inst && inst.nodeType === 1 && inst.tagName);
|
|
14167
14164
|
},
|
|
14168
14165
|
|
|
@@ -14233,9 +14230,14 @@ var ReactTestUtils = {
|
|
|
14233
14230
|
}
|
|
14234
14231
|
return ReactTestUtils.findAllInRenderedTree(root, function (inst) {
|
|
14235
14232
|
if (ReactTestUtils.isDOMComponent(inst)) {
|
|
14236
|
-
var
|
|
14237
|
-
|
|
14238
|
-
|
|
14233
|
+
var className = inst.className;
|
|
14234
|
+
if (typeof className !== 'string') {
|
|
14235
|
+
// SVG, probably.
|
|
14236
|
+
className = inst.getAttribute('class') || '';
|
|
14237
|
+
}
|
|
14238
|
+
var classList = className.split(/\s+/);
|
|
14239
|
+
return classNames.every(function (name) {
|
|
14240
|
+
return classList.indexOf(name) !== -1;
|
|
14239
14241
|
});
|
|
14240
14242
|
}
|
|
14241
14243
|
return false;
|
|
@@ -14541,7 +14543,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
14541
14543
|
});
|
|
14542
14544
|
|
|
14543
14545
|
module.exports = ReactTestUtils;
|
|
14544
|
-
},{"105":105,"
|
|
14546
|
+
},{"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
14547
|
/**
|
|
14546
14548
|
* Copyright 2013-2015, Facebook, Inc.
|
|
14547
14549
|
* All rights reserved.
|
|
@@ -14556,7 +14558,7 @@ module.exports = ReactTestUtils;
|
|
|
14556
14558
|
|
|
14557
14559
|
'use strict';
|
|
14558
14560
|
|
|
14559
|
-
var flattenChildren = _dereq_(
|
|
14561
|
+
var flattenChildren = _dereq_(123);
|
|
14560
14562
|
|
|
14561
14563
|
var ReactTransitionChildMapping = {
|
|
14562
14564
|
/**
|
|
@@ -14640,7 +14642,7 @@ var ReactTransitionChildMapping = {
|
|
|
14640
14642
|
};
|
|
14641
14643
|
|
|
14642
14644
|
module.exports = ReactTransitionChildMapping;
|
|
14643
|
-
},{"
|
|
14645
|
+
},{"123":123}],93:[function(_dereq_,module,exports){
|
|
14644
14646
|
/**
|
|
14645
14647
|
* Copyright 2013-2015, Facebook, Inc.
|
|
14646
14648
|
* All rights reserved.
|
|
@@ -14654,7 +14656,7 @@ module.exports = ReactTransitionChildMapping;
|
|
|
14654
14656
|
|
|
14655
14657
|
'use strict';
|
|
14656
14658
|
|
|
14657
|
-
var ExecutionEnvironment = _dereq_(
|
|
14659
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
14658
14660
|
|
|
14659
14661
|
/**
|
|
14660
14662
|
* EVENT_NAME_MAP is used to determine which event fired when a
|
|
@@ -14750,7 +14752,7 @@ var ReactTransitionEvents = {
|
|
|
14750
14752
|
};
|
|
14751
14753
|
|
|
14752
14754
|
module.exports = ReactTransitionEvents;
|
|
14753
|
-
},{"
|
|
14755
|
+
},{"147":147}],94:[function(_dereq_,module,exports){
|
|
14754
14756
|
/**
|
|
14755
14757
|
* Copyright 2013-2015, Facebook, Inc.
|
|
14756
14758
|
* All rights reserved.
|
|
@@ -14768,7 +14770,7 @@ var React = _dereq_(26);
|
|
|
14768
14770
|
var ReactTransitionChildMapping = _dereq_(92);
|
|
14769
14771
|
|
|
14770
14772
|
var assign = _dereq_(24);
|
|
14771
|
-
var emptyFunction = _dereq_(
|
|
14773
|
+
var emptyFunction = _dereq_(153);
|
|
14772
14774
|
|
|
14773
14775
|
var ReactTransitionGroup = React.createClass({
|
|
14774
14776
|
displayName: 'ReactTransitionGroup',
|
|
@@ -14956,7 +14958,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
14956
14958
|
});
|
|
14957
14959
|
|
|
14958
14960
|
module.exports = ReactTransitionGroup;
|
|
14959
|
-
},{"
|
|
14961
|
+
},{"153":153,"24":24,"26":26,"92":92}],95:[function(_dereq_,module,exports){
|
|
14960
14962
|
/**
|
|
14961
14963
|
* Copyright 2015, Facebook, Inc.
|
|
14962
14964
|
* All rights reserved.
|
|
@@ -14976,8 +14978,8 @@ var ReactInstanceMap = _dereq_(68);
|
|
|
14976
14978
|
var ReactUpdates = _dereq_(96);
|
|
14977
14979
|
|
|
14978
14980
|
var assign = _dereq_(24);
|
|
14979
|
-
var invariant = _dereq_(
|
|
14980
|
-
var warning = _dereq_(
|
|
14981
|
+
var invariant = _dereq_(161);
|
|
14982
|
+
var warning = _dereq_(173);
|
|
14981
14983
|
|
|
14982
14984
|
function enqueueUpdate(internalInstance) {
|
|
14983
14985
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -15214,7 +15216,7 @@ var ReactUpdateQueue = {
|
|
|
15214
15216
|
};
|
|
15215
15217
|
|
|
15216
15218
|
module.exports = ReactUpdateQueue;
|
|
15217
|
-
},{"
|
|
15219
|
+
},{"161":161,"173":173,"24":24,"39":39,"57":57,"68":68,"96":96}],96:[function(_dereq_,module,exports){
|
|
15218
15220
|
/**
|
|
15219
15221
|
* Copyright 2013-2015, Facebook, Inc.
|
|
15220
15222
|
* All rights reserved.
|
|
@@ -15235,7 +15237,7 @@ var ReactReconciler = _dereq_(84);
|
|
|
15235
15237
|
var Transaction = _dereq_(113);
|
|
15236
15238
|
|
|
15237
15239
|
var assign = _dereq_(24);
|
|
15238
|
-
var invariant = _dereq_(
|
|
15240
|
+
var invariant = _dereq_(161);
|
|
15239
15241
|
|
|
15240
15242
|
var dirtyComponents = [];
|
|
15241
15243
|
var asapCallbackQueue = CallbackQueue.getPooled();
|
|
@@ -15438,7 +15440,7 @@ var ReactUpdates = {
|
|
|
15438
15440
|
};
|
|
15439
15441
|
|
|
15440
15442
|
module.exports = ReactUpdates;
|
|
15441
|
-
},{"113":113,"
|
|
15443
|
+
},{"113":113,"161":161,"24":24,"25":25,"6":6,"78":78,"84":84}],97:[function(_dereq_,module,exports){
|
|
15442
15444
|
/**
|
|
15443
15445
|
* Copyright 2013-2015, Facebook, Inc.
|
|
15444
15446
|
* All rights reserved.
|
|
@@ -15452,7 +15454,7 @@ module.exports = ReactUpdates;
|
|
|
15452
15454
|
|
|
15453
15455
|
'use strict';
|
|
15454
15456
|
|
|
15455
|
-
module.exports = '0.14.
|
|
15457
|
+
module.exports = '0.14.1';
|
|
15456
15458
|
},{}],98:[function(_dereq_,module,exports){
|
|
15457
15459
|
/**
|
|
15458
15460
|
* Copyright 2013-2015, Facebook, Inc.
|
|
@@ -15597,14 +15599,14 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
15597
15599
|
|
|
15598
15600
|
var EventConstants = _dereq_(15);
|
|
15599
15601
|
var EventPropagators = _dereq_(19);
|
|
15600
|
-
var ExecutionEnvironment = _dereq_(
|
|
15602
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
15601
15603
|
var ReactInputSelection = _dereq_(66);
|
|
15602
15604
|
var SyntheticEvent = _dereq_(105);
|
|
15603
15605
|
|
|
15604
|
-
var getActiveElement = _dereq_(
|
|
15605
|
-
var isTextInputElement = _dereq_(
|
|
15606
|
-
var keyOf = _dereq_(
|
|
15607
|
-
var shallowEqual = _dereq_(
|
|
15606
|
+
var getActiveElement = _dereq_(156);
|
|
15607
|
+
var isTextInputElement = _dereq_(134);
|
|
15608
|
+
var keyOf = _dereq_(166);
|
|
15609
|
+
var shallowEqual = _dereq_(171);
|
|
15608
15610
|
|
|
15609
15611
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15610
15612
|
|
|
@@ -15783,7 +15785,7 @@ var SelectEventPlugin = {
|
|
|
15783
15785
|
};
|
|
15784
15786
|
|
|
15785
15787
|
module.exports = SelectEventPlugin;
|
|
15786
|
-
},{"105":105,"
|
|
15788
|
+
},{"105":105,"134":134,"147":147,"15":15,"156":156,"166":166,"171":171,"19":19,"66":66}],100:[function(_dereq_,module,exports){
|
|
15787
15789
|
/**
|
|
15788
15790
|
* Copyright 2013-2015, Facebook, Inc.
|
|
15789
15791
|
* All rights reserved.
|
|
@@ -15828,7 +15830,7 @@ module.exports = ServerReactRootIndex;
|
|
|
15828
15830
|
'use strict';
|
|
15829
15831
|
|
|
15830
15832
|
var EventConstants = _dereq_(15);
|
|
15831
|
-
var EventListener = _dereq_(
|
|
15833
|
+
var EventListener = _dereq_(146);
|
|
15832
15834
|
var EventPropagators = _dereq_(19);
|
|
15833
15835
|
var ReactMount = _dereq_(72);
|
|
15834
15836
|
var SyntheticClipboardEvent = _dereq_(102);
|
|
@@ -15841,10 +15843,10 @@ var SyntheticTouchEvent = _dereq_(110);
|
|
|
15841
15843
|
var SyntheticUIEvent = _dereq_(111);
|
|
15842
15844
|
var SyntheticWheelEvent = _dereq_(112);
|
|
15843
15845
|
|
|
15844
|
-
var emptyFunction = _dereq_(
|
|
15845
|
-
var getEventCharCode = _dereq_(
|
|
15846
|
-
var invariant = _dereq_(
|
|
15847
|
-
var keyOf = _dereq_(
|
|
15846
|
+
var emptyFunction = _dereq_(153);
|
|
15847
|
+
var getEventCharCode = _dereq_(125);
|
|
15848
|
+
var invariant = _dereq_(161);
|
|
15849
|
+
var keyOf = _dereq_(166);
|
|
15848
15850
|
|
|
15849
15851
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15850
15852
|
|
|
@@ -16401,7 +16403,7 @@ var SimpleEventPlugin = {
|
|
|
16401
16403
|
};
|
|
16402
16404
|
|
|
16403
16405
|
module.exports = SimpleEventPlugin;
|
|
16404
|
-
},{"102":102,"104":104,"105":105,"106":106,"108":108,"109":109,"110":110,"111":111,"112":112,"
|
|
16406
|
+
},{"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
16407
|
/**
|
|
16406
16408
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16407
16409
|
* All rights reserved.
|
|
@@ -16535,8 +16537,8 @@ module.exports = SyntheticDragEvent;
|
|
|
16535
16537
|
var PooledClass = _dereq_(25);
|
|
16536
16538
|
|
|
16537
16539
|
var assign = _dereq_(24);
|
|
16538
|
-
var emptyFunction = _dereq_(
|
|
16539
|
-
var warning = _dereq_(
|
|
16540
|
+
var emptyFunction = _dereq_(153);
|
|
16541
|
+
var warning = _dereq_(173);
|
|
16540
16542
|
|
|
16541
16543
|
/**
|
|
16542
16544
|
* @interface Event
|
|
@@ -16695,7 +16697,7 @@ SyntheticEvent.augmentClass = function (Class, Interface) {
|
|
|
16695
16697
|
PooledClass.addPoolingTo(SyntheticEvent, PooledClass.fourArgumentPooler);
|
|
16696
16698
|
|
|
16697
16699
|
module.exports = SyntheticEvent;
|
|
16698
|
-
},{"
|
|
16700
|
+
},{"153":153,"173":173,"24":24,"25":25}],106:[function(_dereq_,module,exports){
|
|
16699
16701
|
/**
|
|
16700
16702
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16701
16703
|
* All rights reserved.
|
|
@@ -16789,9 +16791,9 @@ module.exports = SyntheticInputEvent;
|
|
|
16789
16791
|
|
|
16790
16792
|
var SyntheticUIEvent = _dereq_(111);
|
|
16791
16793
|
|
|
16792
|
-
var getEventCharCode = _dereq_(
|
|
16793
|
-
var getEventKey = _dereq_(
|
|
16794
|
-
var getEventModifierState = _dereq_(
|
|
16794
|
+
var getEventCharCode = _dereq_(125);
|
|
16795
|
+
var getEventKey = _dereq_(126);
|
|
16796
|
+
var getEventModifierState = _dereq_(127);
|
|
16795
16797
|
|
|
16796
16798
|
/**
|
|
16797
16799
|
* @interface KeyboardEvent
|
|
@@ -16858,7 +16860,7 @@ function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nat
|
|
|
16858
16860
|
SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);
|
|
16859
16861
|
|
|
16860
16862
|
module.exports = SyntheticKeyboardEvent;
|
|
16861
|
-
},{"111":111,"
|
|
16863
|
+
},{"111":111,"125":125,"126":126,"127":127}],109:[function(_dereq_,module,exports){
|
|
16862
16864
|
/**
|
|
16863
16865
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16864
16866
|
* All rights reserved.
|
|
@@ -16876,7 +16878,7 @@ module.exports = SyntheticKeyboardEvent;
|
|
|
16876
16878
|
var SyntheticUIEvent = _dereq_(111);
|
|
16877
16879
|
var ViewportMetrics = _dereq_(114);
|
|
16878
16880
|
|
|
16879
|
-
var getEventModifierState = _dereq_(
|
|
16881
|
+
var getEventModifierState = _dereq_(127);
|
|
16880
16882
|
|
|
16881
16883
|
/**
|
|
16882
16884
|
* @interface MouseEvent
|
|
@@ -16932,7 +16934,7 @@ function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16932
16934
|
SyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);
|
|
16933
16935
|
|
|
16934
16936
|
module.exports = SyntheticMouseEvent;
|
|
16935
|
-
},{"111":111,"114":114,"
|
|
16937
|
+
},{"111":111,"114":114,"127":127}],110:[function(_dereq_,module,exports){
|
|
16936
16938
|
/**
|
|
16937
16939
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16938
16940
|
* All rights reserved.
|
|
@@ -16949,7 +16951,7 @@ module.exports = SyntheticMouseEvent;
|
|
|
16949
16951
|
|
|
16950
16952
|
var SyntheticUIEvent = _dereq_(111);
|
|
16951
16953
|
|
|
16952
|
-
var getEventModifierState = _dereq_(
|
|
16954
|
+
var getEventModifierState = _dereq_(127);
|
|
16953
16955
|
|
|
16954
16956
|
/**
|
|
16955
16957
|
* @interface TouchEvent
|
|
@@ -16979,7 +16981,7 @@ function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16979
16981
|
SyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);
|
|
16980
16982
|
|
|
16981
16983
|
module.exports = SyntheticTouchEvent;
|
|
16982
|
-
},{"111":111,"
|
|
16984
|
+
},{"111":111,"127":127}],111:[function(_dereq_,module,exports){
|
|
16983
16985
|
/**
|
|
16984
16986
|
* Copyright 2013-2015, Facebook, Inc.
|
|
16985
16987
|
* All rights reserved.
|
|
@@ -16996,7 +16998,7 @@ module.exports = SyntheticTouchEvent;
|
|
|
16996
16998
|
|
|
16997
16999
|
var SyntheticEvent = _dereq_(105);
|
|
16998
17000
|
|
|
16999
|
-
var getEventTarget = _dereq_(
|
|
17001
|
+
var getEventTarget = _dereq_(128);
|
|
17000
17002
|
|
|
17001
17003
|
/**
|
|
17002
17004
|
* @interface UIEvent
|
|
@@ -17040,7 +17042,7 @@ function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEve
|
|
|
17040
17042
|
SyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);
|
|
17041
17043
|
|
|
17042
17044
|
module.exports = SyntheticUIEvent;
|
|
17043
|
-
},{"105":105,"
|
|
17045
|
+
},{"105":105,"128":128}],112:[function(_dereq_,module,exports){
|
|
17044
17046
|
/**
|
|
17045
17047
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17046
17048
|
* All rights reserved.
|
|
@@ -17110,7 +17112,7 @@ module.exports = SyntheticWheelEvent;
|
|
|
17110
17112
|
|
|
17111
17113
|
'use strict';
|
|
17112
17114
|
|
|
17113
|
-
var invariant = _dereq_(
|
|
17115
|
+
var invariant = _dereq_(161);
|
|
17114
17116
|
|
|
17115
17117
|
/**
|
|
17116
17118
|
* `Transaction` creates a black box that is able to wrap any method such that
|
|
@@ -17328,7 +17330,7 @@ var Transaction = {
|
|
|
17328
17330
|
};
|
|
17329
17331
|
|
|
17330
17332
|
module.exports = Transaction;
|
|
17331
|
-
},{"
|
|
17333
|
+
},{"161":161}],114:[function(_dereq_,module,exports){
|
|
17332
17334
|
/**
|
|
17333
17335
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17334
17336
|
* All rights reserved.
|
|
@@ -17370,7 +17372,7 @@ module.exports = ViewportMetrics;
|
|
|
17370
17372
|
|
|
17371
17373
|
'use strict';
|
|
17372
17374
|
|
|
17373
|
-
var invariant = _dereq_(
|
|
17375
|
+
var invariant = _dereq_(161);
|
|
17374
17376
|
|
|
17375
17377
|
/**
|
|
17376
17378
|
*
|
|
@@ -17416,7 +17418,7 @@ function accumulateInto(current, next) {
|
|
|
17416
17418
|
}
|
|
17417
17419
|
|
|
17418
17420
|
module.exports = accumulateInto;
|
|
17419
|
-
},{"
|
|
17421
|
+
},{"161":161}],116:[function(_dereq_,module,exports){
|
|
17420
17422
|
/**
|
|
17421
17423
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17422
17424
|
* All rights reserved.
|
|
@@ -17460,6 +17462,31 @@ function adler32(data) {
|
|
|
17460
17462
|
|
|
17461
17463
|
module.exports = adler32;
|
|
17462
17464
|
},{}],117:[function(_dereq_,module,exports){
|
|
17465
|
+
/**
|
|
17466
|
+
* Copyright 2013-2015, Facebook, Inc.
|
|
17467
|
+
* All rights reserved.
|
|
17468
|
+
*
|
|
17469
|
+
* This source code is licensed under the BSD-style license found in the
|
|
17470
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
17471
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
17472
|
+
*
|
|
17473
|
+
* @providesModule canDefineProperty
|
|
17474
|
+
*/
|
|
17475
|
+
|
|
17476
|
+
'use strict';
|
|
17477
|
+
|
|
17478
|
+
var canDefineProperty = false;
|
|
17479
|
+
if ("development" !== 'production') {
|
|
17480
|
+
try {
|
|
17481
|
+
Object.defineProperty({}, 'x', {});
|
|
17482
|
+
canDefineProperty = true;
|
|
17483
|
+
} catch (x) {
|
|
17484
|
+
// IE will fail on defineProperty
|
|
17485
|
+
}
|
|
17486
|
+
}
|
|
17487
|
+
|
|
17488
|
+
module.exports = canDefineProperty;
|
|
17489
|
+
},{}],118:[function(_dereq_,module,exports){
|
|
17463
17490
|
/**
|
|
17464
17491
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17465
17492
|
* All rights reserved.
|
|
@@ -17477,8 +17504,8 @@ module.exports = adler32;
|
|
|
17477
17504
|
var ReactElement = _dereq_(57);
|
|
17478
17505
|
var ReactPropTransferer = _dereq_(79);
|
|
17479
17506
|
|
|
17480
|
-
var keyOf = _dereq_(
|
|
17481
|
-
var warning = _dereq_(
|
|
17507
|
+
var keyOf = _dereq_(166);
|
|
17508
|
+
var warning = _dereq_(173);
|
|
17482
17509
|
|
|
17483
17510
|
var CHILDREN_PROP = keyOf({ children: null });
|
|
17484
17511
|
|
|
@@ -17514,7 +17541,7 @@ function cloneWithProps(child, props) {
|
|
|
17514
17541
|
}
|
|
17515
17542
|
|
|
17516
17543
|
module.exports = cloneWithProps;
|
|
17517
|
-
},{"
|
|
17544
|
+
},{"166":166,"173":173,"57":57,"79":79}],119:[function(_dereq_,module,exports){
|
|
17518
17545
|
/**
|
|
17519
17546
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17520
17547
|
* All rights reserved.
|
|
@@ -17570,7 +17597,7 @@ function dangerousStyleValue(name, value) {
|
|
|
17570
17597
|
}
|
|
17571
17598
|
|
|
17572
17599
|
module.exports = dangerousStyleValue;
|
|
17573
|
-
},{"4":4}],
|
|
17600
|
+
},{"4":4}],120:[function(_dereq_,module,exports){
|
|
17574
17601
|
/**
|
|
17575
17602
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17576
17603
|
* All rights reserved.
|
|
@@ -17585,7 +17612,7 @@ module.exports = dangerousStyleValue;
|
|
|
17585
17612
|
'use strict';
|
|
17586
17613
|
|
|
17587
17614
|
var assign = _dereq_(24);
|
|
17588
|
-
var warning = _dereq_(
|
|
17615
|
+
var warning = _dereq_(173);
|
|
17589
17616
|
|
|
17590
17617
|
/**
|
|
17591
17618
|
* This will log a single deprecation notice per function and forward the call
|
|
@@ -17619,7 +17646,7 @@ function deprecated(fnName, newModule, newPackage, ctx, fn) {
|
|
|
17619
17646
|
}
|
|
17620
17647
|
|
|
17621
17648
|
module.exports = deprecated;
|
|
17622
|
-
},{"
|
|
17649
|
+
},{"173":173,"24":24}],121:[function(_dereq_,module,exports){
|
|
17623
17650
|
/**
|
|
17624
17651
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17625
17652
|
* All rights reserved.
|
|
@@ -17658,7 +17685,7 @@ function escapeTextContentForBrowser(text) {
|
|
|
17658
17685
|
}
|
|
17659
17686
|
|
|
17660
17687
|
module.exports = escapeTextContentForBrowser;
|
|
17661
|
-
},{}],
|
|
17688
|
+
},{}],122:[function(_dereq_,module,exports){
|
|
17662
17689
|
/**
|
|
17663
17690
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17664
17691
|
* All rights reserved.
|
|
@@ -17677,8 +17704,8 @@ var ReactCurrentOwner = _dereq_(39);
|
|
|
17677
17704
|
var ReactInstanceMap = _dereq_(68);
|
|
17678
17705
|
var ReactMount = _dereq_(72);
|
|
17679
17706
|
|
|
17680
|
-
var invariant = _dereq_(
|
|
17681
|
-
var warning = _dereq_(
|
|
17707
|
+
var invariant = _dereq_(161);
|
|
17708
|
+
var warning = _dereq_(173);
|
|
17682
17709
|
|
|
17683
17710
|
/**
|
|
17684
17711
|
* Returns the DOM node rendered by this element.
|
|
@@ -17708,7 +17735,7 @@ function findDOMNode(componentOrElement) {
|
|
|
17708
17735
|
}
|
|
17709
17736
|
|
|
17710
17737
|
module.exports = findDOMNode;
|
|
17711
|
-
},{"
|
|
17738
|
+
},{"161":161,"173":173,"39":39,"68":68,"72":72}],123:[function(_dereq_,module,exports){
|
|
17712
17739
|
/**
|
|
17713
17740
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17714
17741
|
* All rights reserved.
|
|
@@ -17722,8 +17749,8 @@ module.exports = findDOMNode;
|
|
|
17722
17749
|
|
|
17723
17750
|
'use strict';
|
|
17724
17751
|
|
|
17725
|
-
var traverseAllChildren = _dereq_(
|
|
17726
|
-
var warning = _dereq_(
|
|
17752
|
+
var traverseAllChildren = _dereq_(142);
|
|
17753
|
+
var warning = _dereq_(173);
|
|
17727
17754
|
|
|
17728
17755
|
/**
|
|
17729
17756
|
* @param {function} traverseContext Context passed through traversal.
|
|
@@ -17757,7 +17784,7 @@ function flattenChildren(children) {
|
|
|
17757
17784
|
}
|
|
17758
17785
|
|
|
17759
17786
|
module.exports = flattenChildren;
|
|
17760
|
-
},{"
|
|
17787
|
+
},{"142":142,"173":173}],124:[function(_dereq_,module,exports){
|
|
17761
17788
|
/**
|
|
17762
17789
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17763
17790
|
* All rights reserved.
|
|
@@ -17787,7 +17814,7 @@ var forEachAccumulated = function (arr, cb, scope) {
|
|
|
17787
17814
|
};
|
|
17788
17815
|
|
|
17789
17816
|
module.exports = forEachAccumulated;
|
|
17790
|
-
},{}],
|
|
17817
|
+
},{}],125:[function(_dereq_,module,exports){
|
|
17791
17818
|
/**
|
|
17792
17819
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17793
17820
|
* All rights reserved.
|
|
@@ -17838,7 +17865,7 @@ function getEventCharCode(nativeEvent) {
|
|
|
17838
17865
|
}
|
|
17839
17866
|
|
|
17840
17867
|
module.exports = getEventCharCode;
|
|
17841
|
-
},{}],
|
|
17868
|
+
},{}],126:[function(_dereq_,module,exports){
|
|
17842
17869
|
/**
|
|
17843
17870
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17844
17871
|
* All rights reserved.
|
|
@@ -17853,7 +17880,7 @@ module.exports = getEventCharCode;
|
|
|
17853
17880
|
|
|
17854
17881
|
'use strict';
|
|
17855
17882
|
|
|
17856
|
-
var getEventCharCode = _dereq_(
|
|
17883
|
+
var getEventCharCode = _dereq_(125);
|
|
17857
17884
|
|
|
17858
17885
|
/**
|
|
17859
17886
|
* Normalization of deprecated HTML5 `key` values
|
|
@@ -17942,7 +17969,7 @@ function getEventKey(nativeEvent) {
|
|
|
17942
17969
|
}
|
|
17943
17970
|
|
|
17944
17971
|
module.exports = getEventKey;
|
|
17945
|
-
},{"
|
|
17972
|
+
},{"125":125}],127:[function(_dereq_,module,exports){
|
|
17946
17973
|
/**
|
|
17947
17974
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17948
17975
|
* All rights reserved.
|
|
@@ -17987,7 +18014,7 @@ function getEventModifierState(nativeEvent) {
|
|
|
17987
18014
|
}
|
|
17988
18015
|
|
|
17989
18016
|
module.exports = getEventModifierState;
|
|
17990
|
-
},{}],
|
|
18017
|
+
},{}],128:[function(_dereq_,module,exports){
|
|
17991
18018
|
/**
|
|
17992
18019
|
* Copyright 2013-2015, Facebook, Inc.
|
|
17993
18020
|
* All rights reserved.
|
|
@@ -18017,7 +18044,7 @@ function getEventTarget(nativeEvent) {
|
|
|
18017
18044
|
}
|
|
18018
18045
|
|
|
18019
18046
|
module.exports = getEventTarget;
|
|
18020
|
-
},{}],
|
|
18047
|
+
},{}],129:[function(_dereq_,module,exports){
|
|
18021
18048
|
/**
|
|
18022
18049
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18023
18050
|
* All rights reserved.
|
|
@@ -18058,7 +18085,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
18058
18085
|
}
|
|
18059
18086
|
|
|
18060
18087
|
module.exports = getIteratorFn;
|
|
18061
|
-
},{}],
|
|
18088
|
+
},{}],130:[function(_dereq_,module,exports){
|
|
18062
18089
|
/**
|
|
18063
18090
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18064
18091
|
* All rights reserved.
|
|
@@ -18132,7 +18159,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
18132
18159
|
}
|
|
18133
18160
|
|
|
18134
18161
|
module.exports = getNodeForCharacterOffset;
|
|
18135
|
-
},{}],
|
|
18162
|
+
},{}],131:[function(_dereq_,module,exports){
|
|
18136
18163
|
/**
|
|
18137
18164
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18138
18165
|
* All rights reserved.
|
|
@@ -18146,7 +18173,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
18146
18173
|
|
|
18147
18174
|
'use strict';
|
|
18148
18175
|
|
|
18149
|
-
var ExecutionEnvironment = _dereq_(
|
|
18176
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18150
18177
|
|
|
18151
18178
|
var contentKey = null;
|
|
18152
18179
|
|
|
@@ -18166,7 +18193,7 @@ function getTextContentAccessor() {
|
|
|
18166
18193
|
}
|
|
18167
18194
|
|
|
18168
18195
|
module.exports = getTextContentAccessor;
|
|
18169
|
-
},{"
|
|
18196
|
+
},{"147":147}],132:[function(_dereq_,module,exports){
|
|
18170
18197
|
/**
|
|
18171
18198
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18172
18199
|
* All rights reserved.
|
|
@@ -18186,8 +18213,8 @@ var ReactEmptyComponent = _dereq_(59);
|
|
|
18186
18213
|
var ReactNativeComponent = _dereq_(75);
|
|
18187
18214
|
|
|
18188
18215
|
var assign = _dereq_(24);
|
|
18189
|
-
var invariant = _dereq_(
|
|
18190
|
-
var warning = _dereq_(
|
|
18216
|
+
var invariant = _dereq_(161);
|
|
18217
|
+
var warning = _dereq_(173);
|
|
18191
18218
|
|
|
18192
18219
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
18193
18220
|
var ReactCompositeComponentWrapper = function () {};
|
|
@@ -18279,7 +18306,7 @@ function instantiateReactComponent(node) {
|
|
|
18279
18306
|
}
|
|
18280
18307
|
|
|
18281
18308
|
module.exports = instantiateReactComponent;
|
|
18282
|
-
},{"
|
|
18309
|
+
},{"161":161,"173":173,"24":24,"38":38,"59":59,"75":75}],133:[function(_dereq_,module,exports){
|
|
18283
18310
|
/**
|
|
18284
18311
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18285
18312
|
* All rights reserved.
|
|
@@ -18293,7 +18320,7 @@ module.exports = instantiateReactComponent;
|
|
|
18293
18320
|
|
|
18294
18321
|
'use strict';
|
|
18295
18322
|
|
|
18296
|
-
var ExecutionEnvironment = _dereq_(
|
|
18323
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18297
18324
|
|
|
18298
18325
|
var useHasFeature;
|
|
18299
18326
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -18340,7 +18367,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
18340
18367
|
}
|
|
18341
18368
|
|
|
18342
18369
|
module.exports = isEventSupported;
|
|
18343
|
-
},{"
|
|
18370
|
+
},{"147":147}],134:[function(_dereq_,module,exports){
|
|
18344
18371
|
/**
|
|
18345
18372
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18346
18373
|
* All rights reserved.
|
|
@@ -18381,7 +18408,7 @@ function isTextInputElement(elem) {
|
|
|
18381
18408
|
}
|
|
18382
18409
|
|
|
18383
18410
|
module.exports = isTextInputElement;
|
|
18384
|
-
},{}],
|
|
18411
|
+
},{}],135:[function(_dereq_,module,exports){
|
|
18385
18412
|
/**
|
|
18386
18413
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18387
18414
|
* All rights reserved.
|
|
@@ -18396,7 +18423,7 @@ module.exports = isTextInputElement;
|
|
|
18396
18423
|
|
|
18397
18424
|
var ReactElement = _dereq_(57);
|
|
18398
18425
|
|
|
18399
|
-
var invariant = _dereq_(
|
|
18426
|
+
var invariant = _dereq_(161);
|
|
18400
18427
|
|
|
18401
18428
|
/**
|
|
18402
18429
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -18415,7 +18442,7 @@ function onlyChild(children) {
|
|
|
18415
18442
|
}
|
|
18416
18443
|
|
|
18417
18444
|
module.exports = onlyChild;
|
|
18418
|
-
},{"
|
|
18445
|
+
},{"161":161,"57":57}],136:[function(_dereq_,module,exports){
|
|
18419
18446
|
/**
|
|
18420
18447
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18421
18448
|
* All rights reserved.
|
|
@@ -18429,7 +18456,7 @@ module.exports = onlyChild;
|
|
|
18429
18456
|
|
|
18430
18457
|
'use strict';
|
|
18431
18458
|
|
|
18432
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18459
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
18433
18460
|
|
|
18434
18461
|
/**
|
|
18435
18462
|
* Escapes attribute value to prevent scripting attacks.
|
|
@@ -18442,7 +18469,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
18442
18469
|
}
|
|
18443
18470
|
|
|
18444
18471
|
module.exports = quoteAttributeValueForBrowser;
|
|
18445
|
-
},{"
|
|
18472
|
+
},{"121":121}],137:[function(_dereq_,module,exports){
|
|
18446
18473
|
/**
|
|
18447
18474
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18448
18475
|
* All rights reserved.
|
|
@@ -18459,7 +18486,7 @@ module.exports = quoteAttributeValueForBrowser;
|
|
|
18459
18486
|
var ReactMount = _dereq_(72);
|
|
18460
18487
|
|
|
18461
18488
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
18462
|
-
},{"72":72}],
|
|
18489
|
+
},{"72":72}],138:[function(_dereq_,module,exports){
|
|
18463
18490
|
/**
|
|
18464
18491
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18465
18492
|
* All rights reserved.
|
|
@@ -18475,7 +18502,7 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
18475
18502
|
|
|
18476
18503
|
'use strict';
|
|
18477
18504
|
|
|
18478
|
-
var ExecutionEnvironment = _dereq_(
|
|
18505
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18479
18506
|
|
|
18480
18507
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
18481
18508
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
|
@@ -18550,7 +18577,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18550
18577
|
}
|
|
18551
18578
|
|
|
18552
18579
|
module.exports = setInnerHTML;
|
|
18553
|
-
},{"
|
|
18580
|
+
},{"147":147}],139:[function(_dereq_,module,exports){
|
|
18554
18581
|
/**
|
|
18555
18582
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18556
18583
|
* All rights reserved.
|
|
@@ -18564,9 +18591,9 @@ module.exports = setInnerHTML;
|
|
|
18564
18591
|
|
|
18565
18592
|
'use strict';
|
|
18566
18593
|
|
|
18567
|
-
var ExecutionEnvironment = _dereq_(
|
|
18568
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18569
|
-
var setInnerHTML = _dereq_(
|
|
18594
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
18595
|
+
var escapeTextContentForBrowser = _dereq_(121);
|
|
18596
|
+
var setInnerHTML = _dereq_(138);
|
|
18570
18597
|
|
|
18571
18598
|
/**
|
|
18572
18599
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -18591,7 +18618,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18591
18618
|
}
|
|
18592
18619
|
|
|
18593
18620
|
module.exports = setTextContent;
|
|
18594
|
-
},{"
|
|
18621
|
+
},{"121":121,"138":138,"147":147}],140:[function(_dereq_,module,exports){
|
|
18595
18622
|
/**
|
|
18596
18623
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18597
18624
|
* All rights reserved.
|
|
@@ -18605,7 +18632,7 @@ module.exports = setTextContent;
|
|
|
18605
18632
|
|
|
18606
18633
|
'use strict';
|
|
18607
18634
|
|
|
18608
|
-
var shallowEqual = _dereq_(
|
|
18635
|
+
var shallowEqual = _dereq_(171);
|
|
18609
18636
|
|
|
18610
18637
|
/**
|
|
18611
18638
|
* Does a shallow comparison for props and state.
|
|
@@ -18616,7 +18643,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
18616
18643
|
}
|
|
18617
18644
|
|
|
18618
18645
|
module.exports = shallowCompare;
|
|
18619
|
-
},{"
|
|
18646
|
+
},{"171":171}],141:[function(_dereq_,module,exports){
|
|
18620
18647
|
/**
|
|
18621
18648
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18622
18649
|
* All rights reserved.
|
|
@@ -18660,7 +18687,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
18660
18687
|
}
|
|
18661
18688
|
|
|
18662
18689
|
module.exports = shouldUpdateReactComponent;
|
|
18663
|
-
},{}],
|
|
18690
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
18664
18691
|
/**
|
|
18665
18692
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18666
18693
|
* All rights reserved.
|
|
@@ -18678,9 +18705,9 @@ var ReactCurrentOwner = _dereq_(39);
|
|
|
18678
18705
|
var ReactElement = _dereq_(57);
|
|
18679
18706
|
var ReactInstanceHandles = _dereq_(67);
|
|
18680
18707
|
|
|
18681
|
-
var getIteratorFn = _dereq_(
|
|
18682
|
-
var invariant = _dereq_(
|
|
18683
|
-
var warning = _dereq_(
|
|
18708
|
+
var getIteratorFn = _dereq_(129);
|
|
18709
|
+
var invariant = _dereq_(161);
|
|
18710
|
+
var warning = _dereq_(173);
|
|
18684
18711
|
|
|
18685
18712
|
var SEPARATOR = ReactInstanceHandles.SEPARATOR;
|
|
18686
18713
|
var SUBSEPARATOR = ':';
|
|
@@ -18850,7 +18877,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
18850
18877
|
}
|
|
18851
18878
|
|
|
18852
18879
|
module.exports = traverseAllChildren;
|
|
18853
|
-
},{"
|
|
18880
|
+
},{"129":129,"161":161,"173":173,"39":39,"57":57,"67":67}],143:[function(_dereq_,module,exports){
|
|
18854
18881
|
/**
|
|
18855
18882
|
* Copyright 2013-2015, Facebook, Inc.
|
|
18856
18883
|
* All rights reserved.
|
|
@@ -18867,8 +18894,8 @@ module.exports = traverseAllChildren;
|
|
|
18867
18894
|
'use strict';
|
|
18868
18895
|
|
|
18869
18896
|
var assign = _dereq_(24);
|
|
18870
|
-
var keyOf = _dereq_(
|
|
18871
|
-
var invariant = _dereq_(
|
|
18897
|
+
var keyOf = _dereq_(166);
|
|
18898
|
+
var invariant = _dereq_(161);
|
|
18872
18899
|
var hasOwnProperty = ({}).hasOwnProperty;
|
|
18873
18900
|
|
|
18874
18901
|
function shallowCopy(x) {
|
|
@@ -18958,7 +18985,7 @@ function update(value, spec) {
|
|
|
18958
18985
|
}
|
|
18959
18986
|
|
|
18960
18987
|
module.exports = update;
|
|
18961
|
-
},{"
|
|
18988
|
+
},{"161":161,"166":166,"24":24}],144:[function(_dereq_,module,exports){
|
|
18962
18989
|
/**
|
|
18963
18990
|
* Copyright 2015, Facebook, Inc.
|
|
18964
18991
|
* All rights reserved.
|
|
@@ -18973,8 +19000,8 @@ module.exports = update;
|
|
|
18973
19000
|
'use strict';
|
|
18974
19001
|
|
|
18975
19002
|
var assign = _dereq_(24);
|
|
18976
|
-
var emptyFunction = _dereq_(
|
|
18977
|
-
var warning = _dereq_(
|
|
19003
|
+
var emptyFunction = _dereq_(153);
|
|
19004
|
+
var warning = _dereq_(173);
|
|
18978
19005
|
|
|
18979
19006
|
var validateDOMNesting = emptyFunction;
|
|
18980
19007
|
|
|
@@ -19322,7 +19349,7 @@ if ("development" !== 'production') {
|
|
|
19322
19349
|
}
|
|
19323
19350
|
|
|
19324
19351
|
module.exports = validateDOMNesting;
|
|
19325
|
-
},{"
|
|
19352
|
+
},{"153":153,"173":173,"24":24}],145:[function(_dereq_,module,exports){
|
|
19326
19353
|
/**
|
|
19327
19354
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19328
19355
|
* All rights reserved.
|
|
@@ -19337,7 +19364,7 @@ module.exports = validateDOMNesting;
|
|
|
19337
19364
|
|
|
19338
19365
|
'use strict';
|
|
19339
19366
|
|
|
19340
|
-
var invariant = _dereq_(
|
|
19367
|
+
var invariant = _dereq_(161);
|
|
19341
19368
|
|
|
19342
19369
|
/**
|
|
19343
19370
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -19420,7 +19447,7 @@ var CSSCore = {
|
|
|
19420
19447
|
};
|
|
19421
19448
|
|
|
19422
19449
|
module.exports = CSSCore;
|
|
19423
|
-
},{"
|
|
19450
|
+
},{"161":161}],146:[function(_dereq_,module,exports){
|
|
19424
19451
|
/**
|
|
19425
19452
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19426
19453
|
*
|
|
@@ -19442,7 +19469,7 @@ module.exports = CSSCore;
|
|
|
19442
19469
|
|
|
19443
19470
|
'use strict';
|
|
19444
19471
|
|
|
19445
|
-
var emptyFunction = _dereq_(
|
|
19472
|
+
var emptyFunction = _dereq_(153);
|
|
19446
19473
|
|
|
19447
19474
|
/**
|
|
19448
19475
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -19505,7 +19532,7 @@ var EventListener = {
|
|
|
19505
19532
|
};
|
|
19506
19533
|
|
|
19507
19534
|
module.exports = EventListener;
|
|
19508
|
-
},{"
|
|
19535
|
+
},{"153":153}],147:[function(_dereq_,module,exports){
|
|
19509
19536
|
/**
|
|
19510
19537
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19511
19538
|
* All rights reserved.
|
|
@@ -19542,7 +19569,7 @@ var ExecutionEnvironment = {
|
|
|
19542
19569
|
};
|
|
19543
19570
|
|
|
19544
19571
|
module.exports = ExecutionEnvironment;
|
|
19545
|
-
},{}],
|
|
19572
|
+
},{}],148:[function(_dereq_,module,exports){
|
|
19546
19573
|
/**
|
|
19547
19574
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19548
19575
|
* All rights reserved.
|
|
@@ -19575,7 +19602,7 @@ function camelize(string) {
|
|
|
19575
19602
|
}
|
|
19576
19603
|
|
|
19577
19604
|
module.exports = camelize;
|
|
19578
|
-
},{}],
|
|
19605
|
+
},{}],149:[function(_dereq_,module,exports){
|
|
19579
19606
|
/**
|
|
19580
19607
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19581
19608
|
* All rights reserved.
|
|
@@ -19590,7 +19617,7 @@ module.exports = camelize;
|
|
|
19590
19617
|
|
|
19591
19618
|
'use strict';
|
|
19592
19619
|
|
|
19593
|
-
var camelize = _dereq_(
|
|
19620
|
+
var camelize = _dereq_(148);
|
|
19594
19621
|
|
|
19595
19622
|
var msPattern = /^-ms-/;
|
|
19596
19623
|
|
|
@@ -19616,7 +19643,7 @@ function camelizeStyleName(string) {
|
|
|
19616
19643
|
}
|
|
19617
19644
|
|
|
19618
19645
|
module.exports = camelizeStyleName;
|
|
19619
|
-
},{"
|
|
19646
|
+
},{"148":148}],150:[function(_dereq_,module,exports){
|
|
19620
19647
|
/**
|
|
19621
19648
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19622
19649
|
* All rights reserved.
|
|
@@ -19631,7 +19658,7 @@ module.exports = camelizeStyleName;
|
|
|
19631
19658
|
|
|
19632
19659
|
'use strict';
|
|
19633
19660
|
|
|
19634
|
-
var isTextNode = _dereq_(
|
|
19661
|
+
var isTextNode = _dereq_(163);
|
|
19635
19662
|
|
|
19636
19663
|
/*eslint-disable no-bitwise */
|
|
19637
19664
|
|
|
@@ -19672,7 +19699,7 @@ function containsNode(_x, _x2) {
|
|
|
19672
19699
|
}
|
|
19673
19700
|
|
|
19674
19701
|
module.exports = containsNode;
|
|
19675
|
-
},{"
|
|
19702
|
+
},{"163":163}],151:[function(_dereq_,module,exports){
|
|
19676
19703
|
/**
|
|
19677
19704
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19678
19705
|
* All rights reserved.
|
|
@@ -19687,7 +19714,7 @@ module.exports = containsNode;
|
|
|
19687
19714
|
|
|
19688
19715
|
'use strict';
|
|
19689
19716
|
|
|
19690
|
-
var toArray = _dereq_(
|
|
19717
|
+
var toArray = _dereq_(172);
|
|
19691
19718
|
|
|
19692
19719
|
/**
|
|
19693
19720
|
* Perform a heuristic test to determine if an object is "array-like".
|
|
@@ -19758,7 +19785,7 @@ function createArrayFromMixed(obj) {
|
|
|
19758
19785
|
}
|
|
19759
19786
|
|
|
19760
19787
|
module.exports = createArrayFromMixed;
|
|
19761
|
-
},{"
|
|
19788
|
+
},{"172":172}],152:[function(_dereq_,module,exports){
|
|
19762
19789
|
/**
|
|
19763
19790
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19764
19791
|
* All rights reserved.
|
|
@@ -19775,11 +19802,11 @@ module.exports = createArrayFromMixed;
|
|
|
19775
19802
|
|
|
19776
19803
|
'use strict';
|
|
19777
19804
|
|
|
19778
|
-
var ExecutionEnvironment = _dereq_(
|
|
19805
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
19779
19806
|
|
|
19780
|
-
var createArrayFromMixed = _dereq_(
|
|
19781
|
-
var getMarkupWrap = _dereq_(
|
|
19782
|
-
var invariant = _dereq_(
|
|
19807
|
+
var createArrayFromMixed = _dereq_(151);
|
|
19808
|
+
var getMarkupWrap = _dereq_(157);
|
|
19809
|
+
var invariant = _dereq_(161);
|
|
19783
19810
|
|
|
19784
19811
|
/**
|
|
19785
19812
|
* Dummy container used to render all markup.
|
|
@@ -19843,7 +19870,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
19843
19870
|
}
|
|
19844
19871
|
|
|
19845
19872
|
module.exports = createNodesFromMarkup;
|
|
19846
|
-
},{"
|
|
19873
|
+
},{"147":147,"151":151,"157":157,"161":161}],153:[function(_dereq_,module,exports){
|
|
19847
19874
|
/**
|
|
19848
19875
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19849
19876
|
* All rights reserved.
|
|
@@ -19882,7 +19909,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
19882
19909
|
};
|
|
19883
19910
|
|
|
19884
19911
|
module.exports = emptyFunction;
|
|
19885
|
-
},{}],
|
|
19912
|
+
},{}],154:[function(_dereq_,module,exports){
|
|
19886
19913
|
/**
|
|
19887
19914
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19888
19915
|
* All rights reserved.
|
|
@@ -19903,7 +19930,7 @@ if ("development" !== 'production') {
|
|
|
19903
19930
|
}
|
|
19904
19931
|
|
|
19905
19932
|
module.exports = emptyObject;
|
|
19906
|
-
},{}],
|
|
19933
|
+
},{}],155:[function(_dereq_,module,exports){
|
|
19907
19934
|
/**
|
|
19908
19935
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19909
19936
|
* All rights reserved.
|
|
@@ -19930,7 +19957,7 @@ function focusNode(node) {
|
|
|
19930
19957
|
}
|
|
19931
19958
|
|
|
19932
19959
|
module.exports = focusNode;
|
|
19933
|
-
},{}],
|
|
19960
|
+
},{}],156:[function(_dereq_,module,exports){
|
|
19934
19961
|
/**
|
|
19935
19962
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19936
19963
|
* All rights reserved.
|
|
@@ -19964,7 +19991,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
19964
19991
|
}
|
|
19965
19992
|
|
|
19966
19993
|
module.exports = getActiveElement;
|
|
19967
|
-
},{}],
|
|
19994
|
+
},{}],157:[function(_dereq_,module,exports){
|
|
19968
19995
|
/**
|
|
19969
19996
|
* Copyright 2013-2015, Facebook, Inc.
|
|
19970
19997
|
* All rights reserved.
|
|
@@ -19980,9 +20007,9 @@ module.exports = getActiveElement;
|
|
|
19980
20007
|
|
|
19981
20008
|
'use strict';
|
|
19982
20009
|
|
|
19983
|
-
var ExecutionEnvironment = _dereq_(
|
|
20010
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
19984
20011
|
|
|
19985
|
-
var invariant = _dereq_(
|
|
20012
|
+
var invariant = _dereq_(161);
|
|
19986
20013
|
|
|
19987
20014
|
/**
|
|
19988
20015
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -20060,7 +20087,7 @@ function getMarkupWrap(nodeName) {
|
|
|
20060
20087
|
}
|
|
20061
20088
|
|
|
20062
20089
|
module.exports = getMarkupWrap;
|
|
20063
|
-
},{"
|
|
20090
|
+
},{"147":147,"161":161}],158:[function(_dereq_,module,exports){
|
|
20064
20091
|
/**
|
|
20065
20092
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20066
20093
|
* All rights reserved.
|
|
@@ -20099,7 +20126,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
20099
20126
|
}
|
|
20100
20127
|
|
|
20101
20128
|
module.exports = getUnboundedScrollPosition;
|
|
20102
|
-
},{}],
|
|
20129
|
+
},{}],159:[function(_dereq_,module,exports){
|
|
20103
20130
|
/**
|
|
20104
20131
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20105
20132
|
* All rights reserved.
|
|
@@ -20133,7 +20160,7 @@ function hyphenate(string) {
|
|
|
20133
20160
|
}
|
|
20134
20161
|
|
|
20135
20162
|
module.exports = hyphenate;
|
|
20136
|
-
},{}],
|
|
20163
|
+
},{}],160:[function(_dereq_,module,exports){
|
|
20137
20164
|
/**
|
|
20138
20165
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20139
20166
|
* All rights reserved.
|
|
@@ -20148,7 +20175,7 @@ module.exports = hyphenate;
|
|
|
20148
20175
|
|
|
20149
20176
|
'use strict';
|
|
20150
20177
|
|
|
20151
|
-
var hyphenate = _dereq_(
|
|
20178
|
+
var hyphenate = _dereq_(159);
|
|
20152
20179
|
|
|
20153
20180
|
var msPattern = /^ms-/;
|
|
20154
20181
|
|
|
@@ -20173,7 +20200,7 @@ function hyphenateStyleName(string) {
|
|
|
20173
20200
|
}
|
|
20174
20201
|
|
|
20175
20202
|
module.exports = hyphenateStyleName;
|
|
20176
|
-
},{"
|
|
20203
|
+
},{"159":159}],161:[function(_dereq_,module,exports){
|
|
20177
20204
|
/**
|
|
20178
20205
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20179
20206
|
* All rights reserved.
|
|
@@ -20223,7 +20250,7 @@ var invariant = function (condition, format, a, b, c, d, e, f) {
|
|
|
20223
20250
|
};
|
|
20224
20251
|
|
|
20225
20252
|
module.exports = invariant;
|
|
20226
|
-
},{}],
|
|
20253
|
+
},{}],162:[function(_dereq_,module,exports){
|
|
20227
20254
|
/**
|
|
20228
20255
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20229
20256
|
* All rights reserved.
|
|
@@ -20247,7 +20274,7 @@ function isNode(object) {
|
|
|
20247
20274
|
}
|
|
20248
20275
|
|
|
20249
20276
|
module.exports = isNode;
|
|
20250
|
-
},{}],
|
|
20277
|
+
},{}],163:[function(_dereq_,module,exports){
|
|
20251
20278
|
/**
|
|
20252
20279
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20253
20280
|
* All rights reserved.
|
|
@@ -20262,7 +20289,7 @@ module.exports = isNode;
|
|
|
20262
20289
|
|
|
20263
20290
|
'use strict';
|
|
20264
20291
|
|
|
20265
|
-
var isNode = _dereq_(
|
|
20292
|
+
var isNode = _dereq_(162);
|
|
20266
20293
|
|
|
20267
20294
|
/**
|
|
20268
20295
|
* @param {*} object The object to check.
|
|
@@ -20273,7 +20300,7 @@ function isTextNode(object) {
|
|
|
20273
20300
|
}
|
|
20274
20301
|
|
|
20275
20302
|
module.exports = isTextNode;
|
|
20276
|
-
},{"
|
|
20303
|
+
},{"162":162}],164:[function(_dereq_,module,exports){
|
|
20277
20304
|
/**
|
|
20278
20305
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20279
20306
|
* All rights reserved.
|
|
@@ -20313,7 +20340,7 @@ function joinClasses(className /*, ... */) {
|
|
|
20313
20340
|
}
|
|
20314
20341
|
|
|
20315
20342
|
module.exports = joinClasses;
|
|
20316
|
-
},{}],
|
|
20343
|
+
},{}],165:[function(_dereq_,module,exports){
|
|
20317
20344
|
/**
|
|
20318
20345
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20319
20346
|
* All rights reserved.
|
|
@@ -20328,7 +20355,7 @@ module.exports = joinClasses;
|
|
|
20328
20355
|
|
|
20329
20356
|
'use strict';
|
|
20330
20357
|
|
|
20331
|
-
var invariant = _dereq_(
|
|
20358
|
+
var invariant = _dereq_(161);
|
|
20332
20359
|
|
|
20333
20360
|
/**
|
|
20334
20361
|
* Constructs an enumeration with keys equal to their value.
|
|
@@ -20362,7 +20389,7 @@ var keyMirror = function (obj) {
|
|
|
20362
20389
|
};
|
|
20363
20390
|
|
|
20364
20391
|
module.exports = keyMirror;
|
|
20365
|
-
},{"
|
|
20392
|
+
},{"161":161}],166:[function(_dereq_,module,exports){
|
|
20366
20393
|
/**
|
|
20367
20394
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20368
20395
|
* All rights reserved.
|
|
@@ -20398,7 +20425,7 @@ var keyOf = function (oneKeyObj) {
|
|
|
20398
20425
|
};
|
|
20399
20426
|
|
|
20400
20427
|
module.exports = keyOf;
|
|
20401
|
-
},{}],
|
|
20428
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
20402
20429
|
/**
|
|
20403
20430
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20404
20431
|
* All rights reserved.
|
|
@@ -20450,7 +20477,7 @@ function mapObject(object, callback, context) {
|
|
|
20450
20477
|
}
|
|
20451
20478
|
|
|
20452
20479
|
module.exports = mapObject;
|
|
20453
|
-
},{}],
|
|
20480
|
+
},{}],168:[function(_dereq_,module,exports){
|
|
20454
20481
|
/**
|
|
20455
20482
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20456
20483
|
* All rights reserved.
|
|
@@ -20482,7 +20509,7 @@ function memoizeStringOnly(callback) {
|
|
|
20482
20509
|
}
|
|
20483
20510
|
|
|
20484
20511
|
module.exports = memoizeStringOnly;
|
|
20485
|
-
},{}],
|
|
20512
|
+
},{}],169:[function(_dereq_,module,exports){
|
|
20486
20513
|
/**
|
|
20487
20514
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20488
20515
|
* All rights reserved.
|
|
@@ -20497,7 +20524,7 @@ module.exports = memoizeStringOnly;
|
|
|
20497
20524
|
|
|
20498
20525
|
'use strict';
|
|
20499
20526
|
|
|
20500
|
-
var ExecutionEnvironment = _dereq_(
|
|
20527
|
+
var ExecutionEnvironment = _dereq_(147);
|
|
20501
20528
|
|
|
20502
20529
|
var performance;
|
|
20503
20530
|
|
|
@@ -20506,7 +20533,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20506
20533
|
}
|
|
20507
20534
|
|
|
20508
20535
|
module.exports = performance || {};
|
|
20509
|
-
},{"
|
|
20536
|
+
},{"147":147}],170:[function(_dereq_,module,exports){
|
|
20510
20537
|
/**
|
|
20511
20538
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20512
20539
|
* All rights reserved.
|
|
@@ -20521,7 +20548,7 @@ module.exports = performance || {};
|
|
|
20521
20548
|
|
|
20522
20549
|
'use strict';
|
|
20523
20550
|
|
|
20524
|
-
var performance = _dereq_(
|
|
20551
|
+
var performance = _dereq_(169);
|
|
20525
20552
|
var curPerformance = performance;
|
|
20526
20553
|
|
|
20527
20554
|
/**
|
|
@@ -20536,7 +20563,7 @@ if (!curPerformance || !curPerformance.now) {
|
|
|
20536
20563
|
var performanceNow = curPerformance.now.bind(curPerformance);
|
|
20537
20564
|
|
|
20538
20565
|
module.exports = performanceNow;
|
|
20539
|
-
},{"
|
|
20566
|
+
},{"169":169}],171:[function(_dereq_,module,exports){
|
|
20540
20567
|
/**
|
|
20541
20568
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20542
20569
|
* All rights reserved.
|
|
@@ -20587,7 +20614,7 @@ function shallowEqual(objA, objB) {
|
|
|
20587
20614
|
}
|
|
20588
20615
|
|
|
20589
20616
|
module.exports = shallowEqual;
|
|
20590
|
-
},{}],
|
|
20617
|
+
},{}],172:[function(_dereq_,module,exports){
|
|
20591
20618
|
/**
|
|
20592
20619
|
* Copyright 2013-2015, Facebook, Inc.
|
|
20593
20620
|
* All rights reserved.
|
|
@@ -20602,7 +20629,7 @@ module.exports = shallowEqual;
|
|
|
20602
20629
|
|
|
20603
20630
|
'use strict';
|
|
20604
20631
|
|
|
20605
|
-
var invariant = _dereq_(
|
|
20632
|
+
var invariant = _dereq_(161);
|
|
20606
20633
|
|
|
20607
20634
|
/**
|
|
20608
20635
|
* Convert array-like objects to arrays.
|
|
@@ -20645,7 +20672,7 @@ function toArray(obj) {
|
|
|
20645
20672
|
}
|
|
20646
20673
|
|
|
20647
20674
|
module.exports = toArray;
|
|
20648
|
-
},{"
|
|
20675
|
+
},{"161":161}],173:[function(_dereq_,module,exports){
|
|
20649
20676
|
/**
|
|
20650
20677
|
* Copyright 2014-2015, Facebook, Inc.
|
|
20651
20678
|
* All rights reserved.
|
|
@@ -20659,7 +20686,7 @@ module.exports = toArray;
|
|
|
20659
20686
|
|
|
20660
20687
|
'use strict';
|
|
20661
20688
|
|
|
20662
|
-
var emptyFunction = _dereq_(
|
|
20689
|
+
var emptyFunction = _dereq_(153);
|
|
20663
20690
|
|
|
20664
20691
|
/**
|
|
20665
20692
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -20703,5 +20730,5 @@ if ("development" !== 'production') {
|
|
|
20703
20730
|
}
|
|
20704
20731
|
|
|
20705
20732
|
module.exports = warning;
|
|
20706
|
-
},{"
|
|
20733
|
+
},{"153":153}]},{},[1])(1)
|
|
20707
20734
|
});
|