react 15.3.1-rc.1 → 15.3.1-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react-with-addons.js +443 -397
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +428 -382
- package/dist/react.min.js +6 -6
- package/lib/ReactComponentTreeHook.js +117 -23
- package/lib/ReactDOMComponent.js +2 -1
- package/lib/ReactDOMFactories.js +138 -144
- package/lib/ReactDOMInput.js +5 -1
- package/lib/ReactElement.js +37 -33
- package/lib/ReactVersion.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v15.3.1-rc.
|
|
2
|
+
* React (with addons) v15.3.1-rc.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
|
/**
|
|
@@ -585,8 +585,8 @@ var ReactInstrumentation = _dereq_(78);
|
|
|
585
585
|
var camelizeStyleName = _dereq_(166);
|
|
586
586
|
var dangerousStyleValue = _dereq_(134);
|
|
587
587
|
var hyphenateStyleName = _dereq_(177);
|
|
588
|
-
var memoizeStringOnly = _dereq_(
|
|
589
|
-
var warning = _dereq_(
|
|
588
|
+
var memoizeStringOnly = _dereq_(183);
|
|
589
|
+
var warning = _dereq_(187);
|
|
590
590
|
|
|
591
591
|
var processStyleName = memoizeStringOnly(function (styleName) {
|
|
592
592
|
return hyphenateStyleName(styleName);
|
|
@@ -770,7 +770,7 @@ var CSSPropertyOperations = {
|
|
|
770
770
|
};
|
|
771
771
|
|
|
772
772
|
module.exports = CSSPropertyOperations;
|
|
773
|
-
},{"134":134,"164":164,"166":166,"177":177,"
|
|
773
|
+
},{"134":134,"164":164,"166":166,"177":177,"183":183,"187":187,"3":3,"78":78}],5:[function(_dereq_,module,exports){
|
|
774
774
|
/**
|
|
775
775
|
* Copyright 2013-present, Facebook, Inc.
|
|
776
776
|
* All rights reserved.
|
|
@@ -785,7 +785,7 @@ module.exports = CSSPropertyOperations;
|
|
|
785
785
|
'use strict';
|
|
786
786
|
|
|
787
787
|
var _prodInvariant = _dereq_(153),
|
|
788
|
-
_assign = _dereq_(
|
|
788
|
+
_assign = _dereq_(188);
|
|
789
789
|
|
|
790
790
|
var PooledClass = _dereq_(26);
|
|
791
791
|
|
|
@@ -877,7 +877,7 @@ _assign(CallbackQueue.prototype, {
|
|
|
877
877
|
PooledClass.addPoolingTo(CallbackQueue);
|
|
878
878
|
|
|
879
879
|
module.exports = CallbackQueue;
|
|
880
|
-
},{"153":153,"178":178,"
|
|
880
|
+
},{"153":153,"178":178,"188":188,"26":26}],6:[function(_dereq_,module,exports){
|
|
881
881
|
/**
|
|
882
882
|
* Copyright 2013-present, Facebook, Inc.
|
|
883
883
|
* All rights reserved.
|
|
@@ -1764,7 +1764,7 @@ var ReactDOMComponentTree = _dereq_(46);
|
|
|
1764
1764
|
var ReactInstrumentation = _dereq_(78);
|
|
1765
1765
|
|
|
1766
1766
|
var quoteAttributeValueForBrowser = _dereq_(152);
|
|
1767
|
-
var warning = _dereq_(
|
|
1767
|
+
var warning = _dereq_(187);
|
|
1768
1768
|
|
|
1769
1769
|
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
|
1770
1770
|
var illegalAttributeNameCache = {};
|
|
@@ -1967,7 +1967,7 @@ var DOMPropertyOperations = {
|
|
|
1967
1967
|
};
|
|
1968
1968
|
|
|
1969
1969
|
module.exports = DOMPropertyOperations;
|
|
1970
|
-
},{"10":10,"152":152,"
|
|
1970
|
+
},{"10":10,"152":152,"187":187,"46":46,"78":78}],12:[function(_dereq_,module,exports){
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Copyright 2013-present, Facebook, Inc.
|
|
1973
1973
|
* All rights reserved.
|
|
@@ -2819,7 +2819,7 @@ var EventConstants = _dereq_(16);
|
|
|
2819
2819
|
var ReactErrorUtils = _dereq_(68);
|
|
2820
2820
|
|
|
2821
2821
|
var invariant = _dereq_(178);
|
|
2822
|
-
var warning = _dereq_(
|
|
2822
|
+
var warning = _dereq_(187);
|
|
2823
2823
|
|
|
2824
2824
|
/**
|
|
2825
2825
|
* Injected dependencies:
|
|
@@ -3029,7 +3029,7 @@ var EventPluginUtils = {
|
|
|
3029
3029
|
};
|
|
3030
3030
|
|
|
3031
3031
|
module.exports = EventPluginUtils;
|
|
3032
|
-
},{"153":153,"16":16,"178":178,"
|
|
3032
|
+
},{"153":153,"16":16,"178":178,"187":187,"68":68}],20:[function(_dereq_,module,exports){
|
|
3033
3033
|
/**
|
|
3034
3034
|
* Copyright 2013-present, Facebook, Inc.
|
|
3035
3035
|
* All rights reserved.
|
|
@@ -3049,7 +3049,7 @@ var EventPluginUtils = _dereq_(19);
|
|
|
3049
3049
|
|
|
3050
3050
|
var accumulateInto = _dereq_(129);
|
|
3051
3051
|
var forEachAccumulated = _dereq_(138);
|
|
3052
|
-
var warning = _dereq_(
|
|
3052
|
+
var warning = _dereq_(187);
|
|
3053
3053
|
|
|
3054
3054
|
var PropagationPhases = EventConstants.PropagationPhases;
|
|
3055
3055
|
var getListener = EventPluginHub.getListener;
|
|
@@ -3167,7 +3167,7 @@ var EventPropagators = {
|
|
|
3167
3167
|
};
|
|
3168
3168
|
|
|
3169
3169
|
module.exports = EventPropagators;
|
|
3170
|
-
},{"129":129,"138":138,"16":16,"17":17,"
|
|
3170
|
+
},{"129":129,"138":138,"16":16,"17":17,"187":187,"19":19}],21:[function(_dereq_,module,exports){
|
|
3171
3171
|
/**
|
|
3172
3172
|
* Copyright 2013-present, Facebook, Inc.
|
|
3173
3173
|
* All rights reserved.
|
|
@@ -3181,7 +3181,7 @@ module.exports = EventPropagators;
|
|
|
3181
3181
|
|
|
3182
3182
|
'use strict';
|
|
3183
3183
|
|
|
3184
|
-
var _assign = _dereq_(
|
|
3184
|
+
var _assign = _dereq_(188);
|
|
3185
3185
|
|
|
3186
3186
|
var PooledClass = _dereq_(26);
|
|
3187
3187
|
|
|
@@ -3263,7 +3263,7 @@ _assign(FallbackCompositionState.prototype, {
|
|
|
3263
3263
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3264
3264
|
|
|
3265
3265
|
module.exports = FallbackCompositionState;
|
|
3266
|
-
},{"146":146,"
|
|
3266
|
+
},{"146":146,"188":188,"26":26}],22:[function(_dereq_,module,exports){
|
|
3267
3267
|
/**
|
|
3268
3268
|
* Copyright 2013-present, Facebook, Inc.
|
|
3269
3269
|
* All rights reserved.
|
|
@@ -3591,7 +3591,7 @@ var ReactPropTypeLocations = _dereq_(90);
|
|
|
3591
3591
|
var ReactPropTypesSecret = _dereq_(92);
|
|
3592
3592
|
|
|
3593
3593
|
var invariant = _dereq_(178);
|
|
3594
|
-
var warning = _dereq_(
|
|
3594
|
+
var warning = _dereq_(187);
|
|
3595
3595
|
|
|
3596
3596
|
var hasReadOnlyValue = {
|
|
3597
3597
|
'button': true,
|
|
@@ -3707,7 +3707,7 @@ var LinkedValueUtils = {
|
|
|
3707
3707
|
};
|
|
3708
3708
|
|
|
3709
3709
|
module.exports = LinkedValueUtils;
|
|
3710
|
-
},{"153":153,"178":178,"
|
|
3710
|
+
},{"153":153,"178":178,"187":187,"90":90,"91":91,"92":92}],26:[function(_dereq_,module,exports){
|
|
3711
3711
|
/**
|
|
3712
3712
|
* Copyright 2013-present, Facebook, Inc.
|
|
3713
3713
|
* All rights reserved.
|
|
@@ -3843,7 +3843,7 @@ module.exports = PooledClass;
|
|
|
3843
3843
|
|
|
3844
3844
|
'use strict';
|
|
3845
3845
|
|
|
3846
|
-
var _assign = _dereq_(
|
|
3846
|
+
var _assign = _dereq_(188);
|
|
3847
3847
|
|
|
3848
3848
|
var ReactChildren = _dereq_(32);
|
|
3849
3849
|
var ReactComponent = _dereq_(35);
|
|
@@ -3855,7 +3855,7 @@ var ReactPropTypes = _dereq_(91);
|
|
|
3855
3855
|
var ReactVersion = _dereq_(108);
|
|
3856
3856
|
|
|
3857
3857
|
var onlyChild = _dereq_(151);
|
|
3858
|
-
var warning = _dereq_(
|
|
3858
|
+
var warning = _dereq_(187);
|
|
3859
3859
|
|
|
3860
3860
|
var createElement = ReactElement.createElement;
|
|
3861
3861
|
var createFactory = ReactElement.createFactory;
|
|
@@ -3919,7 +3919,7 @@ var React = {
|
|
|
3919
3919
|
};
|
|
3920
3920
|
|
|
3921
3921
|
module.exports = React;
|
|
3922
|
-
},{"108":108,"151":151,"
|
|
3922
|
+
},{"108":108,"151":151,"187":187,"188":188,"32":32,"34":34,"35":35,"49":49,"65":65,"66":66,"91":91,"93":93}],28:[function(_dereq_,module,exports){
|
|
3923
3923
|
/**
|
|
3924
3924
|
* Copyright 2013-present, Facebook, Inc.
|
|
3925
3925
|
* All rights reserved.
|
|
@@ -3933,7 +3933,7 @@ module.exports = React;
|
|
|
3933
3933
|
|
|
3934
3934
|
'use strict';
|
|
3935
3935
|
|
|
3936
|
-
var _assign = _dereq_(
|
|
3936
|
+
var _assign = _dereq_(188);
|
|
3937
3937
|
|
|
3938
3938
|
var EventConstants = _dereq_(16);
|
|
3939
3939
|
var EventPluginRegistry = _dereq_(18);
|
|
@@ -4237,7 +4237,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4237
4237
|
});
|
|
4238
4238
|
|
|
4239
4239
|
module.exports = ReactBrowserEventEmitter;
|
|
4240
|
-
},{"128":128,"147":147,"149":149,"16":16,"18":18,"
|
|
4240
|
+
},{"128":128,"147":147,"149":149,"16":16,"18":18,"188":188,"69":69}],29:[function(_dereq_,module,exports){
|
|
4241
4241
|
/**
|
|
4242
4242
|
* Copyright 2013-present, Facebook, Inc.
|
|
4243
4243
|
* All rights reserved.
|
|
@@ -4251,7 +4251,7 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4251
4251
|
|
|
4252
4252
|
'use strict';
|
|
4253
4253
|
|
|
4254
|
-
var _assign = _dereq_(
|
|
4254
|
+
var _assign = _dereq_(188);
|
|
4255
4255
|
|
|
4256
4256
|
var React = _dereq_(27);
|
|
4257
4257
|
|
|
@@ -4325,7 +4325,7 @@ var ReactCSSTransitionGroup = React.createClass({
|
|
|
4325
4325
|
});
|
|
4326
4326
|
|
|
4327
4327
|
module.exports = ReactCSSTransitionGroup;
|
|
4328
|
-
},{"105":105,"
|
|
4328
|
+
},{"105":105,"188":188,"27":27,"30":30}],30:[function(_dereq_,module,exports){
|
|
4329
4329
|
/**
|
|
4330
4330
|
* Copyright 2013-present, Facebook, Inc.
|
|
4331
4331
|
* All rights reserved.
|
|
@@ -4514,7 +4514,7 @@ var instantiateReactComponent = _dereq_(148);
|
|
|
4514
4514
|
var KeyEscapeUtils = _dereq_(23);
|
|
4515
4515
|
var shouldUpdateReactComponent = _dereq_(158);
|
|
4516
4516
|
var traverseAllChildren = _dereq_(159);
|
|
4517
|
-
var warning = _dereq_(
|
|
4517
|
+
var warning = _dereq_(187);
|
|
4518
4518
|
|
|
4519
4519
|
var ReactComponentTreeHook;
|
|
4520
4520
|
|
|
@@ -4650,7 +4650,7 @@ var ReactChildReconciler = {
|
|
|
4650
4650
|
|
|
4651
4651
|
module.exports = ReactChildReconciler;
|
|
4652
4652
|
}).call(this,undefined)
|
|
4653
|
-
},{"148":148,"158":158,"159":159,"
|
|
4653
|
+
},{"148":148,"158":158,"159":159,"187":187,"23":23,"38":38,"95":95}],32:[function(_dereq_,module,exports){
|
|
4654
4654
|
/**
|
|
4655
4655
|
* Copyright 2013-present, Facebook, Inc.
|
|
4656
4656
|
* All rights reserved.
|
|
@@ -4858,7 +4858,7 @@ module.exports = ReactChildren;
|
|
|
4858
4858
|
|
|
4859
4859
|
var ReactComponentTreeHook = _dereq_(38);
|
|
4860
4860
|
|
|
4861
|
-
var warning = _dereq_(
|
|
4861
|
+
var warning = _dereq_(187);
|
|
4862
4862
|
|
|
4863
4863
|
function handleElement(debugID, element) {
|
|
4864
4864
|
if (element == null) {
|
|
@@ -4897,7 +4897,7 @@ var ReactChildrenMutationWarningHook = {
|
|
|
4897
4897
|
};
|
|
4898
4898
|
|
|
4899
4899
|
module.exports = ReactChildrenMutationWarningHook;
|
|
4900
|
-
},{"
|
|
4900
|
+
},{"187":187,"38":38}],34:[function(_dereq_,module,exports){
|
|
4901
4901
|
/**
|
|
4902
4902
|
* Copyright 2013-present, Facebook, Inc.
|
|
4903
4903
|
* All rights reserved.
|
|
@@ -4912,7 +4912,7 @@ module.exports = ReactChildrenMutationWarningHook;
|
|
|
4912
4912
|
'use strict';
|
|
4913
4913
|
|
|
4914
4914
|
var _prodInvariant = _dereq_(153),
|
|
4915
|
-
_assign = _dereq_(
|
|
4915
|
+
_assign = _dereq_(188);
|
|
4916
4916
|
|
|
4917
4917
|
var ReactComponent = _dereq_(35);
|
|
4918
4918
|
var ReactElement = _dereq_(65);
|
|
@@ -4924,7 +4924,7 @@ var emptyObject = _dereq_(171);
|
|
|
4924
4924
|
var invariant = _dereq_(178);
|
|
4925
4925
|
var keyMirror = _dereq_(181);
|
|
4926
4926
|
var keyOf = _dereq_(182);
|
|
4927
|
-
var warning = _dereq_(
|
|
4927
|
+
var warning = _dereq_(187);
|
|
4928
4928
|
|
|
4929
4929
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4930
4930
|
|
|
@@ -5630,7 +5630,7 @@ var ReactClass = {
|
|
|
5630
5630
|
};
|
|
5631
5631
|
|
|
5632
5632
|
module.exports = ReactClass;
|
|
5633
|
-
},{"153":153,"171":171,"178":178,"181":181,"182":182,"
|
|
5633
|
+
},{"153":153,"171":171,"178":178,"181":181,"182":182,"187":187,"188":188,"35":35,"65":65,"86":86,"89":89,"90":90}],35:[function(_dereq_,module,exports){
|
|
5634
5634
|
/**
|
|
5635
5635
|
* Copyright 2013-present, Facebook, Inc.
|
|
5636
5636
|
* All rights reserved.
|
|
@@ -5651,7 +5651,7 @@ var ReactNoopUpdateQueue = _dereq_(86);
|
|
|
5651
5651
|
var canDefineProperty = _dereq_(131);
|
|
5652
5652
|
var emptyObject = _dereq_(171);
|
|
5653
5653
|
var invariant = _dereq_(178);
|
|
5654
|
-
var warning = _dereq_(
|
|
5654
|
+
var warning = _dereq_(187);
|
|
5655
5655
|
|
|
5656
5656
|
/**
|
|
5657
5657
|
* Base class helpers for the updating state of a component.
|
|
@@ -5749,7 +5749,7 @@ if ("development" !== 'production') {
|
|
|
5749
5749
|
}
|
|
5750
5750
|
|
|
5751
5751
|
module.exports = ReactComponent;
|
|
5752
|
-
},{"131":131,"153":153,"171":171,"178":178,"
|
|
5752
|
+
},{"131":131,"153":153,"171":171,"178":178,"187":187,"86":86}],36:[function(_dereq_,module,exports){
|
|
5753
5753
|
/**
|
|
5754
5754
|
* Copyright 2013-present, Facebook, Inc.
|
|
5755
5755
|
* All rights reserved.
|
|
@@ -5845,11 +5845,54 @@ var _prodInvariant = _dereq_(153);
|
|
|
5845
5845
|
var ReactCurrentOwner = _dereq_(41);
|
|
5846
5846
|
|
|
5847
5847
|
var invariant = _dereq_(178);
|
|
5848
|
-
var warning = _dereq_(
|
|
5848
|
+
var warning = _dereq_(187);
|
|
5849
|
+
|
|
5850
|
+
function isNative(fn) {
|
|
5851
|
+
// Based on isNative() from Lodash
|
|
5852
|
+
var funcToString = Function.prototype.toString;
|
|
5853
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
5854
|
+
var reIsNative = RegExp('^' + funcToString
|
|
5855
|
+
// Take an example native function source for comparison
|
|
5856
|
+
.call(hasOwnProperty)
|
|
5857
|
+
// Strip regex characters so we can use it for regex
|
|
5858
|
+
.replace(/[\\^$.*+?()[\]{}|]/g, '\\$&')
|
|
5859
|
+
// Remove hasOwnProperty from the template to make it generic
|
|
5860
|
+
.replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$');
|
|
5861
|
+
try {
|
|
5862
|
+
var source = funcToString.call(fn);
|
|
5863
|
+
return reIsNative.test(source);
|
|
5864
|
+
} catch (err) {
|
|
5865
|
+
return false;
|
|
5866
|
+
}
|
|
5867
|
+
}
|
|
5849
5868
|
|
|
5850
|
-
var
|
|
5851
|
-
|
|
5852
|
-
|
|
5869
|
+
var canUseCollections =
|
|
5870
|
+
// Array.from
|
|
5871
|
+
typeof Array.from === 'function' &&
|
|
5872
|
+
// Map
|
|
5873
|
+
typeof Map === 'function' && isNative(Map) &&
|
|
5874
|
+
// Map.prototype.keys
|
|
5875
|
+
Map.prototype != null && typeof Map.prototype.keys === 'function' && isNative(Map.prototype.keys) &&
|
|
5876
|
+
// Set
|
|
5877
|
+
typeof Set === 'function' && isNative(Set) &&
|
|
5878
|
+
// Set.prototype.keys
|
|
5879
|
+
Set.prototype != null && typeof Set.prototype.keys === 'function' && isNative(Set.prototype.keys);
|
|
5880
|
+
|
|
5881
|
+
var itemMap;
|
|
5882
|
+
var rootIDSet;
|
|
5883
|
+
|
|
5884
|
+
var itemByKey;
|
|
5885
|
+
var rootByKey;
|
|
5886
|
+
|
|
5887
|
+
if (canUseCollections) {
|
|
5888
|
+
itemMap = new Map();
|
|
5889
|
+
rootIDSet = new Set();
|
|
5890
|
+
} else {
|
|
5891
|
+
itemByKey = {};
|
|
5892
|
+
rootByKey = {};
|
|
5893
|
+
}
|
|
5894
|
+
|
|
5895
|
+
var unmountedIDs = [];
|
|
5853
5896
|
|
|
5854
5897
|
// Use non-numeric keys to prevent V8 performance issues:
|
|
5855
5898
|
// https://github.com/facebook/react/pull/7232
|
|
@@ -5861,18 +5904,25 @@ function getIDFromKey(key) {
|
|
|
5861
5904
|
}
|
|
5862
5905
|
|
|
5863
5906
|
function get(id) {
|
|
5864
|
-
|
|
5865
|
-
|
|
5907
|
+
if (canUseCollections) {
|
|
5908
|
+
return itemMap.get(id);
|
|
5909
|
+
} else {
|
|
5910
|
+
var key = getKeyFromID(id);
|
|
5911
|
+
return itemByKey[key];
|
|
5912
|
+
}
|
|
5866
5913
|
}
|
|
5867
5914
|
|
|
5868
5915
|
function remove(id) {
|
|
5869
|
-
|
|
5870
|
-
|
|
5916
|
+
if (canUseCollections) {
|
|
5917
|
+
itemMap['delete'](id);
|
|
5918
|
+
} else {
|
|
5919
|
+
var key = getKeyFromID(id);
|
|
5920
|
+
delete itemByKey[key];
|
|
5921
|
+
}
|
|
5871
5922
|
}
|
|
5872
5923
|
|
|
5873
5924
|
function create(id, element, parentID) {
|
|
5874
|
-
var
|
|
5875
|
-
itemByKey[key] = {
|
|
5925
|
+
var item = {
|
|
5876
5926
|
element: element,
|
|
5877
5927
|
parentID: parentID,
|
|
5878
5928
|
text: null,
|
|
@@ -5880,6 +5930,47 @@ function create(id, element, parentID) {
|
|
|
5880
5930
|
isMounted: false,
|
|
5881
5931
|
updateCount: 0
|
|
5882
5932
|
};
|
|
5933
|
+
|
|
5934
|
+
if (canUseCollections) {
|
|
5935
|
+
itemMap.set(id, item);
|
|
5936
|
+
} else {
|
|
5937
|
+
var key = getKeyFromID(id);
|
|
5938
|
+
itemByKey[key] = item;
|
|
5939
|
+
}
|
|
5940
|
+
}
|
|
5941
|
+
|
|
5942
|
+
function addRoot(id) {
|
|
5943
|
+
if (canUseCollections) {
|
|
5944
|
+
rootIDSet.add(id);
|
|
5945
|
+
} else {
|
|
5946
|
+
var key = getKeyFromID(id);
|
|
5947
|
+
rootByKey[key] = true;
|
|
5948
|
+
}
|
|
5949
|
+
}
|
|
5950
|
+
|
|
5951
|
+
function removeRoot(id) {
|
|
5952
|
+
if (canUseCollections) {
|
|
5953
|
+
rootIDSet['delete'](id);
|
|
5954
|
+
} else {
|
|
5955
|
+
var key = getKeyFromID(id);
|
|
5956
|
+
delete rootByKey[key];
|
|
5957
|
+
}
|
|
5958
|
+
}
|
|
5959
|
+
|
|
5960
|
+
function getRegisteredIDs() {
|
|
5961
|
+
if (canUseCollections) {
|
|
5962
|
+
return Array.from(itemMap.keys());
|
|
5963
|
+
} else {
|
|
5964
|
+
return Object.keys(itemByKey).map(getIDFromKey);
|
|
5965
|
+
}
|
|
5966
|
+
}
|
|
5967
|
+
|
|
5968
|
+
function getRootIDs() {
|
|
5969
|
+
if (canUseCollections) {
|
|
5970
|
+
return Array.from(rootIDSet.keys());
|
|
5971
|
+
} else {
|
|
5972
|
+
return Object.keys(rootByKey).map(getIDFromKey);
|
|
5973
|
+
}
|
|
5883
5974
|
}
|
|
5884
5975
|
|
|
5885
5976
|
function purgeDeep(id) {
|
|
@@ -5942,10 +6033,6 @@ var ReactComponentTreeHook = {
|
|
|
5942
6033
|
},
|
|
5943
6034
|
onBeforeMountComponent: function (id, element, parentID) {
|
|
5944
6035
|
create(id, element, parentID);
|
|
5945
|
-
|
|
5946
|
-
if (parentID === 0) {
|
|
5947
|
-
rootIDs[id] = true;
|
|
5948
|
-
}
|
|
5949
6036
|
},
|
|
5950
6037
|
onBeforeUpdateComponent: function (id, element) {
|
|
5951
6038
|
var item = get(id);
|
|
@@ -5959,6 +6046,10 @@ var ReactComponentTreeHook = {
|
|
|
5959
6046
|
onMountComponent: function (id) {
|
|
5960
6047
|
var item = get(id);
|
|
5961
6048
|
item.isMounted = true;
|
|
6049
|
+
var isRoot = item.parentID === 0;
|
|
6050
|
+
if (isRoot) {
|
|
6051
|
+
addRoot(id);
|
|
6052
|
+
}
|
|
5962
6053
|
},
|
|
5963
6054
|
onUpdateComponent: function (id) {
|
|
5964
6055
|
var item = get(id);
|
|
@@ -5978,9 +6069,12 @@ var ReactComponentTreeHook = {
|
|
|
5978
6069
|
// got a chance to mount, but it still gets an unmounting event during
|
|
5979
6070
|
// the error boundary cleanup.
|
|
5980
6071
|
item.isMounted = false;
|
|
6072
|
+
var isRoot = item.parentID === 0;
|
|
6073
|
+
if (isRoot) {
|
|
6074
|
+
removeRoot(id);
|
|
6075
|
+
}
|
|
5981
6076
|
}
|
|
5982
|
-
unmountedIDs
|
|
5983
|
-
delete rootIDs[id];
|
|
6077
|
+
unmountedIDs.push(id);
|
|
5984
6078
|
},
|
|
5985
6079
|
purgeUnmountedComponents: function () {
|
|
5986
6080
|
if (ReactComponentTreeHook._preventPurging) {
|
|
@@ -5988,10 +6082,11 @@ var ReactComponentTreeHook = {
|
|
|
5988
6082
|
return;
|
|
5989
6083
|
}
|
|
5990
6084
|
|
|
5991
|
-
for (var
|
|
6085
|
+
for (var i = 0; i < unmountedIDs.length; i++) {
|
|
6086
|
+
var id = unmountedIDs[i];
|
|
5992
6087
|
purgeDeep(id);
|
|
5993
6088
|
}
|
|
5994
|
-
unmountedIDs =
|
|
6089
|
+
unmountedIDs.length = 0;
|
|
5995
6090
|
},
|
|
5996
6091
|
isMounted: function (id) {
|
|
5997
6092
|
var item = get(id);
|
|
@@ -6066,16 +6161,15 @@ var ReactComponentTreeHook = {
|
|
|
6066
6161
|
var item = get(id);
|
|
6067
6162
|
return item ? item.updateCount : 0;
|
|
6068
6163
|
},
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
}
|
|
6164
|
+
|
|
6165
|
+
|
|
6166
|
+
getRegisteredIDs: getRegisteredIDs,
|
|
6167
|
+
|
|
6168
|
+
getRootIDs: getRootIDs
|
|
6075
6169
|
};
|
|
6076
6170
|
|
|
6077
6171
|
module.exports = ReactComponentTreeHook;
|
|
6078
|
-
},{"153":153,"178":178,"
|
|
6172
|
+
},{"153":153,"178":178,"187":187,"41":41}],39:[function(_dereq_,module,exports){
|
|
6079
6173
|
/**
|
|
6080
6174
|
* Copyright 2013-present, Facebook, Inc.
|
|
6081
6175
|
* All rights reserved.
|
|
@@ -6139,7 +6233,7 @@ module.exports = ReactComponentWithPureRenderMixin;
|
|
|
6139
6233
|
'use strict';
|
|
6140
6234
|
|
|
6141
6235
|
var _prodInvariant = _dereq_(153),
|
|
6142
|
-
_assign = _dereq_(
|
|
6236
|
+
_assign = _dereq_(188);
|
|
6143
6237
|
|
|
6144
6238
|
var ReactComponentEnvironment = _dereq_(37);
|
|
6145
6239
|
var ReactCurrentOwner = _dereq_(41);
|
|
@@ -6154,9 +6248,9 @@ var ReactReconciler = _dereq_(95);
|
|
|
6154
6248
|
var checkReactTypeSpec = _dereq_(132);
|
|
6155
6249
|
var emptyObject = _dereq_(171);
|
|
6156
6250
|
var invariant = _dereq_(178);
|
|
6157
|
-
var shallowEqual = _dereq_(
|
|
6251
|
+
var shallowEqual = _dereq_(186);
|
|
6158
6252
|
var shouldUpdateReactComponent = _dereq_(158);
|
|
6159
|
-
var warning = _dereq_(
|
|
6253
|
+
var warning = _dereq_(187);
|
|
6160
6254
|
|
|
6161
6255
|
var CompositeTypes = {
|
|
6162
6256
|
ImpureClass: 0,
|
|
@@ -7045,7 +7139,7 @@ var ReactCompositeComponent = {
|
|
|
7045
7139
|
};
|
|
7046
7140
|
|
|
7047
7141
|
module.exports = ReactCompositeComponent;
|
|
7048
|
-
},{"132":132,"153":153,"158":158,"171":171,"178":178,"187":187,"188":188,"
|
|
7142
|
+
},{"132":132,"153":153,"158":158,"171":171,"178":178,"186":186,"187":187,"188":188,"37":37,"41":41,"65":65,"68":68,"77":77,"78":78,"85":85,"90":90,"95":95}],41:[function(_dereq_,module,exports){
|
|
7049
7143
|
/**
|
|
7050
7144
|
* Copyright 2013-present, Facebook, Inc.
|
|
7051
7145
|
* All rights reserved.
|
|
@@ -7103,7 +7197,7 @@ var ReactVersion = _dereq_(108);
|
|
|
7103
7197
|
var findDOMNode = _dereq_(136);
|
|
7104
7198
|
var getHostComponentFromComposite = _dereq_(143);
|
|
7105
7199
|
var renderSubtreeIntoContainer = _dereq_(154);
|
|
7106
|
-
var warning = _dereq_(
|
|
7200
|
+
var warning = _dereq_(187);
|
|
7107
7201
|
|
|
7108
7202
|
ReactDefaultInjection.inject();
|
|
7109
7203
|
|
|
@@ -7188,7 +7282,7 @@ if ("development" !== 'production') {
|
|
|
7188
7282
|
}
|
|
7189
7283
|
|
|
7190
7284
|
module.exports = ReactDOM;
|
|
7191
|
-
},{"107":107,"108":108,"136":136,"143":143,"154":154,"164":164,"
|
|
7285
|
+
},{"107":107,"108":108,"136":136,"143":143,"154":154,"164":164,"187":187,"46":46,"53":53,"61":61,"64":64,"78":78,"82":82,"95":95}],43:[function(_dereq_,module,exports){
|
|
7192
7286
|
/**
|
|
7193
7287
|
* Copyright 2013-present, Facebook, Inc.
|
|
7194
7288
|
* All rights reserved.
|
|
@@ -7230,7 +7324,7 @@ module.exports = ReactDOMButton;
|
|
|
7230
7324
|
'use strict';
|
|
7231
7325
|
|
|
7232
7326
|
var _prodInvariant = _dereq_(153),
|
|
7233
|
-
_assign = _dereq_(
|
|
7327
|
+
_assign = _dereq_(188);
|
|
7234
7328
|
|
|
7235
7329
|
var AutoFocusUtils = _dereq_(1);
|
|
7236
7330
|
var CSSPropertyOperations = _dereq_(4);
|
|
@@ -7258,9 +7352,9 @@ var escapeTextContentForBrowser = _dereq_(135);
|
|
|
7258
7352
|
var invariant = _dereq_(178);
|
|
7259
7353
|
var isEventSupported = _dereq_(149);
|
|
7260
7354
|
var keyOf = _dereq_(182);
|
|
7261
|
-
var shallowEqual = _dereq_(
|
|
7355
|
+
var shallowEqual = _dereq_(186);
|
|
7262
7356
|
var validateDOMNesting = _dereq_(161);
|
|
7263
|
-
var warning = _dereq_(
|
|
7357
|
+
var warning = _dereq_(187);
|
|
7264
7358
|
|
|
7265
7359
|
var Flags = ReactDOMComponentFlags;
|
|
7266
7360
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -7416,7 +7510,8 @@ if ("development" !== 'production') {
|
|
|
7416
7510
|
setContentChildForInstrumentation = function (content) {
|
|
7417
7511
|
var hasExistingContent = this._contentDebugID != null;
|
|
7418
7512
|
var debugID = this._debugID;
|
|
7419
|
-
|
|
7513
|
+
// This ID represents the inlined child that has no backing instance:
|
|
7514
|
+
var contentDebugID = -debugID;
|
|
7420
7515
|
|
|
7421
7516
|
if (content == null) {
|
|
7422
7517
|
if (hasExistingContent) {
|
|
@@ -8218,7 +8313,7 @@ ReactDOMComponent.Mixin = {
|
|
|
8218
8313
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
8219
8314
|
|
|
8220
8315
|
module.exports = ReactDOMComponent;
|
|
8221
|
-
},{"1":1,"10":10,"11":11,"135":135,"149":149,"153":153,"16":16,"161":161,"17":17,"170":170,"178":178,"18":18,"182":182,"187":187,"188":188,"
|
|
8316
|
+
},{"1":1,"10":10,"11":11,"135":135,"149":149,"153":153,"16":16,"161":161,"17":17,"170":170,"178":178,"18":18,"182":182,"186":186,"187":187,"188":188,"28":28,"4":4,"43":43,"45":45,"46":46,"52":52,"54":54,"55":55,"59":59,"78":78,"8":8,"83":83,"9":9,"99":99}],45:[function(_dereq_,module,exports){
|
|
8222
8317
|
/**
|
|
8223
8318
|
* Copyright 2015-present, Facebook, Inc.
|
|
8224
8319
|
* All rights reserved.
|
|
@@ -8474,7 +8569,7 @@ module.exports = ReactDOMContainerInfo;
|
|
|
8474
8569
|
|
|
8475
8570
|
'use strict';
|
|
8476
8571
|
|
|
8477
|
-
var _assign = _dereq_(
|
|
8572
|
+
var _assign = _dereq_(188);
|
|
8478
8573
|
|
|
8479
8574
|
var DOMLazyTree = _dereq_(8);
|
|
8480
8575
|
var ReactDOMComponentTree = _dereq_(46);
|
|
@@ -8521,7 +8616,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
8521
8616
|
});
|
|
8522
8617
|
|
|
8523
8618
|
module.exports = ReactDOMEmptyComponent;
|
|
8524
|
-
},{"
|
|
8619
|
+
},{"188":188,"46":46,"8":8}],49:[function(_dereq_,module,exports){
|
|
8525
8620
|
/**
|
|
8526
8621
|
* Copyright 2013-present, Facebook, Inc.
|
|
8527
8622
|
* All rights reserved.
|
|
@@ -8537,20 +8632,15 @@ module.exports = ReactDOMEmptyComponent;
|
|
|
8537
8632
|
|
|
8538
8633
|
var ReactElement = _dereq_(65);
|
|
8539
8634
|
|
|
8540
|
-
var mapObject = _dereq_(183);
|
|
8541
|
-
|
|
8542
8635
|
/**
|
|
8543
8636
|
* Create a factory that creates HTML tag elements.
|
|
8544
8637
|
*
|
|
8545
|
-
* @param {string} tag Tag name (e.g. `div`).
|
|
8546
8638
|
* @private
|
|
8547
8639
|
*/
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
}
|
|
8553
|
-
return ReactElement.createFactory(tag);
|
|
8640
|
+
var createDOMFactory = ReactElement.createFactory;
|
|
8641
|
+
if ("development" !== 'production') {
|
|
8642
|
+
var ReactElementValidator = _dereq_(66);
|
|
8643
|
+
createDOMFactory = ReactElementValidator.createFactory;
|
|
8554
8644
|
}
|
|
8555
8645
|
|
|
8556
8646
|
/**
|
|
@@ -8559,146 +8649,145 @@ function createDOMFactory(tag) {
|
|
|
8559
8649
|
*
|
|
8560
8650
|
* @public
|
|
8561
8651
|
*/
|
|
8562
|
-
var ReactDOMFactories =
|
|
8563
|
-
a: 'a',
|
|
8564
|
-
abbr: 'abbr',
|
|
8565
|
-
address: 'address',
|
|
8566
|
-
area: 'area',
|
|
8567
|
-
article: 'article',
|
|
8568
|
-
aside: 'aside',
|
|
8569
|
-
audio: 'audio',
|
|
8570
|
-
b: 'b',
|
|
8571
|
-
base: 'base',
|
|
8572
|
-
bdi: 'bdi',
|
|
8573
|
-
bdo: 'bdo',
|
|
8574
|
-
big: 'big',
|
|
8575
|
-
blockquote: 'blockquote',
|
|
8576
|
-
body: 'body',
|
|
8577
|
-
br: 'br',
|
|
8578
|
-
button: 'button',
|
|
8579
|
-
canvas: 'canvas',
|
|
8580
|
-
caption: 'caption',
|
|
8581
|
-
cite: 'cite',
|
|
8582
|
-
code: 'code',
|
|
8583
|
-
col: 'col',
|
|
8584
|
-
colgroup: 'colgroup',
|
|
8585
|
-
data: 'data',
|
|
8586
|
-
datalist: 'datalist',
|
|
8587
|
-
dd: 'dd',
|
|
8588
|
-
del: 'del',
|
|
8589
|
-
details: 'details',
|
|
8590
|
-
dfn: 'dfn',
|
|
8591
|
-
dialog: 'dialog',
|
|
8592
|
-
div: 'div',
|
|
8593
|
-
dl: 'dl',
|
|
8594
|
-
dt: 'dt',
|
|
8595
|
-
em: 'em',
|
|
8596
|
-
embed: 'embed',
|
|
8597
|
-
fieldset: 'fieldset',
|
|
8598
|
-
figcaption: 'figcaption',
|
|
8599
|
-
figure: 'figure',
|
|
8600
|
-
footer: 'footer',
|
|
8601
|
-
form: 'form',
|
|
8602
|
-
h1: 'h1',
|
|
8603
|
-
h2: 'h2',
|
|
8604
|
-
h3: 'h3',
|
|
8605
|
-
h4: 'h4',
|
|
8606
|
-
h5: 'h5',
|
|
8607
|
-
h6: 'h6',
|
|
8608
|
-
head: 'head',
|
|
8609
|
-
header: 'header',
|
|
8610
|
-
hgroup: 'hgroup',
|
|
8611
|
-
hr: 'hr',
|
|
8612
|
-
html: 'html',
|
|
8613
|
-
i: 'i',
|
|
8614
|
-
iframe: 'iframe',
|
|
8615
|
-
img: 'img',
|
|
8616
|
-
input: 'input',
|
|
8617
|
-
ins: 'ins',
|
|
8618
|
-
kbd: 'kbd',
|
|
8619
|
-
keygen: 'keygen',
|
|
8620
|
-
label: 'label',
|
|
8621
|
-
legend: 'legend',
|
|
8622
|
-
li: 'li',
|
|
8623
|
-
link: 'link',
|
|
8624
|
-
main: 'main',
|
|
8625
|
-
map: 'map',
|
|
8626
|
-
mark: 'mark',
|
|
8627
|
-
menu: 'menu',
|
|
8628
|
-
menuitem: 'menuitem',
|
|
8629
|
-
meta: 'meta',
|
|
8630
|
-
meter: 'meter',
|
|
8631
|
-
nav: 'nav',
|
|
8632
|
-
noscript: 'noscript',
|
|
8633
|
-
object: 'object',
|
|
8634
|
-
ol: 'ol',
|
|
8635
|
-
optgroup: 'optgroup',
|
|
8636
|
-
option: 'option',
|
|
8637
|
-
output: 'output',
|
|
8638
|
-
p: 'p',
|
|
8639
|
-
param: 'param',
|
|
8640
|
-
picture: 'picture',
|
|
8641
|
-
pre: 'pre',
|
|
8642
|
-
progress: 'progress',
|
|
8643
|
-
q: 'q',
|
|
8644
|
-
rp: 'rp',
|
|
8645
|
-
rt: 'rt',
|
|
8646
|
-
ruby: 'ruby',
|
|
8647
|
-
s: 's',
|
|
8648
|
-
samp: 'samp',
|
|
8649
|
-
script: 'script',
|
|
8650
|
-
section: 'section',
|
|
8651
|
-
select: 'select',
|
|
8652
|
-
small: 'small',
|
|
8653
|
-
source: 'source',
|
|
8654
|
-
span: 'span',
|
|
8655
|
-
strong: 'strong',
|
|
8656
|
-
style: 'style',
|
|
8657
|
-
sub: 'sub',
|
|
8658
|
-
summary: 'summary',
|
|
8659
|
-
sup: 'sup',
|
|
8660
|
-
table: 'table',
|
|
8661
|
-
tbody: 'tbody',
|
|
8662
|
-
td: 'td',
|
|
8663
|
-
textarea: 'textarea',
|
|
8664
|
-
tfoot: 'tfoot',
|
|
8665
|
-
th: 'th',
|
|
8666
|
-
thead: 'thead',
|
|
8667
|
-
time: 'time',
|
|
8668
|
-
title: 'title',
|
|
8669
|
-
tr: 'tr',
|
|
8670
|
-
track: 'track',
|
|
8671
|
-
u: 'u',
|
|
8672
|
-
ul: 'ul',
|
|
8673
|
-
'var': 'var',
|
|
8674
|
-
video: 'video',
|
|
8675
|
-
wbr: 'wbr',
|
|
8652
|
+
var ReactDOMFactories = {
|
|
8653
|
+
a: createDOMFactory('a'),
|
|
8654
|
+
abbr: createDOMFactory('abbr'),
|
|
8655
|
+
address: createDOMFactory('address'),
|
|
8656
|
+
area: createDOMFactory('area'),
|
|
8657
|
+
article: createDOMFactory('article'),
|
|
8658
|
+
aside: createDOMFactory('aside'),
|
|
8659
|
+
audio: createDOMFactory('audio'),
|
|
8660
|
+
b: createDOMFactory('b'),
|
|
8661
|
+
base: createDOMFactory('base'),
|
|
8662
|
+
bdi: createDOMFactory('bdi'),
|
|
8663
|
+
bdo: createDOMFactory('bdo'),
|
|
8664
|
+
big: createDOMFactory('big'),
|
|
8665
|
+
blockquote: createDOMFactory('blockquote'),
|
|
8666
|
+
body: createDOMFactory('body'),
|
|
8667
|
+
br: createDOMFactory('br'),
|
|
8668
|
+
button: createDOMFactory('button'),
|
|
8669
|
+
canvas: createDOMFactory('canvas'),
|
|
8670
|
+
caption: createDOMFactory('caption'),
|
|
8671
|
+
cite: createDOMFactory('cite'),
|
|
8672
|
+
code: createDOMFactory('code'),
|
|
8673
|
+
col: createDOMFactory('col'),
|
|
8674
|
+
colgroup: createDOMFactory('colgroup'),
|
|
8675
|
+
data: createDOMFactory('data'),
|
|
8676
|
+
datalist: createDOMFactory('datalist'),
|
|
8677
|
+
dd: createDOMFactory('dd'),
|
|
8678
|
+
del: createDOMFactory('del'),
|
|
8679
|
+
details: createDOMFactory('details'),
|
|
8680
|
+
dfn: createDOMFactory('dfn'),
|
|
8681
|
+
dialog: createDOMFactory('dialog'),
|
|
8682
|
+
div: createDOMFactory('div'),
|
|
8683
|
+
dl: createDOMFactory('dl'),
|
|
8684
|
+
dt: createDOMFactory('dt'),
|
|
8685
|
+
em: createDOMFactory('em'),
|
|
8686
|
+
embed: createDOMFactory('embed'),
|
|
8687
|
+
fieldset: createDOMFactory('fieldset'),
|
|
8688
|
+
figcaption: createDOMFactory('figcaption'),
|
|
8689
|
+
figure: createDOMFactory('figure'),
|
|
8690
|
+
footer: createDOMFactory('footer'),
|
|
8691
|
+
form: createDOMFactory('form'),
|
|
8692
|
+
h1: createDOMFactory('h1'),
|
|
8693
|
+
h2: createDOMFactory('h2'),
|
|
8694
|
+
h3: createDOMFactory('h3'),
|
|
8695
|
+
h4: createDOMFactory('h4'),
|
|
8696
|
+
h5: createDOMFactory('h5'),
|
|
8697
|
+
h6: createDOMFactory('h6'),
|
|
8698
|
+
head: createDOMFactory('head'),
|
|
8699
|
+
header: createDOMFactory('header'),
|
|
8700
|
+
hgroup: createDOMFactory('hgroup'),
|
|
8701
|
+
hr: createDOMFactory('hr'),
|
|
8702
|
+
html: createDOMFactory('html'),
|
|
8703
|
+
i: createDOMFactory('i'),
|
|
8704
|
+
iframe: createDOMFactory('iframe'),
|
|
8705
|
+
img: createDOMFactory('img'),
|
|
8706
|
+
input: createDOMFactory('input'),
|
|
8707
|
+
ins: createDOMFactory('ins'),
|
|
8708
|
+
kbd: createDOMFactory('kbd'),
|
|
8709
|
+
keygen: createDOMFactory('keygen'),
|
|
8710
|
+
label: createDOMFactory('label'),
|
|
8711
|
+
legend: createDOMFactory('legend'),
|
|
8712
|
+
li: createDOMFactory('li'),
|
|
8713
|
+
link: createDOMFactory('link'),
|
|
8714
|
+
main: createDOMFactory('main'),
|
|
8715
|
+
map: createDOMFactory('map'),
|
|
8716
|
+
mark: createDOMFactory('mark'),
|
|
8717
|
+
menu: createDOMFactory('menu'),
|
|
8718
|
+
menuitem: createDOMFactory('menuitem'),
|
|
8719
|
+
meta: createDOMFactory('meta'),
|
|
8720
|
+
meter: createDOMFactory('meter'),
|
|
8721
|
+
nav: createDOMFactory('nav'),
|
|
8722
|
+
noscript: createDOMFactory('noscript'),
|
|
8723
|
+
object: createDOMFactory('object'),
|
|
8724
|
+
ol: createDOMFactory('ol'),
|
|
8725
|
+
optgroup: createDOMFactory('optgroup'),
|
|
8726
|
+
option: createDOMFactory('option'),
|
|
8727
|
+
output: createDOMFactory('output'),
|
|
8728
|
+
p: createDOMFactory('p'),
|
|
8729
|
+
param: createDOMFactory('param'),
|
|
8730
|
+
picture: createDOMFactory('picture'),
|
|
8731
|
+
pre: createDOMFactory('pre'),
|
|
8732
|
+
progress: createDOMFactory('progress'),
|
|
8733
|
+
q: createDOMFactory('q'),
|
|
8734
|
+
rp: createDOMFactory('rp'),
|
|
8735
|
+
rt: createDOMFactory('rt'),
|
|
8736
|
+
ruby: createDOMFactory('ruby'),
|
|
8737
|
+
s: createDOMFactory('s'),
|
|
8738
|
+
samp: createDOMFactory('samp'),
|
|
8739
|
+
script: createDOMFactory('script'),
|
|
8740
|
+
section: createDOMFactory('section'),
|
|
8741
|
+
select: createDOMFactory('select'),
|
|
8742
|
+
small: createDOMFactory('small'),
|
|
8743
|
+
source: createDOMFactory('source'),
|
|
8744
|
+
span: createDOMFactory('span'),
|
|
8745
|
+
strong: createDOMFactory('strong'),
|
|
8746
|
+
style: createDOMFactory('style'),
|
|
8747
|
+
sub: createDOMFactory('sub'),
|
|
8748
|
+
summary: createDOMFactory('summary'),
|
|
8749
|
+
sup: createDOMFactory('sup'),
|
|
8750
|
+
table: createDOMFactory('table'),
|
|
8751
|
+
tbody: createDOMFactory('tbody'),
|
|
8752
|
+
td: createDOMFactory('td'),
|
|
8753
|
+
textarea: createDOMFactory('textarea'),
|
|
8754
|
+
tfoot: createDOMFactory('tfoot'),
|
|
8755
|
+
th: createDOMFactory('th'),
|
|
8756
|
+
thead: createDOMFactory('thead'),
|
|
8757
|
+
time: createDOMFactory('time'),
|
|
8758
|
+
title: createDOMFactory('title'),
|
|
8759
|
+
tr: createDOMFactory('tr'),
|
|
8760
|
+
track: createDOMFactory('track'),
|
|
8761
|
+
u: createDOMFactory('u'),
|
|
8762
|
+
ul: createDOMFactory('ul'),
|
|
8763
|
+
'var': createDOMFactory('var'),
|
|
8764
|
+
video: createDOMFactory('video'),
|
|
8765
|
+
wbr: createDOMFactory('wbr'),
|
|
8676
8766
|
|
|
8677
8767
|
// SVG
|
|
8678
|
-
circle: 'circle',
|
|
8679
|
-
clipPath: 'clipPath',
|
|
8680
|
-
defs: 'defs',
|
|
8681
|
-
ellipse: 'ellipse',
|
|
8682
|
-
g: 'g',
|
|
8683
|
-
image: 'image',
|
|
8684
|
-
line: 'line',
|
|
8685
|
-
linearGradient: 'linearGradient',
|
|
8686
|
-
mask: 'mask',
|
|
8687
|
-
path: 'path',
|
|
8688
|
-
pattern: 'pattern',
|
|
8689
|
-
polygon: 'polygon',
|
|
8690
|
-
polyline: 'polyline',
|
|
8691
|
-
radialGradient: 'radialGradient',
|
|
8692
|
-
rect: 'rect',
|
|
8693
|
-
stop: 'stop',
|
|
8694
|
-
svg: 'svg',
|
|
8695
|
-
text: 'text',
|
|
8696
|
-
tspan: 'tspan'
|
|
8697
|
-
|
|
8698
|
-
}, createDOMFactory);
|
|
8768
|
+
circle: createDOMFactory('circle'),
|
|
8769
|
+
clipPath: createDOMFactory('clipPath'),
|
|
8770
|
+
defs: createDOMFactory('defs'),
|
|
8771
|
+
ellipse: createDOMFactory('ellipse'),
|
|
8772
|
+
g: createDOMFactory('g'),
|
|
8773
|
+
image: createDOMFactory('image'),
|
|
8774
|
+
line: createDOMFactory('line'),
|
|
8775
|
+
linearGradient: createDOMFactory('linearGradient'),
|
|
8776
|
+
mask: createDOMFactory('mask'),
|
|
8777
|
+
path: createDOMFactory('path'),
|
|
8778
|
+
pattern: createDOMFactory('pattern'),
|
|
8779
|
+
polygon: createDOMFactory('polygon'),
|
|
8780
|
+
polyline: createDOMFactory('polyline'),
|
|
8781
|
+
radialGradient: createDOMFactory('radialGradient'),
|
|
8782
|
+
rect: createDOMFactory('rect'),
|
|
8783
|
+
stop: createDOMFactory('stop'),
|
|
8784
|
+
svg: createDOMFactory('svg'),
|
|
8785
|
+
text: createDOMFactory('text'),
|
|
8786
|
+
tspan: createDOMFactory('tspan')
|
|
8787
|
+
};
|
|
8699
8788
|
|
|
8700
8789
|
module.exports = ReactDOMFactories;
|
|
8701
|
-
},{"
|
|
8790
|
+
},{"65":65,"66":66}],50:[function(_dereq_,module,exports){
|
|
8702
8791
|
/**
|
|
8703
8792
|
* Copyright 2013-present, Facebook, Inc.
|
|
8704
8793
|
* All rights reserved.
|
|
@@ -8767,7 +8856,7 @@ module.exports = ReactDOMIDOperations;
|
|
|
8767
8856
|
'use strict';
|
|
8768
8857
|
|
|
8769
8858
|
var _prodInvariant = _dereq_(153),
|
|
8770
|
-
_assign = _dereq_(
|
|
8859
|
+
_assign = _dereq_(188);
|
|
8771
8860
|
|
|
8772
8861
|
var DisabledInputUtils = _dereq_(14);
|
|
8773
8862
|
var DOMPropertyOperations = _dereq_(11);
|
|
@@ -8776,7 +8865,7 @@ var ReactDOMComponentTree = _dereq_(46);
|
|
|
8776
8865
|
var ReactUpdates = _dereq_(107);
|
|
8777
8866
|
|
|
8778
8867
|
var invariant = _dereq_(178);
|
|
8779
|
-
var warning = _dereq_(
|
|
8868
|
+
var warning = _dereq_(187);
|
|
8780
8869
|
|
|
8781
8870
|
var didWarnValueLink = false;
|
|
8782
8871
|
var didWarnCheckedLink = false;
|
|
@@ -8824,7 +8913,11 @@ var ReactDOMInput = {
|
|
|
8824
8913
|
type: undefined,
|
|
8825
8914
|
// Make sure we set .step before .value (setting .value before .step
|
|
8826
8915
|
// means .value is rounded on mount, based upon step precision)
|
|
8827
|
-
step: undefined
|
|
8916
|
+
step: undefined,
|
|
8917
|
+
// Make sure we set .min & .max before .value (to ensure proper order
|
|
8918
|
+
// in corner cases such as min or max deriving from value, e.g. Issue #7170)
|
|
8919
|
+
min: undefined,
|
|
8920
|
+
max: undefined
|
|
8828
8921
|
}, DisabledInputUtils.getHostProps(inst, props), {
|
|
8829
8922
|
defaultChecked: undefined,
|
|
8830
8923
|
defaultValue: undefined,
|
|
@@ -9018,7 +9111,7 @@ function _handleChange(event) {
|
|
|
9018
9111
|
}
|
|
9019
9112
|
|
|
9020
9113
|
module.exports = ReactDOMInput;
|
|
9021
|
-
},{"107":107,"11":11,"14":14,"153":153,"178":178,"
|
|
9114
|
+
},{"107":107,"11":11,"14":14,"153":153,"178":178,"187":187,"188":188,"25":25,"46":46}],53:[function(_dereq_,module,exports){
|
|
9022
9115
|
/**
|
|
9023
9116
|
* Copyright 2013-present, Facebook, Inc.
|
|
9024
9117
|
* All rights reserved.
|
|
@@ -9034,7 +9127,7 @@ module.exports = ReactDOMInput;
|
|
|
9034
9127
|
|
|
9035
9128
|
var ReactComponentTreeHook = _dereq_(38);
|
|
9036
9129
|
|
|
9037
|
-
var warning = _dereq_(
|
|
9130
|
+
var warning = _dereq_(187);
|
|
9038
9131
|
|
|
9039
9132
|
var didWarnValueNull = false;
|
|
9040
9133
|
|
|
@@ -9062,7 +9155,7 @@ var ReactDOMNullInputValuePropHook = {
|
|
|
9062
9155
|
};
|
|
9063
9156
|
|
|
9064
9157
|
module.exports = ReactDOMNullInputValuePropHook;
|
|
9065
|
-
},{"
|
|
9158
|
+
},{"187":187,"38":38}],54:[function(_dereq_,module,exports){
|
|
9066
9159
|
/**
|
|
9067
9160
|
* Copyright 2013-present, Facebook, Inc.
|
|
9068
9161
|
* All rights reserved.
|
|
@@ -9076,13 +9169,13 @@ module.exports = ReactDOMNullInputValuePropHook;
|
|
|
9076
9169
|
|
|
9077
9170
|
'use strict';
|
|
9078
9171
|
|
|
9079
|
-
var _assign = _dereq_(
|
|
9172
|
+
var _assign = _dereq_(188);
|
|
9080
9173
|
|
|
9081
9174
|
var ReactChildren = _dereq_(32);
|
|
9082
9175
|
var ReactDOMComponentTree = _dereq_(46);
|
|
9083
9176
|
var ReactDOMSelect = _dereq_(55);
|
|
9084
9177
|
|
|
9085
|
-
var warning = _dereq_(
|
|
9178
|
+
var warning = _dereq_(187);
|
|
9086
9179
|
var didWarnInvalidOptionChildren = false;
|
|
9087
9180
|
|
|
9088
9181
|
function flattenChildren(children) {
|
|
@@ -9186,7 +9279,7 @@ var ReactDOMOption = {
|
|
|
9186
9279
|
};
|
|
9187
9280
|
|
|
9188
9281
|
module.exports = ReactDOMOption;
|
|
9189
|
-
},{"
|
|
9282
|
+
},{"187":187,"188":188,"32":32,"46":46,"55":55}],55:[function(_dereq_,module,exports){
|
|
9190
9283
|
/**
|
|
9191
9284
|
* Copyright 2013-present, Facebook, Inc.
|
|
9192
9285
|
* All rights reserved.
|
|
@@ -9200,14 +9293,14 @@ module.exports = ReactDOMOption;
|
|
|
9200
9293
|
|
|
9201
9294
|
'use strict';
|
|
9202
9295
|
|
|
9203
|
-
var _assign = _dereq_(
|
|
9296
|
+
var _assign = _dereq_(188);
|
|
9204
9297
|
|
|
9205
9298
|
var DisabledInputUtils = _dereq_(14);
|
|
9206
9299
|
var LinkedValueUtils = _dereq_(25);
|
|
9207
9300
|
var ReactDOMComponentTree = _dereq_(46);
|
|
9208
9301
|
var ReactUpdates = _dereq_(107);
|
|
9209
9302
|
|
|
9210
|
-
var warning = _dereq_(
|
|
9303
|
+
var warning = _dereq_(187);
|
|
9211
9304
|
|
|
9212
9305
|
var didWarnValueLink = false;
|
|
9213
9306
|
var didWarnValueDefaultValue = false;
|
|
@@ -9388,7 +9481,7 @@ function _handleChange(event) {
|
|
|
9388
9481
|
}
|
|
9389
9482
|
|
|
9390
9483
|
module.exports = ReactDOMSelect;
|
|
9391
|
-
},{"107":107,"14":14,"
|
|
9484
|
+
},{"107":107,"14":14,"187":187,"188":188,"25":25,"46":46}],56:[function(_dereq_,module,exports){
|
|
9392
9485
|
/**
|
|
9393
9486
|
* Copyright 2013-present, Facebook, Inc.
|
|
9394
9487
|
* All rights reserved.
|
|
@@ -9643,7 +9736,7 @@ module.exports = ReactDOMServer;
|
|
|
9643
9736
|
'use strict';
|
|
9644
9737
|
|
|
9645
9738
|
var _prodInvariant = _dereq_(153),
|
|
9646
|
-
_assign = _dereq_(
|
|
9739
|
+
_assign = _dereq_(188);
|
|
9647
9740
|
|
|
9648
9741
|
var DOMChildrenOperations = _dereq_(7);
|
|
9649
9742
|
var DOMLazyTree = _dereq_(8);
|
|
@@ -9793,7 +9886,7 @@ _assign(ReactDOMTextComponent.prototype, {
|
|
|
9793
9886
|
});
|
|
9794
9887
|
|
|
9795
9888
|
module.exports = ReactDOMTextComponent;
|
|
9796
|
-
},{"135":135,"153":153,"161":161,"178":178,"
|
|
9889
|
+
},{"135":135,"153":153,"161":161,"178":178,"188":188,"46":46,"7":7,"8":8}],59:[function(_dereq_,module,exports){
|
|
9797
9890
|
/**
|
|
9798
9891
|
* Copyright 2013-present, Facebook, Inc.
|
|
9799
9892
|
* All rights reserved.
|
|
@@ -9808,7 +9901,7 @@ module.exports = ReactDOMTextComponent;
|
|
|
9808
9901
|
'use strict';
|
|
9809
9902
|
|
|
9810
9903
|
var _prodInvariant = _dereq_(153),
|
|
9811
|
-
_assign = _dereq_(
|
|
9904
|
+
_assign = _dereq_(188);
|
|
9812
9905
|
|
|
9813
9906
|
var DisabledInputUtils = _dereq_(14);
|
|
9814
9907
|
var LinkedValueUtils = _dereq_(25);
|
|
@@ -9816,7 +9909,7 @@ var ReactDOMComponentTree = _dereq_(46);
|
|
|
9816
9909
|
var ReactUpdates = _dereq_(107);
|
|
9817
9910
|
|
|
9818
9911
|
var invariant = _dereq_(178);
|
|
9819
|
-
var warning = _dereq_(
|
|
9912
|
+
var warning = _dereq_(187);
|
|
9820
9913
|
|
|
9821
9914
|
var didWarnValueLink = false;
|
|
9822
9915
|
var didWarnValDefaultVal = false;
|
|
@@ -9949,7 +10042,7 @@ function _handleChange(event) {
|
|
|
9949
10042
|
}
|
|
9950
10043
|
|
|
9951
10044
|
module.exports = ReactDOMTextarea;
|
|
9952
|
-
},{"107":107,"14":14,"153":153,"178":178,"
|
|
10045
|
+
},{"107":107,"14":14,"153":153,"178":178,"187":187,"188":188,"25":25,"46":46}],60:[function(_dereq_,module,exports){
|
|
9953
10046
|
/**
|
|
9954
10047
|
* Copyright 2015-present, Facebook, Inc.
|
|
9955
10048
|
* All rights reserved.
|
|
@@ -10104,7 +10197,7 @@ var DOMProperty = _dereq_(10);
|
|
|
10104
10197
|
var EventPluginRegistry = _dereq_(18);
|
|
10105
10198
|
var ReactComponentTreeHook = _dereq_(38);
|
|
10106
10199
|
|
|
10107
|
-
var warning = _dereq_(
|
|
10200
|
+
var warning = _dereq_(187);
|
|
10108
10201
|
|
|
10109
10202
|
if ("development" !== 'production') {
|
|
10110
10203
|
var reactProps = {
|
|
@@ -10199,7 +10292,7 @@ var ReactDOMUnknownPropertyHook = {
|
|
|
10199
10292
|
};
|
|
10200
10293
|
|
|
10201
10294
|
module.exports = ReactDOMUnknownPropertyHook;
|
|
10202
|
-
},{"10":10,"18":18,"
|
|
10295
|
+
},{"10":10,"18":18,"187":187,"38":38}],62:[function(_dereq_,module,exports){
|
|
10203
10296
|
/**
|
|
10204
10297
|
* Copyright 2016-present, Facebook, Inc.
|
|
10205
10298
|
* All rights reserved.
|
|
@@ -10219,8 +10312,8 @@ var ReactComponentTreeHook = _dereq_(38);
|
|
|
10219
10312
|
var ReactChildrenMutationWarningHook = _dereq_(33);
|
|
10220
10313
|
var ExecutionEnvironment = _dereq_(164);
|
|
10221
10314
|
|
|
10222
|
-
var performanceNow = _dereq_(
|
|
10223
|
-
var warning = _dereq_(
|
|
10315
|
+
var performanceNow = _dereq_(185);
|
|
10316
|
+
var warning = _dereq_(187);
|
|
10224
10317
|
|
|
10225
10318
|
var hooks = [];
|
|
10226
10319
|
var didHookThrowForEvent = {};
|
|
@@ -10507,7 +10600,7 @@ if (/[?&]react_perf\b/.test(url)) {
|
|
|
10507
10600
|
}
|
|
10508
10601
|
|
|
10509
10602
|
module.exports = ReactDebugTool;
|
|
10510
|
-
},{"164":164,"
|
|
10603
|
+
},{"164":164,"185":185,"187":187,"33":33,"38":38,"74":74,"79":79}],63:[function(_dereq_,module,exports){
|
|
10511
10604
|
/**
|
|
10512
10605
|
* Copyright 2013-present, Facebook, Inc.
|
|
10513
10606
|
* All rights reserved.
|
|
@@ -10521,7 +10614,7 @@ module.exports = ReactDebugTool;
|
|
|
10521
10614
|
|
|
10522
10615
|
'use strict';
|
|
10523
10616
|
|
|
10524
|
-
var _assign = _dereq_(
|
|
10617
|
+
var _assign = _dereq_(188);
|
|
10525
10618
|
|
|
10526
10619
|
var ReactUpdates = _dereq_(107);
|
|
10527
10620
|
var Transaction = _dereq_(127);
|
|
@@ -10576,7 +10669,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
10576
10669
|
};
|
|
10577
10670
|
|
|
10578
10671
|
module.exports = ReactDefaultBatchingStrategy;
|
|
10579
|
-
},{"107":107,"127":127,"170":170,"
|
|
10672
|
+
},{"107":107,"127":127,"170":170,"188":188}],64:[function(_dereq_,module,exports){
|
|
10580
10673
|
/**
|
|
10581
10674
|
* Copyright 2013-present, Facebook, Inc.
|
|
10582
10675
|
* All rights reserved.
|
|
@@ -10675,11 +10768,11 @@ module.exports = {
|
|
|
10675
10768
|
|
|
10676
10769
|
'use strict';
|
|
10677
10770
|
|
|
10678
|
-
var _assign = _dereq_(
|
|
10771
|
+
var _assign = _dereq_(188);
|
|
10679
10772
|
|
|
10680
10773
|
var ReactCurrentOwner = _dereq_(41);
|
|
10681
10774
|
|
|
10682
|
-
var warning = _dereq_(
|
|
10775
|
+
var warning = _dereq_(187);
|
|
10683
10776
|
var canDefineProperty = _dereq_(131);
|
|
10684
10777
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
10685
10778
|
|
|
@@ -10720,6 +10813,34 @@ function hasValidKey(config) {
|
|
|
10720
10813
|
return config.key !== undefined;
|
|
10721
10814
|
}
|
|
10722
10815
|
|
|
10816
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
10817
|
+
var warnAboutAccessingKey = function () {
|
|
10818
|
+
if (!specialPropKeyWarningShown) {
|
|
10819
|
+
specialPropKeyWarningShown = true;
|
|
10820
|
+
"development" !== 'production' ? warning(false, '%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;
|
|
10821
|
+
}
|
|
10822
|
+
};
|
|
10823
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
10824
|
+
Object.defineProperty(props, 'key', {
|
|
10825
|
+
get: warnAboutAccessingKey,
|
|
10826
|
+
configurable: true
|
|
10827
|
+
});
|
|
10828
|
+
}
|
|
10829
|
+
|
|
10830
|
+
function defineRefPropWarningGetter(props, displayName) {
|
|
10831
|
+
var warnAboutAccessingRef = function () {
|
|
10832
|
+
if (!specialPropRefWarningShown) {
|
|
10833
|
+
specialPropRefWarningShown = true;
|
|
10834
|
+
"development" !== 'production' ? warning(false, '%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;
|
|
10835
|
+
}
|
|
10836
|
+
};
|
|
10837
|
+
warnAboutAccessingRef.isReactWarning = true;
|
|
10838
|
+
Object.defineProperty(props, 'ref', {
|
|
10839
|
+
get: warnAboutAccessingRef,
|
|
10840
|
+
configurable: true
|
|
10841
|
+
});
|
|
10842
|
+
}
|
|
10843
|
+
|
|
10723
10844
|
/**
|
|
10724
10845
|
* Factory method to create a new React element. This no longer adheres to
|
|
10725
10846
|
* the class pattern, so do not use new to call it. Also, no instanceof check
|
|
@@ -10874,39 +10995,15 @@ ReactElement.createElement = function (type, config, children) {
|
|
|
10874
10995
|
}
|
|
10875
10996
|
}
|
|
10876
10997
|
if ("development" !== 'production') {
|
|
10877
|
-
|
|
10878
|
-
|
|
10879
|
-
|
|
10880
|
-
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10885
|
-
|
|
10886
|
-
};
|
|
10887
|
-
warnAboutAccessingKey.isReactWarning = true;
|
|
10888
|
-
|
|
10889
|
-
var warnAboutAccessingRef = function () {
|
|
10890
|
-
if (!specialPropRefWarningShown) {
|
|
10891
|
-
specialPropRefWarningShown = true;
|
|
10892
|
-
"development" !== 'production' ? warning(false, '%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;
|
|
10893
|
-
}
|
|
10894
|
-
return undefined;
|
|
10895
|
-
};
|
|
10896
|
-
warnAboutAccessingRef.isReactWarning = true;
|
|
10897
|
-
|
|
10898
|
-
if (typeof props.$$typeof === 'undefined' || props.$$typeof !== REACT_ELEMENT_TYPE) {
|
|
10899
|
-
if (!props.hasOwnProperty('key')) {
|
|
10900
|
-
Object.defineProperty(props, 'key', {
|
|
10901
|
-
get: warnAboutAccessingKey,
|
|
10902
|
-
configurable: true
|
|
10903
|
-
});
|
|
10904
|
-
}
|
|
10905
|
-
if (!props.hasOwnProperty('ref')) {
|
|
10906
|
-
Object.defineProperty(props, 'ref', {
|
|
10907
|
-
get: warnAboutAccessingRef,
|
|
10908
|
-
configurable: true
|
|
10909
|
-
});
|
|
10998
|
+
if (key || ref) {
|
|
10999
|
+
if (typeof props.$$typeof === 'undefined' || props.$$typeof !== REACT_ELEMENT_TYPE) {
|
|
11000
|
+
var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;
|
|
11001
|
+
if (key) {
|
|
11002
|
+
defineKeyPropWarningGetter(props, displayName);
|
|
11003
|
+
}
|
|
11004
|
+
if (ref) {
|
|
11005
|
+
defineRefPropWarningGetter(props, displayName);
|
|
11006
|
+
}
|
|
10910
11007
|
}
|
|
10911
11008
|
}
|
|
10912
11009
|
}
|
|
@@ -11022,7 +11119,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
11022
11119
|
ReactElement.REACT_ELEMENT_TYPE = REACT_ELEMENT_TYPE;
|
|
11023
11120
|
|
|
11024
11121
|
module.exports = ReactElement;
|
|
11025
|
-
},{"131":131,"
|
|
11122
|
+
},{"131":131,"187":187,"188":188,"41":41}],66:[function(_dereq_,module,exports){
|
|
11026
11123
|
/**
|
|
11027
11124
|
* Copyright 2014-present, Facebook, Inc.
|
|
11028
11125
|
* All rights reserved.
|
|
@@ -11052,7 +11149,7 @@ var checkReactTypeSpec = _dereq_(132);
|
|
|
11052
11149
|
|
|
11053
11150
|
var canDefineProperty = _dereq_(131);
|
|
11054
11151
|
var getIteratorFn = _dereq_(144);
|
|
11055
|
-
var warning = _dereq_(
|
|
11152
|
+
var warning = _dereq_(187);
|
|
11056
11153
|
|
|
11057
11154
|
function getDeclarationErrorAddendum() {
|
|
11058
11155
|
if (ReactCurrentOwner.current) {
|
|
@@ -11251,7 +11348,7 @@ var ReactElementValidator = {
|
|
|
11251
11348
|
};
|
|
11252
11349
|
|
|
11253
11350
|
module.exports = ReactElementValidator;
|
|
11254
|
-
},{"131":131,"132":132,"144":144,"
|
|
11351
|
+
},{"131":131,"132":132,"144":144,"187":187,"38":38,"41":41,"65":65,"90":90}],67:[function(_dereq_,module,exports){
|
|
11255
11352
|
/**
|
|
11256
11353
|
* Copyright 2014-present, Facebook, Inc.
|
|
11257
11354
|
* All rights reserved.
|
|
@@ -11407,7 +11504,7 @@ module.exports = ReactEventEmitterMixin;
|
|
|
11407
11504
|
|
|
11408
11505
|
'use strict';
|
|
11409
11506
|
|
|
11410
|
-
var _assign = _dereq_(
|
|
11507
|
+
var _assign = _dereq_(188);
|
|
11411
11508
|
|
|
11412
11509
|
var EventListener = _dereq_(163);
|
|
11413
11510
|
var ExecutionEnvironment = _dereq_(164);
|
|
@@ -11551,7 +11648,7 @@ var ReactEventListener = {
|
|
|
11551
11648
|
};
|
|
11552
11649
|
|
|
11553
11650
|
module.exports = ReactEventListener;
|
|
11554
|
-
},{"107":107,"142":142,"163":163,"164":164,"175":175,"
|
|
11651
|
+
},{"107":107,"142":142,"163":163,"164":164,"175":175,"188":188,"26":26,"46":46}],71:[function(_dereq_,module,exports){
|
|
11555
11652
|
/**
|
|
11556
11653
|
* Copyright 2013-present, Facebook, Inc.
|
|
11557
11654
|
* All rights reserved.
|
|
@@ -11595,7 +11692,7 @@ var ReactElement = _dereq_(65);
|
|
|
11595
11692
|
|
|
11596
11693
|
var emptyFunction = _dereq_(170);
|
|
11597
11694
|
var invariant = _dereq_(178);
|
|
11598
|
-
var warning = _dereq_(
|
|
11695
|
+
var warning = _dereq_(187);
|
|
11599
11696
|
|
|
11600
11697
|
/**
|
|
11601
11698
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -11644,7 +11741,7 @@ var ReactFragment = {
|
|
|
11644
11741
|
};
|
|
11645
11742
|
|
|
11646
11743
|
module.exports = ReactFragment;
|
|
11647
|
-
},{"153":153,"170":170,"178":178,"
|
|
11744
|
+
},{"153":153,"170":170,"178":178,"187":187,"32":32,"65":65}],73:[function(_dereq_,module,exports){
|
|
11648
11745
|
/**
|
|
11649
11746
|
* Copyright 2014-present, Facebook, Inc.
|
|
11650
11747
|
* All rights reserved.
|
|
@@ -11659,7 +11756,7 @@ module.exports = ReactFragment;
|
|
|
11659
11756
|
'use strict';
|
|
11660
11757
|
|
|
11661
11758
|
var _prodInvariant = _dereq_(153),
|
|
11662
|
-
_assign = _dereq_(
|
|
11759
|
+
_assign = _dereq_(188);
|
|
11663
11760
|
|
|
11664
11761
|
var invariant = _dereq_(178);
|
|
11665
11762
|
|
|
@@ -11721,7 +11818,7 @@ var ReactHostComponent = {
|
|
|
11721
11818
|
};
|
|
11722
11819
|
|
|
11723
11820
|
module.exports = ReactHostComponent;
|
|
11724
|
-
},{"153":153,"178":178,"
|
|
11821
|
+
},{"153":153,"178":178,"188":188}],74:[function(_dereq_,module,exports){
|
|
11725
11822
|
/**
|
|
11726
11823
|
* Copyright 2016-present, Facebook, Inc.
|
|
11727
11824
|
* All rights reserved.
|
|
@@ -12006,7 +12103,7 @@ module.exports = { debugTool: debugTool };
|
|
|
12006
12103
|
|
|
12007
12104
|
'use strict';
|
|
12008
12105
|
|
|
12009
|
-
var warning = _dereq_(
|
|
12106
|
+
var warning = _dereq_(187);
|
|
12010
12107
|
|
|
12011
12108
|
if ("development" !== 'production') {
|
|
12012
12109
|
var processingChildContext = false;
|
|
@@ -12029,7 +12126,7 @@ var ReactInvalidSetStateWarningHook = {
|
|
|
12029
12126
|
};
|
|
12030
12127
|
|
|
12031
12128
|
module.exports = ReactInvalidSetStateWarningHook;
|
|
12032
|
-
},{"
|
|
12129
|
+
},{"187":187}],80:[function(_dereq_,module,exports){
|
|
12033
12130
|
/**
|
|
12034
12131
|
* Copyright 2013-present, Facebook, Inc.
|
|
12035
12132
|
* All rights reserved.
|
|
@@ -12189,7 +12286,7 @@ var instantiateReactComponent = _dereq_(148);
|
|
|
12189
12286
|
var invariant = _dereq_(178);
|
|
12190
12287
|
var setInnerHTML = _dereq_(155);
|
|
12191
12288
|
var shouldUpdateReactComponent = _dereq_(158);
|
|
12192
|
-
var warning = _dereq_(
|
|
12289
|
+
var warning = _dereq_(187);
|
|
12193
12290
|
|
|
12194
12291
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
12195
12292
|
var ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
|
|
@@ -12648,7 +12745,7 @@ var ReactMount = {
|
|
|
12648
12745
|
};
|
|
12649
12746
|
|
|
12650
12747
|
module.exports = ReactMount;
|
|
12651
|
-
},{"10":10,"106":106,"107":107,"148":148,"153":153,"155":155,"158":158,"171":171,"178":178,"
|
|
12748
|
+
},{"10":10,"106":106,"107":107,"148":148,"153":153,"155":155,"158":158,"171":171,"178":178,"187":187,"28":28,"41":41,"46":46,"47":47,"50":50,"65":65,"71":71,"77":77,"78":78,"8":8,"81":81,"95":95}],83:[function(_dereq_,module,exports){
|
|
12652
12749
|
/**
|
|
12653
12750
|
* Copyright 2013-present, Facebook, Inc.
|
|
12654
12751
|
* All rights reserved.
|
|
@@ -13188,7 +13285,7 @@ module.exports = ReactNodeTypes;
|
|
|
13188
13285
|
|
|
13189
13286
|
'use strict';
|
|
13190
13287
|
|
|
13191
|
-
var warning = _dereq_(
|
|
13288
|
+
var warning = _dereq_(187);
|
|
13192
13289
|
|
|
13193
13290
|
function warnNoop(publicInstance, callerName) {
|
|
13194
13291
|
if ("development" !== 'production') {
|
|
@@ -13271,7 +13368,7 @@ var ReactNoopUpdateQueue = {
|
|
|
13271
13368
|
};
|
|
13272
13369
|
|
|
13273
13370
|
module.exports = ReactNoopUpdateQueue;
|
|
13274
|
-
},{"
|
|
13371
|
+
},{"187":187}],87:[function(_dereq_,module,exports){
|
|
13275
13372
|
/**
|
|
13276
13373
|
* Copyright 2013-present, Facebook, Inc.
|
|
13277
13374
|
* All rights reserved.
|
|
@@ -13380,12 +13477,12 @@ module.exports = ReactOwner;
|
|
|
13380
13477
|
|
|
13381
13478
|
'use strict';
|
|
13382
13479
|
|
|
13383
|
-
var _assign = _dereq_(
|
|
13480
|
+
var _assign = _dereq_(188);
|
|
13384
13481
|
|
|
13385
13482
|
var _extends = _assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
13386
13483
|
|
|
13387
13484
|
var ReactDebugTool = _dereq_(62);
|
|
13388
|
-
var warning = _dereq_(
|
|
13485
|
+
var warning = _dereq_(187);
|
|
13389
13486
|
var alreadyWarned = false;
|
|
13390
13487
|
|
|
13391
13488
|
function roundFloat(val) {
|
|
@@ -13861,7 +13958,7 @@ var ReactPerfAnalysis = {
|
|
|
13861
13958
|
};
|
|
13862
13959
|
|
|
13863
13960
|
module.exports = ReactPerfAnalysis;
|
|
13864
|
-
},{"
|
|
13961
|
+
},{"187":187,"188":188,"62":62}],89:[function(_dereq_,module,exports){
|
|
13865
13962
|
/**
|
|
13866
13963
|
* Copyright 2013-present, Facebook, Inc.
|
|
13867
13964
|
* All rights reserved.
|
|
@@ -13929,7 +14026,7 @@ var ReactPropTypesSecret = _dereq_(92);
|
|
|
13929
14026
|
|
|
13930
14027
|
var emptyFunction = _dereq_(170);
|
|
13931
14028
|
var getIteratorFn = _dereq_(144);
|
|
13932
|
-
var warning = _dereq_(
|
|
14029
|
+
var warning = _dereq_(187);
|
|
13933
14030
|
|
|
13934
14031
|
/**
|
|
13935
14032
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -14327,7 +14424,7 @@ function getClassName(propValue) {
|
|
|
14327
14424
|
}
|
|
14328
14425
|
|
|
14329
14426
|
module.exports = ReactPropTypes;
|
|
14330
|
-
},{"144":144,"170":170,"
|
|
14427
|
+
},{"144":144,"170":170,"187":187,"65":65,"89":89,"92":92}],92:[function(_dereq_,module,exports){
|
|
14331
14428
|
/**
|
|
14332
14429
|
* Copyright 2013-present, Facebook, Inc.
|
|
14333
14430
|
* All rights reserved.
|
|
@@ -14358,7 +14455,7 @@ module.exports = ReactPropTypesSecret;
|
|
|
14358
14455
|
|
|
14359
14456
|
'use strict';
|
|
14360
14457
|
|
|
14361
|
-
var _assign = _dereq_(
|
|
14458
|
+
var _assign = _dereq_(188);
|
|
14362
14459
|
|
|
14363
14460
|
var ReactComponent = _dereq_(35);
|
|
14364
14461
|
var ReactNoopUpdateQueue = _dereq_(86);
|
|
@@ -14387,7 +14484,7 @@ _assign(ReactPureComponent.prototype, ReactComponent.prototype);
|
|
|
14387
14484
|
ReactPureComponent.prototype.isPureReactComponent = true;
|
|
14388
14485
|
|
|
14389
14486
|
module.exports = ReactPureComponent;
|
|
14390
|
-
},{"171":171,"
|
|
14487
|
+
},{"171":171,"188":188,"35":35,"86":86}],94:[function(_dereq_,module,exports){
|
|
14391
14488
|
/**
|
|
14392
14489
|
* Copyright 2013-present, Facebook, Inc.
|
|
14393
14490
|
* All rights reserved.
|
|
@@ -14401,7 +14498,7 @@ module.exports = ReactPureComponent;
|
|
|
14401
14498
|
|
|
14402
14499
|
'use strict';
|
|
14403
14500
|
|
|
14404
|
-
var _assign = _dereq_(
|
|
14501
|
+
var _assign = _dereq_(188);
|
|
14405
14502
|
|
|
14406
14503
|
var CallbackQueue = _dereq_(5);
|
|
14407
14504
|
var PooledClass = _dereq_(26);
|
|
@@ -14566,7 +14663,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
14566
14663
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
14567
14664
|
|
|
14568
14665
|
module.exports = ReactReconcileTransaction;
|
|
14569
|
-
},{"106":106,"127":127,"
|
|
14666
|
+
},{"106":106,"127":127,"188":188,"26":26,"28":28,"5":5,"76":76,"78":78}],95:[function(_dereq_,module,exports){
|
|
14570
14667
|
/**
|
|
14571
14668
|
* Copyright 2013-present, Facebook, Inc.
|
|
14572
14669
|
* All rights reserved.
|
|
@@ -14583,7 +14680,7 @@ module.exports = ReactReconcileTransaction;
|
|
|
14583
14680
|
var ReactRef = _dereq_(96);
|
|
14584
14681
|
var ReactInstrumentation = _dereq_(78);
|
|
14585
14682
|
|
|
14586
|
-
var warning = _dereq_(
|
|
14683
|
+
var warning = _dereq_(187);
|
|
14587
14684
|
|
|
14588
14685
|
/**
|
|
14589
14686
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
@@ -14735,7 +14832,7 @@ var ReactReconciler = {
|
|
|
14735
14832
|
};
|
|
14736
14833
|
|
|
14737
14834
|
module.exports = ReactReconciler;
|
|
14738
|
-
},{"
|
|
14835
|
+
},{"187":187,"78":78,"96":96}],96:[function(_dereq_,module,exports){
|
|
14739
14836
|
/**
|
|
14740
14837
|
* Copyright 2013-present, Facebook, Inc.
|
|
14741
14838
|
* All rights reserved.
|
|
@@ -14944,7 +15041,7 @@ module.exports = {
|
|
|
14944
15041
|
|
|
14945
15042
|
'use strict';
|
|
14946
15043
|
|
|
14947
|
-
var _assign = _dereq_(
|
|
15044
|
+
var _assign = _dereq_(188);
|
|
14948
15045
|
|
|
14949
15046
|
var PooledClass = _dereq_(26);
|
|
14950
15047
|
var Transaction = _dereq_(127);
|
|
@@ -15021,7 +15118,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
15021
15118
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
15022
15119
|
|
|
15023
15120
|
module.exports = ReactServerRenderingTransaction;
|
|
15024
|
-
},{"100":100,"127":127,"
|
|
15121
|
+
},{"100":100,"127":127,"188":188,"26":26,"78":78}],100:[function(_dereq_,module,exports){
|
|
15025
15122
|
/**
|
|
15026
15123
|
* Copyright 2015-present, Facebook, Inc.
|
|
15027
15124
|
* All rights reserved.
|
|
@@ -15040,7 +15137,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15040
15137
|
|
|
15041
15138
|
var ReactUpdateQueue = _dereq_(106);
|
|
15042
15139
|
var Transaction = _dereq_(127);
|
|
15043
|
-
var warning = _dereq_(
|
|
15140
|
+
var warning = _dereq_(187);
|
|
15044
15141
|
|
|
15045
15142
|
function warnNoop(publicInstance, callerName) {
|
|
15046
15143
|
if ("development" !== 'production') {
|
|
@@ -15163,7 +15260,7 @@ var ReactServerUpdateQueue = function () {
|
|
|
15163
15260
|
}();
|
|
15164
15261
|
|
|
15165
15262
|
module.exports = ReactServerUpdateQueue;
|
|
15166
|
-
},{"106":106,"127":127,"
|
|
15263
|
+
},{"106":106,"127":127,"187":187}],101:[function(_dereq_,module,exports){
|
|
15167
15264
|
/**
|
|
15168
15265
|
* Copyright 2013-present, Facebook, Inc.
|
|
15169
15266
|
* All rights reserved.
|
|
@@ -15283,7 +15380,7 @@ module.exports = ReactStateSetters;
|
|
|
15283
15380
|
'use strict';
|
|
15284
15381
|
|
|
15285
15382
|
var _prodInvariant = _dereq_(153),
|
|
15286
|
-
_assign = _dereq_(
|
|
15383
|
+
_assign = _dereq_(188);
|
|
15287
15384
|
|
|
15288
15385
|
var EventConstants = _dereq_(16);
|
|
15289
15386
|
var EventPluginHub = _dereq_(17);
|
|
@@ -15787,7 +15884,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
15787
15884
|
});
|
|
15788
15885
|
|
|
15789
15886
|
module.exports = ReactTestUtils;
|
|
15790
|
-
},{"107":107,"118":118,"136":136,"153":153,"16":16,"17":17,"171":171,"178":178,"18":18,"
|
|
15887
|
+
},{"107":107,"118":118,"136":136,"153":153,"16":16,"17":17,"171":171,"178":178,"18":18,"188":188,"20":20,"27":27,"28":28,"40":40,"42":42,"46":46,"64":64,"65":65,"77":77,"95":95}],103:[function(_dereq_,module,exports){
|
|
15791
15888
|
/**
|
|
15792
15889
|
* Copyright 2013-present, Facebook, Inc.
|
|
15793
15890
|
* All rights reserved.
|
|
@@ -15979,7 +16076,7 @@ module.exports = ReactTransitionEvents;
|
|
|
15979
16076
|
|
|
15980
16077
|
'use strict';
|
|
15981
16078
|
|
|
15982
|
-
var _assign = _dereq_(
|
|
16079
|
+
var _assign = _dereq_(188);
|
|
15983
16080
|
|
|
15984
16081
|
var React = _dereq_(27);
|
|
15985
16082
|
var ReactInstanceMap = _dereq_(77);
|
|
@@ -16212,7 +16309,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
16212
16309
|
});
|
|
16213
16310
|
|
|
16214
16311
|
module.exports = ReactTransitionGroup;
|
|
16215
|
-
},{"103":103,"170":170,"
|
|
16312
|
+
},{"103":103,"170":170,"188":188,"27":27,"77":77}],106:[function(_dereq_,module,exports){
|
|
16216
16313
|
/**
|
|
16217
16314
|
* Copyright 2015-present, Facebook, Inc.
|
|
16218
16315
|
* All rights reserved.
|
|
@@ -16234,7 +16331,7 @@ var ReactInstrumentation = _dereq_(78);
|
|
|
16234
16331
|
var ReactUpdates = _dereq_(107);
|
|
16235
16332
|
|
|
16236
16333
|
var invariant = _dereq_(178);
|
|
16237
|
-
var warning = _dereq_(
|
|
16334
|
+
var warning = _dereq_(187);
|
|
16238
16335
|
|
|
16239
16336
|
function enqueueUpdate(internalInstance) {
|
|
16240
16337
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -16439,7 +16536,7 @@ var ReactUpdateQueue = {
|
|
|
16439
16536
|
};
|
|
16440
16537
|
|
|
16441
16538
|
module.exports = ReactUpdateQueue;
|
|
16442
|
-
},{"107":107,"153":153,"178":178,"
|
|
16539
|
+
},{"107":107,"153":153,"178":178,"187":187,"41":41,"77":77,"78":78}],107:[function(_dereq_,module,exports){
|
|
16443
16540
|
/**
|
|
16444
16541
|
* Copyright 2013-present, Facebook, Inc.
|
|
16445
16542
|
* All rights reserved.
|
|
@@ -16454,7 +16551,7 @@ module.exports = ReactUpdateQueue;
|
|
|
16454
16551
|
'use strict';
|
|
16455
16552
|
|
|
16456
16553
|
var _prodInvariant = _dereq_(153),
|
|
16457
|
-
_assign = _dereq_(
|
|
16554
|
+
_assign = _dereq_(188);
|
|
16458
16555
|
|
|
16459
16556
|
var CallbackQueue = _dereq_(5);
|
|
16460
16557
|
var PooledClass = _dereq_(26);
|
|
@@ -16691,7 +16788,7 @@ var ReactUpdates = {
|
|
|
16691
16788
|
};
|
|
16692
16789
|
|
|
16693
16790
|
module.exports = ReactUpdates;
|
|
16694
|
-
},{"127":127,"153":153,"178":178,"
|
|
16791
|
+
},{"127":127,"153":153,"178":178,"188":188,"26":26,"5":5,"71":71,"95":95}],108:[function(_dereq_,module,exports){
|
|
16695
16792
|
/**
|
|
16696
16793
|
* Copyright 2013-present, Facebook, Inc.
|
|
16697
16794
|
* All rights reserved.
|
|
@@ -16705,7 +16802,7 @@ module.exports = ReactUpdates;
|
|
|
16705
16802
|
|
|
16706
16803
|
'use strict';
|
|
16707
16804
|
|
|
16708
|
-
module.exports = '15.3.1-rc.
|
|
16805
|
+
module.exports = '15.3.1-rc.2';
|
|
16709
16806
|
},{}],109:[function(_dereq_,module,exports){
|
|
16710
16807
|
/**
|
|
16711
16808
|
* Copyright 2013-present, Facebook, Inc.
|
|
@@ -16761,7 +16858,7 @@ module.exports = React;
|
|
|
16761
16858
|
|
|
16762
16859
|
'use strict';
|
|
16763
16860
|
|
|
16764
|
-
var _assign = _dereq_(
|
|
16861
|
+
var _assign = _dereq_(188);
|
|
16765
16862
|
|
|
16766
16863
|
var ReactDOM = _dereq_(42);
|
|
16767
16864
|
var ReactDOMServer = _dereq_(57);
|
|
@@ -16774,7 +16871,7 @@ var ReactWithAddonsUMDEntry = _assign({
|
|
|
16774
16871
|
}, ReactWithAddons);
|
|
16775
16872
|
|
|
16776
16873
|
module.exports = ReactWithAddonsUMDEntry;
|
|
16777
|
-
},{"109":109,"
|
|
16874
|
+
},{"109":109,"188":188,"42":42,"57":57}],111:[function(_dereq_,module,exports){
|
|
16778
16875
|
/**
|
|
16779
16876
|
* Copyright 2013-present, Facebook, Inc.
|
|
16780
16877
|
* All rights reserved.
|
|
@@ -17101,7 +17198,7 @@ var SyntheticEvent = _dereq_(118);
|
|
|
17101
17198
|
var getActiveElement = _dereq_(173);
|
|
17102
17199
|
var isTextInputElement = _dereq_(150);
|
|
17103
17200
|
var keyOf = _dereq_(182);
|
|
17104
|
-
var shallowEqual = _dereq_(
|
|
17201
|
+
var shallowEqual = _dereq_(186);
|
|
17105
17202
|
|
|
17106
17203
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
17107
17204
|
|
|
@@ -17274,7 +17371,7 @@ var SelectEventPlugin = {
|
|
|
17274
17371
|
};
|
|
17275
17372
|
|
|
17276
17373
|
module.exports = SelectEventPlugin;
|
|
17277
|
-
},{"118":118,"150":150,"16":16,"164":164,"173":173,"182":182,"
|
|
17374
|
+
},{"118":118,"150":150,"16":16,"164":164,"173":173,"182":182,"186":186,"20":20,"46":46,"76":76}],113:[function(_dereq_,module,exports){
|
|
17278
17375
|
/**
|
|
17279
17376
|
* Copyright 2013-present, Facebook, Inc.
|
|
17280
17377
|
* All rights reserved.
|
|
@@ -18077,12 +18174,12 @@ module.exports = SyntheticDragEvent;
|
|
|
18077
18174
|
|
|
18078
18175
|
'use strict';
|
|
18079
18176
|
|
|
18080
|
-
var _assign = _dereq_(
|
|
18177
|
+
var _assign = _dereq_(188);
|
|
18081
18178
|
|
|
18082
18179
|
var PooledClass = _dereq_(26);
|
|
18083
18180
|
|
|
18084
18181
|
var emptyFunction = _dereq_(170);
|
|
18085
|
-
var warning = _dereq_(
|
|
18182
|
+
var warning = _dereq_(187);
|
|
18086
18183
|
|
|
18087
18184
|
var didWarnForAddedNewProperty = false;
|
|
18088
18185
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -18331,7 +18428,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
18331
18428
|
"development" !== 'production' ? warning(warningCondition, 'This synthetic event is reused for performance reasons. If you\'re seeing this, ' + 'you\'re %s `%s` on a released/nullified synthetic event. %s. ' + 'If you must keep the original synthetic event around, use event.persist(). ' + 'See https://fb.me/react-event-pooling for more information.', action, propName, result) : void 0;
|
|
18332
18429
|
}
|
|
18333
18430
|
}
|
|
18334
|
-
},{"170":170,"
|
|
18431
|
+
},{"170":170,"187":187,"188":188,"26":26}],119:[function(_dereq_,module,exports){
|
|
18335
18432
|
/**
|
|
18336
18433
|
* Copyright 2013-present, Facebook, Inc.
|
|
18337
18434
|
* All rights reserved.
|
|
@@ -19177,7 +19274,7 @@ var ReactPropTypeLocationNames = _dereq_(89);
|
|
|
19177
19274
|
var ReactPropTypesSecret = _dereq_(92);
|
|
19178
19275
|
|
|
19179
19276
|
var invariant = _dereq_(178);
|
|
19180
|
-
var warning = _dereq_(
|
|
19277
|
+
var warning = _dereq_(187);
|
|
19181
19278
|
|
|
19182
19279
|
var ReactComponentTreeHook;
|
|
19183
19280
|
|
|
@@ -19246,7 +19343,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19246
19343
|
|
|
19247
19344
|
module.exports = checkReactTypeSpec;
|
|
19248
19345
|
}).call(this,undefined)
|
|
19249
|
-
},{"153":153,"178":178,"
|
|
19346
|
+
},{"153":153,"178":178,"187":187,"38":38,"89":89,"92":92}],133:[function(_dereq_,module,exports){
|
|
19250
19347
|
/**
|
|
19251
19348
|
* Copyright 2013-present, Facebook, Inc.
|
|
19252
19349
|
* All rights reserved.
|
|
@@ -19294,7 +19391,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
19294
19391
|
'use strict';
|
|
19295
19392
|
|
|
19296
19393
|
var CSSProperty = _dereq_(3);
|
|
19297
|
-
var warning = _dereq_(
|
|
19394
|
+
var warning = _dereq_(187);
|
|
19298
19395
|
|
|
19299
19396
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
19300
19397
|
var styleWarnings = {};
|
|
@@ -19359,7 +19456,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
19359
19456
|
}
|
|
19360
19457
|
|
|
19361
19458
|
module.exports = dangerousStyleValue;
|
|
19362
|
-
},{"
|
|
19459
|
+
},{"187":187,"3":3}],135:[function(_dereq_,module,exports){
|
|
19363
19460
|
/**
|
|
19364
19461
|
* Copyright 2016-present, Facebook, Inc.
|
|
19365
19462
|
* All rights reserved.
|
|
@@ -19504,7 +19601,7 @@ var ReactInstanceMap = _dereq_(77);
|
|
|
19504
19601
|
|
|
19505
19602
|
var getHostComponentFromComposite = _dereq_(143);
|
|
19506
19603
|
var invariant = _dereq_(178);
|
|
19507
|
-
var warning = _dereq_(
|
|
19604
|
+
var warning = _dereq_(187);
|
|
19508
19605
|
|
|
19509
19606
|
/**
|
|
19510
19607
|
* Returns the DOM node rendered by this element.
|
|
@@ -19543,7 +19640,7 @@ function findDOMNode(componentOrElement) {
|
|
|
19543
19640
|
}
|
|
19544
19641
|
|
|
19545
19642
|
module.exports = findDOMNode;
|
|
19546
|
-
},{"143":143,"153":153,"178":178,"
|
|
19643
|
+
},{"143":143,"153":153,"178":178,"187":187,"41":41,"46":46,"77":77}],137:[function(_dereq_,module,exports){
|
|
19547
19644
|
(function (process){
|
|
19548
19645
|
/**
|
|
19549
19646
|
* Copyright 2013-present, Facebook, Inc.
|
|
@@ -19561,7 +19658,7 @@ module.exports = findDOMNode;
|
|
|
19561
19658
|
|
|
19562
19659
|
var KeyEscapeUtils = _dereq_(23);
|
|
19563
19660
|
var traverseAllChildren = _dereq_(159);
|
|
19564
|
-
var warning = _dereq_(
|
|
19661
|
+
var warning = _dereq_(187);
|
|
19565
19662
|
|
|
19566
19663
|
var ReactComponentTreeHook;
|
|
19567
19664
|
|
|
@@ -19622,7 +19719,7 @@ function flattenChildren(children, selfDebugID) {
|
|
|
19622
19719
|
|
|
19623
19720
|
module.exports = flattenChildren;
|
|
19624
19721
|
}).call(this,undefined)
|
|
19625
|
-
},{"159":159,"
|
|
19722
|
+
},{"159":159,"187":187,"23":23,"38":38}],138:[function(_dereq_,module,exports){
|
|
19626
19723
|
/**
|
|
19627
19724
|
* Copyright 2013-present, Facebook, Inc.
|
|
19628
19725
|
* All rights reserved.
|
|
@@ -20187,14 +20284,14 @@ module.exports = getVendorPrefixedEventName;
|
|
|
20187
20284
|
'use strict';
|
|
20188
20285
|
|
|
20189
20286
|
var _prodInvariant = _dereq_(153),
|
|
20190
|
-
_assign = _dereq_(
|
|
20287
|
+
_assign = _dereq_(188);
|
|
20191
20288
|
|
|
20192
20289
|
var ReactCompositeComponent = _dereq_(40);
|
|
20193
20290
|
var ReactEmptyComponent = _dereq_(67);
|
|
20194
20291
|
var ReactHostComponent = _dereq_(73);
|
|
20195
20292
|
|
|
20196
20293
|
var invariant = _dereq_(178);
|
|
20197
|
-
var warning = _dereq_(
|
|
20294
|
+
var warning = _dereq_(187);
|
|
20198
20295
|
|
|
20199
20296
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
20200
20297
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -20292,7 +20389,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
20292
20389
|
}
|
|
20293
20390
|
|
|
20294
20391
|
module.exports = instantiateReactComponent;
|
|
20295
|
-
},{"153":153,"178":178,"
|
|
20392
|
+
},{"153":153,"178":178,"187":187,"188":188,"40":40,"67":67,"73":73}],149:[function(_dereq_,module,exports){
|
|
20296
20393
|
/**
|
|
20297
20394
|
* Copyright 2013-present, Facebook, Inc.
|
|
20298
20395
|
* All rights reserved.
|
|
@@ -20690,7 +20787,7 @@ module.exports = setTextContent;
|
|
|
20690
20787
|
|
|
20691
20788
|
'use strict';
|
|
20692
20789
|
|
|
20693
|
-
var shallowEqual = _dereq_(
|
|
20790
|
+
var shallowEqual = _dereq_(186);
|
|
20694
20791
|
|
|
20695
20792
|
/**
|
|
20696
20793
|
* Does a shallow comparison for props and state.
|
|
@@ -20702,7 +20799,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
20702
20799
|
}
|
|
20703
20800
|
|
|
20704
20801
|
module.exports = shallowCompare;
|
|
20705
|
-
},{"
|
|
20802
|
+
},{"186":186}],158:[function(_dereq_,module,exports){
|
|
20706
20803
|
/**
|
|
20707
20804
|
* Copyright 2013-present, Facebook, Inc.
|
|
20708
20805
|
* All rights reserved.
|
|
@@ -20767,7 +20864,7 @@ var ReactElement = _dereq_(65);
|
|
|
20767
20864
|
var getIteratorFn = _dereq_(144);
|
|
20768
20865
|
var invariant = _dereq_(178);
|
|
20769
20866
|
var KeyEscapeUtils = _dereq_(23);
|
|
20770
|
-
var warning = _dereq_(
|
|
20867
|
+
var warning = _dereq_(187);
|
|
20771
20868
|
|
|
20772
20869
|
var SEPARATOR = '.';
|
|
20773
20870
|
var SUBSEPARATOR = ':';
|
|
@@ -20913,7 +21010,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
20913
21010
|
}
|
|
20914
21011
|
|
|
20915
21012
|
module.exports = traverseAllChildren;
|
|
20916
|
-
},{"144":144,"153":153,"178":178,"
|
|
21013
|
+
},{"144":144,"153":153,"178":178,"187":187,"23":23,"41":41,"65":65}],160:[function(_dereq_,module,exports){
|
|
20917
21014
|
/**
|
|
20918
21015
|
* Copyright 2013-present, Facebook, Inc.
|
|
20919
21016
|
* All rights reserved.
|
|
@@ -20930,7 +21027,7 @@ module.exports = traverseAllChildren;
|
|
|
20930
21027
|
'use strict';
|
|
20931
21028
|
|
|
20932
21029
|
var _prodInvariant = _dereq_(153),
|
|
20933
|
-
_assign = _dereq_(
|
|
21030
|
+
_assign = _dereq_(188);
|
|
20934
21031
|
|
|
20935
21032
|
var keyOf = _dereq_(182);
|
|
20936
21033
|
var invariant = _dereq_(178);
|
|
@@ -21027,7 +21124,7 @@ function update(value, spec) {
|
|
|
21027
21124
|
}
|
|
21028
21125
|
|
|
21029
21126
|
module.exports = update;
|
|
21030
|
-
},{"153":153,"178":178,"182":182,"
|
|
21127
|
+
},{"153":153,"178":178,"182":182,"188":188}],161:[function(_dereq_,module,exports){
|
|
21031
21128
|
/**
|
|
21032
21129
|
* Copyright 2015-present, Facebook, Inc.
|
|
21033
21130
|
* All rights reserved.
|
|
@@ -21041,10 +21138,10 @@ module.exports = update;
|
|
|
21041
21138
|
|
|
21042
21139
|
'use strict';
|
|
21043
21140
|
|
|
21044
|
-
var _assign = _dereq_(
|
|
21141
|
+
var _assign = _dereq_(188);
|
|
21045
21142
|
|
|
21046
21143
|
var emptyFunction = _dereq_(170);
|
|
21047
|
-
var warning = _dereq_(
|
|
21144
|
+
var warning = _dereq_(187);
|
|
21048
21145
|
|
|
21049
21146
|
var validateDOMNesting = emptyFunction;
|
|
21050
21147
|
|
|
@@ -21397,7 +21494,7 @@ if ("development" !== 'production') {
|
|
|
21397
21494
|
}
|
|
21398
21495
|
|
|
21399
21496
|
module.exports = validateDOMNesting;
|
|
21400
|
-
},{"170":170,"
|
|
21497
|
+
},{"170":170,"187":187,"188":188}],162:[function(_dereq_,module,exports){
|
|
21401
21498
|
'use strict';
|
|
21402
21499
|
|
|
21403
21500
|
/**
|
|
@@ -22471,57 +22568,6 @@ var keyOf = function keyOf(oneKeyObj) {
|
|
|
22471
22568
|
|
|
22472
22569
|
module.exports = keyOf;
|
|
22473
22570
|
},{}],183:[function(_dereq_,module,exports){
|
|
22474
|
-
/**
|
|
22475
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22476
|
-
* All rights reserved.
|
|
22477
|
-
*
|
|
22478
|
-
* This source code is licensed under the BSD-style license found in the
|
|
22479
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
|
22480
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
22481
|
-
*
|
|
22482
|
-
*/
|
|
22483
|
-
|
|
22484
|
-
'use strict';
|
|
22485
|
-
|
|
22486
|
-
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
22487
|
-
|
|
22488
|
-
/**
|
|
22489
|
-
* Executes the provided `callback` once for each enumerable own property in the
|
|
22490
|
-
* object and constructs a new object from the results. The `callback` is
|
|
22491
|
-
* invoked with three arguments:
|
|
22492
|
-
*
|
|
22493
|
-
* - the property value
|
|
22494
|
-
* - the property name
|
|
22495
|
-
* - the object being traversed
|
|
22496
|
-
*
|
|
22497
|
-
* Properties that are added after the call to `mapObject` will not be visited
|
|
22498
|
-
* by `callback`. If the values of existing properties are changed, the value
|
|
22499
|
-
* passed to `callback` will be the value at the time `mapObject` visits them.
|
|
22500
|
-
* Properties that are deleted before being visited are not visited.
|
|
22501
|
-
*
|
|
22502
|
-
* @grep function objectMap()
|
|
22503
|
-
* @grep function objMap()
|
|
22504
|
-
*
|
|
22505
|
-
* @param {?object} object
|
|
22506
|
-
* @param {function} callback
|
|
22507
|
-
* @param {*} context
|
|
22508
|
-
* @return {?object}
|
|
22509
|
-
*/
|
|
22510
|
-
function mapObject(object, callback, context) {
|
|
22511
|
-
if (!object) {
|
|
22512
|
-
return null;
|
|
22513
|
-
}
|
|
22514
|
-
var result = {};
|
|
22515
|
-
for (var name in object) {
|
|
22516
|
-
if (hasOwnProperty.call(object, name)) {
|
|
22517
|
-
result[name] = callback.call(context, object[name], name, object);
|
|
22518
|
-
}
|
|
22519
|
-
}
|
|
22520
|
-
return result;
|
|
22521
|
-
}
|
|
22522
|
-
|
|
22523
|
-
module.exports = mapObject;
|
|
22524
|
-
},{}],184:[function(_dereq_,module,exports){
|
|
22525
22571
|
/**
|
|
22526
22572
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22527
22573
|
* All rights reserved.
|
|
@@ -22551,7 +22597,7 @@ function memoizeStringOnly(callback) {
|
|
|
22551
22597
|
}
|
|
22552
22598
|
|
|
22553
22599
|
module.exports = memoizeStringOnly;
|
|
22554
|
-
},{}],
|
|
22600
|
+
},{}],184:[function(_dereq_,module,exports){
|
|
22555
22601
|
/**
|
|
22556
22602
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22557
22603
|
* All rights reserved.
|
|
@@ -22574,7 +22620,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
22574
22620
|
}
|
|
22575
22621
|
|
|
22576
22622
|
module.exports = performance || {};
|
|
22577
|
-
},{"164":164}],
|
|
22623
|
+
},{"164":164}],185:[function(_dereq_,module,exports){
|
|
22578
22624
|
'use strict';
|
|
22579
22625
|
|
|
22580
22626
|
/**
|
|
@@ -22588,7 +22634,7 @@ module.exports = performance || {};
|
|
|
22588
22634
|
* @typechecks
|
|
22589
22635
|
*/
|
|
22590
22636
|
|
|
22591
|
-
var performance = _dereq_(
|
|
22637
|
+
var performance = _dereq_(184);
|
|
22592
22638
|
|
|
22593
22639
|
var performanceNow;
|
|
22594
22640
|
|
|
@@ -22608,7 +22654,7 @@ if (performance.now) {
|
|
|
22608
22654
|
}
|
|
22609
22655
|
|
|
22610
22656
|
module.exports = performanceNow;
|
|
22611
|
-
},{"
|
|
22657
|
+
},{"184":184}],186:[function(_dereq_,module,exports){
|
|
22612
22658
|
/**
|
|
22613
22659
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22614
22660
|
* All rights reserved.
|
|
@@ -22675,7 +22721,7 @@ function shallowEqual(objA, objB) {
|
|
|
22675
22721
|
}
|
|
22676
22722
|
|
|
22677
22723
|
module.exports = shallowEqual;
|
|
22678
|
-
},{}],
|
|
22724
|
+
},{}],187:[function(_dereq_,module,exports){
|
|
22679
22725
|
/**
|
|
22680
22726
|
* Copyright 2014-2015, Facebook, Inc.
|
|
22681
22727
|
* All rights reserved.
|
|
@@ -22732,7 +22778,7 @@ if ("development" !== 'production') {
|
|
|
22732
22778
|
}
|
|
22733
22779
|
|
|
22734
22780
|
module.exports = warning;
|
|
22735
|
-
},{"170":170}],
|
|
22781
|
+
},{"170":170}],188:[function(_dereq_,module,exports){
|
|
22736
22782
|
'use strict';
|
|
22737
22783
|
/* eslint-disable no-unused-vars */
|
|
22738
22784
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|