react 15.6.1 → 15.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +16 -26
- package/dist/react-with-addons.js +127 -211
- package/dist/react-with-addons.min.js +5 -7
- package/dist/react.js +79 -131
- package/dist/react.min.js +5 -7
- package/lib/KeyEscapeUtils.js +3 -5
- package/lib/LinkedStateMixin.js +3 -5
- package/lib/PooledClass.js +3 -5
- package/lib/React.js +3 -5
- package/lib/ReactAddonsDOMDependencies.js +3 -5
- package/lib/ReactAddonsDOMDependenciesUMDShim.js +3 -5
- package/lib/ReactBaseClasses.js +3 -5
- package/lib/ReactCSSTransitionGroup.js +3 -5
- package/lib/ReactCSSTransitionGroupChild.js +3 -5
- package/lib/ReactChildren.js +3 -5
- package/lib/ReactComponentTreeDevtool.js +3 -5
- package/lib/ReactComponentTreeHook.js +3 -5
- package/lib/ReactComponentTreeHookUMDShim.js +3 -5
- package/lib/ReactComponentWithPureRenderMixin.js +3 -5
- package/lib/ReactCurrentOwner.js +3 -5
- package/lib/ReactCurrentOwnerUMDShim.js +3 -5
- package/lib/ReactDOMFactories.js +3 -5
- package/lib/ReactElement.js +3 -5
- package/lib/ReactElementSymbol.js +3 -5
- package/lib/ReactElementType.js +3 -5
- package/lib/ReactElementValidator.js +3 -5
- package/lib/ReactFragment.js +3 -5
- package/lib/ReactLink.js +3 -5
- package/lib/ReactNoopUpdateQueue.js +3 -5
- package/lib/ReactPropTypeLocationNames.js +3 -5
- package/lib/ReactPropTypeLocations.js +3 -5
- package/lib/ReactPropTypes.js +3 -5
- package/lib/ReactPropTypesSecret.js +3 -5
- package/lib/ReactStateSetters.js +3 -5
- package/lib/ReactTransitionChildMapping.js +3 -5
- package/lib/ReactTransitionEvents.js +3 -5
- package/lib/ReactTransitionGroup.js +3 -5
- package/lib/ReactUMDEntry.js +3 -5
- package/lib/ReactUMDShim.js +3 -5
- package/lib/ReactVersion.js +4 -6
- package/lib/ReactWithAddons.js +3 -5
- package/lib/ReactWithAddonsUMDEntry.js +3 -5
- package/lib/canDefineProperty.js +3 -5
- package/lib/checkReactTypeSpec.js +3 -5
- package/lib/createClass.js +3 -5
- package/lib/deprecated.js +3 -5
- package/lib/flattenChildren.js +3 -5
- package/lib/getIteratorFn.js +3 -5
- package/lib/getNextDebugID.js +3 -5
- package/lib/getNextDebugIDUMDShim.js +3 -5
- package/lib/lowPriorityWarning.js +3 -5
- package/lib/onlyChild.js +3 -5
- package/lib/reactProdInvariant.js +2 -4
- package/lib/shallowCompare.js +3 -5
- package/lib/sliceChildren.js +3 -5
- package/lib/traverseAllChildren.js +3 -5
- package/lib/update.js +3 -5
- package/package.json +2 -3
- package/PATENTS +0 -33
package/LICENSE
CHANGED
|
@@ -1,31 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
For React software
|
|
1
|
+
MIT License
|
|
4
2
|
|
|
5
3
|
Copyright (c) 2013-present, Facebook, Inc.
|
|
6
|
-
All rights reserved.
|
|
7
|
-
|
|
8
|
-
Redistribution and use in source and binary forms, with or without modification,
|
|
9
|
-
are permitted provided that the following conditions are met:
|
|
10
|
-
|
|
11
|
-
* Redistributions of source code must retain the above copyright notice, this
|
|
12
|
-
list of conditions and the following disclaimer.
|
|
13
4
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
17
11
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
prior written permission.
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
21
14
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
30
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
31
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v15.6.
|
|
2
|
+
* React (with addons) v15.6.2
|
|
3
3
|
*/
|
|
4
4
|
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
|
|
5
5
|
/**
|
|
6
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
7
|
-
* All rights reserved.
|
|
6
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
8
7
|
*
|
|
9
|
-
* This source code is licensed under the
|
|
10
|
-
* LICENSE file in the root directory of this source tree.
|
|
11
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
8
|
+
* This source code is licensed under the MIT license found in the
|
|
9
|
+
* LICENSE file in the root directory of this source tree.
|
|
12
10
|
*
|
|
13
11
|
*/
|
|
14
12
|
|
|
@@ -104,12 +102,10 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
104
102
|
module.exports = getVendorPrefixedEventName;
|
|
105
103
|
},{"45":45}],2:[function(_dereq_,module,exports){
|
|
106
104
|
/**
|
|
107
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
108
|
-
* All rights reserved.
|
|
105
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
109
106
|
*
|
|
110
|
-
* This source code is licensed under the
|
|
111
|
-
* LICENSE file in the root directory of this source tree.
|
|
112
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
107
|
+
* This source code is licensed under the MIT license found in the
|
|
108
|
+
* LICENSE file in the root directory of this source tree.
|
|
113
109
|
*
|
|
114
110
|
*
|
|
115
111
|
*/
|
|
@@ -163,12 +159,10 @@ var KeyEscapeUtils = {
|
|
|
163
159
|
module.exports = KeyEscapeUtils;
|
|
164
160
|
},{}],3:[function(_dereq_,module,exports){
|
|
165
161
|
/**
|
|
166
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
167
|
-
* All rights reserved.
|
|
162
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
168
163
|
*
|
|
169
|
-
* This source code is licensed under the
|
|
170
|
-
* LICENSE file in the root directory of this source tree.
|
|
171
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
164
|
+
* This source code is licensed under the MIT license found in the
|
|
165
|
+
* LICENSE file in the root directory of this source tree.
|
|
172
166
|
*
|
|
173
167
|
*/
|
|
174
168
|
|
|
@@ -198,12 +192,10 @@ var LinkedStateMixin = {
|
|
|
198
192
|
module.exports = LinkedStateMixin;
|
|
199
193
|
},{"19":19,"24":24}],4:[function(_dereq_,module,exports){
|
|
200
194
|
/**
|
|
201
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
202
|
-
* All rights reserved.
|
|
195
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
203
196
|
*
|
|
204
|
-
* This source code is licensed under the
|
|
205
|
-
* LICENSE file in the root directory of this source tree.
|
|
206
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
197
|
+
* This source code is licensed under the MIT license found in the
|
|
198
|
+
* LICENSE file in the root directory of this source tree.
|
|
207
199
|
*
|
|
208
200
|
*
|
|
209
201
|
*/
|
|
@@ -310,12 +302,10 @@ var PooledClass = {
|
|
|
310
302
|
module.exports = PooledClass;
|
|
311
303
|
},{"39":39,"48":48}],5:[function(_dereq_,module,exports){
|
|
312
304
|
/**
|
|
313
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
314
|
-
* All rights reserved.
|
|
305
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
315
306
|
*
|
|
316
|
-
* This source code is licensed under the
|
|
317
|
-
* LICENSE file in the root directory of this source tree.
|
|
318
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
307
|
+
* This source code is licensed under the MIT license found in the
|
|
308
|
+
* LICENSE file in the root directory of this source tree.
|
|
319
309
|
*
|
|
320
310
|
*/
|
|
321
311
|
|
|
@@ -442,12 +432,10 @@ if ("development" !== 'production') {
|
|
|
442
432
|
module.exports = React;
|
|
443
433
|
},{"10":10,"14":14,"15":15,"17":17,"22":22,"28":28,"31":31,"33":33,"37":37,"38":38,"51":51,"7":7}],6:[function(_dereq_,module,exports){
|
|
444
434
|
/**
|
|
445
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
446
|
-
* All rights reserved.
|
|
435
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
447
436
|
*
|
|
448
|
-
* This source code is licensed under the
|
|
449
|
-
* LICENSE file in the root directory of this source tree.
|
|
450
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
437
|
+
* This source code is licensed under the MIT license found in the
|
|
438
|
+
* LICENSE file in the root directory of this source tree.
|
|
451
439
|
*
|
|
452
440
|
*/
|
|
453
441
|
|
|
@@ -478,12 +466,10 @@ if ("development" !== 'production') {
|
|
|
478
466
|
}
|
|
479
467
|
},{"30":30}],7:[function(_dereq_,module,exports){
|
|
480
468
|
/**
|
|
481
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
482
|
-
* All rights reserved.
|
|
469
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
483
470
|
*
|
|
484
|
-
* This source code is licensed under the
|
|
485
|
-
* LICENSE file in the root directory of this source tree.
|
|
486
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
471
|
+
* This source code is licensed under the MIT license found in the
|
|
472
|
+
* LICENSE file in the root directory of this source tree.
|
|
487
473
|
*
|
|
488
474
|
*/
|
|
489
475
|
|
|
@@ -621,12 +607,10 @@ module.exports = {
|
|
|
621
607
|
};
|
|
622
608
|
},{"20":20,"31":31,"37":37,"39":39,"47":47,"48":48,"51":51}],8:[function(_dereq_,module,exports){
|
|
623
609
|
/**
|
|
624
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
625
|
-
* All rights reserved.
|
|
610
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
626
611
|
*
|
|
627
|
-
* This source code is licensed under the
|
|
628
|
-
* LICENSE file in the root directory of this source tree.
|
|
629
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
612
|
+
* This source code is licensed under the MIT license found in the
|
|
613
|
+
* LICENSE file in the root directory of this source tree.
|
|
630
614
|
*
|
|
631
615
|
*/
|
|
632
616
|
|
|
@@ -728,12 +712,10 @@ ReactCSSTransitionGroup.defaultProps = {
|
|
|
728
712
|
module.exports = ReactCSSTransitionGroup;
|
|
729
713
|
},{"27":27,"5":5,"51":51,"53":53,"9":9}],9:[function(_dereq_,module,exports){
|
|
730
714
|
/**
|
|
731
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
732
|
-
* All rights reserved.
|
|
715
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
733
716
|
*
|
|
734
|
-
* This source code is licensed under the
|
|
735
|
-
* LICENSE file in the root directory of this source tree.
|
|
736
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
717
|
+
* This source code is licensed under the MIT license found in the
|
|
718
|
+
* LICENSE file in the root directory of this source tree.
|
|
737
719
|
*
|
|
738
720
|
*/
|
|
739
721
|
|
|
@@ -913,12 +895,10 @@ ReactCSSTransitionGroupChild.propTypes = {
|
|
|
913
895
|
module.exports = ReactCSSTransitionGroupChild;
|
|
914
896
|
},{"26":26,"38":38,"44":44,"5":5,"53":53,"6":6}],10:[function(_dereq_,module,exports){
|
|
915
897
|
/**
|
|
916
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
917
|
-
* All rights reserved.
|
|
898
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
918
899
|
*
|
|
919
|
-
* This source code is licensed under the
|
|
920
|
-
* LICENSE file in the root directory of this source tree.
|
|
921
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
900
|
+
* This source code is licensed under the MIT license found in the
|
|
901
|
+
* LICENSE file in the root directory of this source tree.
|
|
922
902
|
*
|
|
923
903
|
*/
|
|
924
904
|
|
|
@@ -1104,12 +1084,10 @@ var ReactChildren = {
|
|
|
1104
1084
|
module.exports = ReactChildren;
|
|
1105
1085
|
},{"15":15,"4":4,"41":41,"46":46}],11:[function(_dereq_,module,exports){
|
|
1106
1086
|
/**
|
|
1107
|
-
* Copyright 2016-present, Facebook, Inc.
|
|
1108
|
-
* All rights reserved.
|
|
1087
|
+
* Copyright (c) 2016-present, Facebook, Inc.
|
|
1109
1088
|
*
|
|
1110
|
-
* This source code is licensed under the
|
|
1111
|
-
* LICENSE file in the root directory of this source tree.
|
|
1112
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1089
|
+
* This source code is licensed under the MIT license found in the
|
|
1090
|
+
* LICENSE file in the root directory of this source tree.
|
|
1113
1091
|
*
|
|
1114
1092
|
*
|
|
1115
1093
|
*/
|
|
@@ -1483,12 +1461,10 @@ var ReactComponentTreeHook = {
|
|
|
1483
1461
|
module.exports = ReactComponentTreeHook;
|
|
1484
1462
|
},{"13":13,"39":39,"48":48,"50":50}],12:[function(_dereq_,module,exports){
|
|
1485
1463
|
/**
|
|
1486
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
1487
|
-
* All rights reserved.
|
|
1464
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
1488
1465
|
*
|
|
1489
|
-
* This source code is licensed under the
|
|
1490
|
-
* LICENSE file in the root directory of this source tree.
|
|
1491
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1466
|
+
* This source code is licensed under the MIT license found in the
|
|
1467
|
+
* LICENSE file in the root directory of this source tree.
|
|
1492
1468
|
*
|
|
1493
1469
|
*/
|
|
1494
1470
|
|
|
@@ -1531,12 +1507,10 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
1531
1507
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
1532
1508
|
},{"40":40}],13:[function(_dereq_,module,exports){
|
|
1533
1509
|
/**
|
|
1534
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
1535
|
-
* All rights reserved.
|
|
1510
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
1536
1511
|
*
|
|
1537
|
-
* This source code is licensed under the
|
|
1538
|
-
* LICENSE file in the root directory of this source tree.
|
|
1539
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1512
|
+
* This source code is licensed under the MIT license found in the
|
|
1513
|
+
* LICENSE file in the root directory of this source tree.
|
|
1540
1514
|
*
|
|
1541
1515
|
*
|
|
1542
1516
|
*/
|
|
@@ -1560,12 +1534,10 @@ var ReactCurrentOwner = {
|
|
|
1560
1534
|
module.exports = ReactCurrentOwner;
|
|
1561
1535
|
},{}],14:[function(_dereq_,module,exports){
|
|
1562
1536
|
/**
|
|
1563
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
1564
|
-
* All rights reserved.
|
|
1537
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
1565
1538
|
*
|
|
1566
|
-
* This source code is licensed under the
|
|
1567
|
-
* LICENSE file in the root directory of this source tree.
|
|
1568
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1539
|
+
* This source code is licensed under the MIT license found in the
|
|
1540
|
+
* LICENSE file in the root directory of this source tree.
|
|
1569
1541
|
*
|
|
1570
1542
|
*/
|
|
1571
1543
|
|
|
@@ -1729,12 +1701,10 @@ var ReactDOMFactories = {
|
|
|
1729
1701
|
module.exports = ReactDOMFactories;
|
|
1730
1702
|
},{"15":15,"17":17}],15:[function(_dereq_,module,exports){
|
|
1731
1703
|
/**
|
|
1732
|
-
* Copyright 2014-present, Facebook, Inc.
|
|
1733
|
-
* All rights reserved.
|
|
1704
|
+
* Copyright (c) 2014-present, Facebook, Inc.
|
|
1734
1705
|
*
|
|
1735
|
-
* This source code is licensed under the
|
|
1736
|
-
* LICENSE file in the root directory of this source tree.
|
|
1737
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1706
|
+
* This source code is licensed under the MIT license found in the
|
|
1707
|
+
* LICENSE file in the root directory of this source tree.
|
|
1738
1708
|
*
|
|
1739
1709
|
*/
|
|
1740
1710
|
|
|
@@ -2070,12 +2040,10 @@ ReactElement.isValidElement = function (object) {
|
|
|
2070
2040
|
module.exports = ReactElement;
|
|
2071
2041
|
},{"13":13,"16":16,"31":31,"50":50,"51":51}],16:[function(_dereq_,module,exports){
|
|
2072
2042
|
/**
|
|
2073
|
-
* Copyright 2014-present, Facebook, Inc.
|
|
2074
|
-
* All rights reserved.
|
|
2043
|
+
* Copyright (c) 2014-present, Facebook, Inc.
|
|
2075
2044
|
*
|
|
2076
|
-
* This source code is licensed under the
|
|
2077
|
-
* LICENSE file in the root directory of this source tree.
|
|
2078
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2045
|
+
* This source code is licensed under the MIT license found in the
|
|
2046
|
+
* LICENSE file in the root directory of this source tree.
|
|
2079
2047
|
*
|
|
2080
2048
|
*
|
|
2081
2049
|
*/
|
|
@@ -2090,12 +2058,10 @@ var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol['for'] && Symbol
|
|
|
2090
2058
|
module.exports = REACT_ELEMENT_TYPE;
|
|
2091
2059
|
},{}],17:[function(_dereq_,module,exports){
|
|
2092
2060
|
/**
|
|
2093
|
-
* Copyright 2014-present, Facebook, Inc.
|
|
2094
|
-
* All rights reserved.
|
|
2061
|
+
* Copyright (c) 2014-present, Facebook, Inc.
|
|
2095
2062
|
*
|
|
2096
|
-
* This source code is licensed under the
|
|
2097
|
-
* LICENSE file in the root directory of this source tree.
|
|
2098
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2063
|
+
* This source code is licensed under the MIT license found in the
|
|
2064
|
+
* LICENSE file in the root directory of this source tree.
|
|
2099
2065
|
*
|
|
2100
2066
|
*/
|
|
2101
2067
|
|
|
@@ -2345,12 +2311,10 @@ var ReactElementValidator = {
|
|
|
2345
2311
|
module.exports = ReactElementValidator;
|
|
2346
2312
|
},{"11":11,"13":13,"15":15,"31":31,"32":32,"35":35,"37":37,"50":50}],18:[function(_dereq_,module,exports){
|
|
2347
2313
|
/**
|
|
2348
|
-
* Copyright 2015-present, Facebook, Inc.
|
|
2349
|
-
* All rights reserved.
|
|
2314
|
+
* Copyright (c) 2015-present, Facebook, Inc.
|
|
2350
2315
|
*
|
|
2351
|
-
* This source code is licensed under the
|
|
2352
|
-
* LICENSE file in the root directory of this source tree.
|
|
2353
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2316
|
+
* This source code is licensed under the MIT license found in the
|
|
2317
|
+
* LICENSE file in the root directory of this source tree.
|
|
2354
2318
|
*
|
|
2355
2319
|
*/
|
|
2356
2320
|
|
|
@@ -2414,12 +2378,10 @@ var ReactFragment = {
|
|
|
2414
2378
|
module.exports = ReactFragment;
|
|
2415
2379
|
},{"10":10,"15":15,"39":39,"46":46,"48":48,"50":50}],19:[function(_dereq_,module,exports){
|
|
2416
2380
|
/**
|
|
2417
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2418
|
-
* All rights reserved.
|
|
2381
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2419
2382
|
*
|
|
2420
|
-
* This source code is licensed under the
|
|
2421
|
-
* LICENSE file in the root directory of this source tree.
|
|
2422
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2383
|
+
* This source code is licensed under the MIT license found in the
|
|
2384
|
+
* LICENSE file in the root directory of this source tree.
|
|
2423
2385
|
*
|
|
2424
2386
|
*/
|
|
2425
2387
|
|
|
@@ -2464,12 +2426,10 @@ function ReactLink(value, requestChange) {
|
|
|
2464
2426
|
module.exports = ReactLink;
|
|
2465
2427
|
},{}],20:[function(_dereq_,module,exports){
|
|
2466
2428
|
/**
|
|
2467
|
-
* Copyright 2015-present, Facebook, Inc.
|
|
2468
|
-
* All rights reserved.
|
|
2429
|
+
* Copyright (c) 2015-present, Facebook, Inc.
|
|
2469
2430
|
*
|
|
2470
|
-
* This source code is licensed under the
|
|
2471
|
-
* LICENSE file in the root directory of this source tree.
|
|
2472
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2431
|
+
* This source code is licensed under the MIT license found in the
|
|
2432
|
+
* LICENSE file in the root directory of this source tree.
|
|
2473
2433
|
*
|
|
2474
2434
|
*/
|
|
2475
2435
|
|
|
@@ -2559,12 +2519,10 @@ var ReactNoopUpdateQueue = {
|
|
|
2559
2519
|
module.exports = ReactNoopUpdateQueue;
|
|
2560
2520
|
},{"50":50}],21:[function(_dereq_,module,exports){
|
|
2561
2521
|
/**
|
|
2562
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2563
|
-
* All rights reserved.
|
|
2522
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2564
2523
|
*
|
|
2565
|
-
* This source code is licensed under the
|
|
2566
|
-
* LICENSE file in the root directory of this source tree.
|
|
2567
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2524
|
+
* This source code is licensed under the MIT license found in the
|
|
2525
|
+
* LICENSE file in the root directory of this source tree.
|
|
2568
2526
|
*
|
|
2569
2527
|
*
|
|
2570
2528
|
*/
|
|
@@ -2584,12 +2542,10 @@ if ("development" !== 'production') {
|
|
|
2584
2542
|
module.exports = ReactPropTypeLocationNames;
|
|
2585
2543
|
},{}],22:[function(_dereq_,module,exports){
|
|
2586
2544
|
/**
|
|
2587
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2588
|
-
* All rights reserved.
|
|
2545
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2589
2546
|
*
|
|
2590
|
-
* This source code is licensed under the
|
|
2591
|
-
* LICENSE file in the root directory of this source tree.
|
|
2592
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2547
|
+
* This source code is licensed under the MIT license found in the
|
|
2548
|
+
* LICENSE file in the root directory of this source tree.
|
|
2593
2549
|
*
|
|
2594
2550
|
*/
|
|
2595
2551
|
|
|
@@ -2603,12 +2559,10 @@ var factory = _dereq_(53);
|
|
|
2603
2559
|
module.exports = factory(isValidElement);
|
|
2604
2560
|
},{"15":15,"53":53}],23:[function(_dereq_,module,exports){
|
|
2605
2561
|
/**
|
|
2606
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2607
|
-
* All rights reserved.
|
|
2562
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2608
2563
|
*
|
|
2609
|
-
* This source code is licensed under the
|
|
2610
|
-
* LICENSE file in the root directory of this source tree.
|
|
2611
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2564
|
+
* This source code is licensed under the MIT license found in the
|
|
2565
|
+
* LICENSE file in the root directory of this source tree.
|
|
2612
2566
|
*
|
|
2613
2567
|
*
|
|
2614
2568
|
*/
|
|
@@ -2620,12 +2574,10 @@ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
|
2620
2574
|
module.exports = ReactPropTypesSecret;
|
|
2621
2575
|
},{}],24:[function(_dereq_,module,exports){
|
|
2622
2576
|
/**
|
|
2623
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2624
|
-
* All rights reserved.
|
|
2577
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2625
2578
|
*
|
|
2626
|
-
* This source code is licensed under the
|
|
2627
|
-
* LICENSE file in the root directory of this source tree.
|
|
2628
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2579
|
+
* This source code is licensed under the MIT license found in the
|
|
2580
|
+
* LICENSE file in the root directory of this source tree.
|
|
2629
2581
|
*
|
|
2630
2582
|
*/
|
|
2631
2583
|
|
|
@@ -2724,12 +2676,10 @@ ReactStateSetters.Mixin = {
|
|
|
2724
2676
|
module.exports = ReactStateSetters;
|
|
2725
2677
|
},{}],25:[function(_dereq_,module,exports){
|
|
2726
2678
|
/**
|
|
2727
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2728
|
-
* All rights reserved.
|
|
2679
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2729
2680
|
*
|
|
2730
|
-
* This source code is licensed under the
|
|
2731
|
-
* LICENSE file in the root directory of this source tree.
|
|
2732
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2681
|
+
* This source code is licensed under the MIT license found in the
|
|
2682
|
+
* LICENSE file in the root directory of this source tree.
|
|
2733
2683
|
*
|
|
2734
2684
|
*/
|
|
2735
2685
|
|
|
@@ -2827,12 +2777,10 @@ var ReactTransitionChildMapping = {
|
|
|
2827
2777
|
module.exports = ReactTransitionChildMapping;
|
|
2828
2778
|
},{"34":34}],26:[function(_dereq_,module,exports){
|
|
2829
2779
|
/**
|
|
2830
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2831
|
-
* All rights reserved.
|
|
2780
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2832
2781
|
*
|
|
2833
|
-
* This source code is licensed under the
|
|
2834
|
-
* LICENSE file in the root directory of this source tree.
|
|
2835
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2782
|
+
* This source code is licensed under the MIT license found in the
|
|
2783
|
+
* LICENSE file in the root directory of this source tree.
|
|
2836
2784
|
*
|
|
2837
2785
|
*/
|
|
2838
2786
|
|
|
@@ -2900,12 +2848,10 @@ var ReactTransitionEvents = {
|
|
|
2900
2848
|
module.exports = ReactTransitionEvents;
|
|
2901
2849
|
},{"1":1,"45":45}],27:[function(_dereq_,module,exports){
|
|
2902
2850
|
/**
|
|
2903
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
2904
|
-
* All rights reserved.
|
|
2851
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
2905
2852
|
*
|
|
2906
|
-
* This source code is licensed under the
|
|
2907
|
-
* LICENSE file in the root directory of this source tree.
|
|
2908
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2853
|
+
* This source code is licensed under the MIT license found in the
|
|
2854
|
+
* LICENSE file in the root directory of this source tree.
|
|
2909
2855
|
*
|
|
2910
2856
|
*/
|
|
2911
2857
|
|
|
@@ -3135,26 +3081,22 @@ ReactTransitionGroup.defaultProps = {
|
|
|
3135
3081
|
module.exports = ReactTransitionGroup;
|
|
3136
3082
|
},{"25":25,"46":46,"5":5,"51":51,"53":53}],28:[function(_dereq_,module,exports){
|
|
3137
3083
|
/**
|
|
3138
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3139
|
-
* All rights reserved.
|
|
3084
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3140
3085
|
*
|
|
3141
|
-
* This source code is licensed under the
|
|
3142
|
-
* LICENSE file in the root directory of this source tree.
|
|
3143
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3086
|
+
* This source code is licensed under the MIT license found in the
|
|
3087
|
+
* LICENSE file in the root directory of this source tree.
|
|
3144
3088
|
*
|
|
3145
3089
|
*/
|
|
3146
3090
|
|
|
3147
3091
|
'use strict';
|
|
3148
3092
|
|
|
3149
|
-
module.exports = '15.6.
|
|
3093
|
+
module.exports = '15.6.2';
|
|
3150
3094
|
},{}],29:[function(_dereq_,module,exports){
|
|
3151
3095
|
/**
|
|
3152
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3153
|
-
* All rights reserved.
|
|
3096
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3154
3097
|
*
|
|
3155
|
-
* This source code is licensed under the
|
|
3156
|
-
* LICENSE file in the root directory of this source tree.
|
|
3157
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3098
|
+
* This source code is licensed under the MIT license found in the
|
|
3099
|
+
* LICENSE file in the root directory of this source tree.
|
|
3158
3100
|
*
|
|
3159
3101
|
*/
|
|
3160
3102
|
|
|
@@ -3202,12 +3144,10 @@ if ("development" !== 'production') {
|
|
|
3202
3144
|
module.exports = React;
|
|
3203
3145
|
},{"12":12,"18":18,"27":27,"3":3,"40":40,"42":42,"5":5,"6":6,"8":8}],30:[function(_dereq_,module,exports){
|
|
3204
3146
|
/**
|
|
3205
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3206
|
-
* All rights reserved.
|
|
3147
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3207
3148
|
*
|
|
3208
|
-
* This source code is licensed under the
|
|
3209
|
-
* LICENSE file in the root directory of this source tree.
|
|
3210
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3149
|
+
* This source code is licensed under the MIT license found in the
|
|
3150
|
+
* LICENSE file in the root directory of this source tree.
|
|
3211
3151
|
*
|
|
3212
3152
|
*/
|
|
3213
3153
|
|
|
@@ -3236,12 +3176,10 @@ if ("development" !== 'production') {
|
|
|
3236
3176
|
module.exports = ReactWithAddonsUMDEntry;
|
|
3237
3177
|
},{"11":11,"13":13,"29":29,"36":36,"51":51}],31:[function(_dereq_,module,exports){
|
|
3238
3178
|
/**
|
|
3239
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3240
|
-
* All rights reserved.
|
|
3179
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3241
3180
|
*
|
|
3242
|
-
* This source code is licensed under the
|
|
3243
|
-
* LICENSE file in the root directory of this source tree.
|
|
3244
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3181
|
+
* This source code is licensed under the MIT license found in the
|
|
3182
|
+
* LICENSE file in the root directory of this source tree.
|
|
3245
3183
|
*
|
|
3246
3184
|
*
|
|
3247
3185
|
*/
|
|
@@ -3263,12 +3201,10 @@ module.exports = canDefineProperty;
|
|
|
3263
3201
|
},{}],32:[function(_dereq_,module,exports){
|
|
3264
3202
|
(function (process){
|
|
3265
3203
|
/**
|
|
3266
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3267
|
-
* All rights reserved.
|
|
3204
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3268
3205
|
*
|
|
3269
|
-
* This source code is licensed under the
|
|
3270
|
-
* LICENSE file in the root directory of this source tree.
|
|
3271
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3206
|
+
* This source code is licensed under the MIT license found in the
|
|
3207
|
+
* LICENSE file in the root directory of this source tree.
|
|
3272
3208
|
*
|
|
3273
3209
|
*/
|
|
3274
3210
|
|
|
@@ -3351,12 +3287,10 @@ module.exports = checkReactTypeSpec;
|
|
|
3351
3287
|
}).call(this,undefined)
|
|
3352
3288
|
},{"11":11,"21":21,"23":23,"39":39,"48":48,"50":50}],33:[function(_dereq_,module,exports){
|
|
3353
3289
|
/**
|
|
3354
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3355
|
-
* All rights reserved.
|
|
3290
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3356
3291
|
*
|
|
3357
|
-
* This source code is licensed under the
|
|
3358
|
-
* LICENSE file in the root directory of this source tree.
|
|
3359
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3292
|
+
* This source code is licensed under the MIT license found in the
|
|
3293
|
+
* LICENSE file in the root directory of this source tree.
|
|
3360
3294
|
*
|
|
3361
3295
|
*/
|
|
3362
3296
|
|
|
@@ -3375,12 +3309,10 @@ module.exports = factory(Component, isValidElement, ReactNoopUpdateQueue);
|
|
|
3375
3309
|
},{"15":15,"20":20,"43":43,"7":7}],34:[function(_dereq_,module,exports){
|
|
3376
3310
|
(function (process){
|
|
3377
3311
|
/**
|
|
3378
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3379
|
-
* All rights reserved.
|
|
3312
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3380
3313
|
*
|
|
3381
|
-
* This source code is licensed under the
|
|
3382
|
-
* LICENSE file in the root directory of this source tree.
|
|
3383
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3314
|
+
* This source code is licensed under the MIT license found in the
|
|
3315
|
+
* LICENSE file in the root directory of this source tree.
|
|
3384
3316
|
*
|
|
3385
3317
|
*
|
|
3386
3318
|
*/
|
|
@@ -3452,12 +3384,10 @@ module.exports = flattenChildren;
|
|
|
3452
3384
|
}).call(this,undefined)
|
|
3453
3385
|
},{"11":11,"2":2,"41":41,"50":50}],35:[function(_dereq_,module,exports){
|
|
3454
3386
|
/**
|
|
3455
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3456
|
-
* All rights reserved.
|
|
3387
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3457
3388
|
*
|
|
3458
|
-
* This source code is licensed under the
|
|
3459
|
-
* LICENSE file in the root directory of this source tree.
|
|
3460
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3389
|
+
* This source code is licensed under the MIT license found in the
|
|
3390
|
+
* LICENSE file in the root directory of this source tree.
|
|
3461
3391
|
*
|
|
3462
3392
|
*
|
|
3463
3393
|
*/
|
|
@@ -3493,12 +3423,10 @@ function getIteratorFn(maybeIterable) {
|
|
|
3493
3423
|
module.exports = getIteratorFn;
|
|
3494
3424
|
},{}],36:[function(_dereq_,module,exports){
|
|
3495
3425
|
/**
|
|
3496
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3497
|
-
* All rights reserved.
|
|
3426
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3498
3427
|
*
|
|
3499
|
-
* This source code is licensed under the
|
|
3500
|
-
* LICENSE file in the root directory of this source tree.
|
|
3501
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3428
|
+
* This source code is licensed under the MIT license found in the
|
|
3429
|
+
* LICENSE file in the root directory of this source tree.
|
|
3502
3430
|
*
|
|
3503
3431
|
*
|
|
3504
3432
|
*/
|
|
@@ -3514,12 +3442,10 @@ function getNextDebugID() {
|
|
|
3514
3442
|
module.exports = getNextDebugID;
|
|
3515
3443
|
},{}],37:[function(_dereq_,module,exports){
|
|
3516
3444
|
/**
|
|
3517
|
-
* Copyright 2014-
|
|
3518
|
-
* All rights reserved.
|
|
3445
|
+
* Copyright (c) 2014-present, Facebook, Inc.
|
|
3519
3446
|
*
|
|
3520
|
-
* This source code is licensed under the
|
|
3521
|
-
* LICENSE file in the root directory of this source tree.
|
|
3522
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3447
|
+
* This source code is licensed under the MIT license found in the
|
|
3448
|
+
* LICENSE file in the root directory of this source tree.
|
|
3523
3449
|
*
|
|
3524
3450
|
*/
|
|
3525
3451
|
|
|
@@ -3579,12 +3505,10 @@ if ("development" !== 'production') {
|
|
|
3579
3505
|
module.exports = lowPriorityWarning;
|
|
3580
3506
|
},{}],38:[function(_dereq_,module,exports){
|
|
3581
3507
|
/**
|
|
3582
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3583
|
-
* All rights reserved.
|
|
3508
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3584
3509
|
*
|
|
3585
|
-
* This source code is licensed under the
|
|
3586
|
-
* LICENSE file in the root directory of this source tree.
|
|
3587
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3510
|
+
* This source code is licensed under the MIT license found in the
|
|
3511
|
+
* LICENSE file in the root directory of this source tree.
|
|
3588
3512
|
*
|
|
3589
3513
|
*/
|
|
3590
3514
|
'use strict';
|
|
@@ -3618,11 +3542,9 @@ module.exports = onlyChild;
|
|
|
3618
3542
|
},{"15":15,"39":39,"48":48}],39:[function(_dereq_,module,exports){
|
|
3619
3543
|
/**
|
|
3620
3544
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3621
|
-
* All rights reserved.
|
|
3622
3545
|
*
|
|
3623
|
-
* This source code is licensed under the
|
|
3624
|
-
* LICENSE file in the root directory of this source tree.
|
|
3625
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3546
|
+
* This source code is licensed under the MIT license found in the
|
|
3547
|
+
* LICENSE file in the root directory of this source tree.
|
|
3626
3548
|
*
|
|
3627
3549
|
*
|
|
3628
3550
|
*/
|
|
@@ -3656,12 +3578,10 @@ function reactProdInvariant(code) {
|
|
|
3656
3578
|
module.exports = reactProdInvariant;
|
|
3657
3579
|
},{}],40:[function(_dereq_,module,exports){
|
|
3658
3580
|
/**
|
|
3659
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3660
|
-
* All rights reserved.
|
|
3581
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3661
3582
|
*
|
|
3662
|
-
* This source code is licensed under the
|
|
3663
|
-
* LICENSE file in the root directory of this source tree.
|
|
3664
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3583
|
+
* This source code is licensed under the MIT license found in the
|
|
3584
|
+
* LICENSE file in the root directory of this source tree.
|
|
3665
3585
|
*
|
|
3666
3586
|
*/
|
|
3667
3587
|
|
|
@@ -3681,12 +3601,10 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
3681
3601
|
module.exports = shallowCompare;
|
|
3682
3602
|
},{"49":49}],41:[function(_dereq_,module,exports){
|
|
3683
3603
|
/**
|
|
3684
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3685
|
-
* All rights reserved.
|
|
3604
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3686
3605
|
*
|
|
3687
|
-
* This source code is licensed under the
|
|
3688
|
-
* LICENSE file in the root directory of this source tree.
|
|
3689
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3606
|
+
* This source code is licensed under the MIT license found in the
|
|
3607
|
+
* LICENSE file in the root directory of this source tree.
|
|
3690
3608
|
*
|
|
3691
3609
|
*/
|
|
3692
3610
|
|
|
@@ -3857,12 +3775,10 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
3857
3775
|
module.exports = traverseAllChildren;
|
|
3858
3776
|
},{"13":13,"16":16,"2":2,"35":35,"39":39,"48":48,"50":50}],42:[function(_dereq_,module,exports){
|
|
3859
3777
|
/**
|
|
3860
|
-
* Copyright 2013-present, Facebook, Inc.
|
|
3861
|
-
* All rights reserved.
|
|
3778
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3862
3779
|
*
|
|
3863
|
-
* This source code is licensed under the
|
|
3864
|
-
* LICENSE file in the root directory of this source tree.
|
|
3865
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3780
|
+
* This source code is licensed under the MIT license found in the
|
|
3781
|
+
* LICENSE file in the root directory of this source tree.
|
|
3866
3782
|
*
|
|
3867
3783
|
*/
|
|
3868
3784
|
|