react-dom 16.4.1 → 16.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "16.4.1",
3
+ "version": "16.4.2",
4
4
  "description": "React package for working with the DOM.",
5
5
  "main": "index.js",
6
6
  "repository": "facebook/react",
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom-server.browser.development.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -74,7 +74,7 @@ var invariant_1 = invariant;
74
74
 
75
75
  // TODO: this is special because it gets imported during build.
76
76
 
77
- var ReactVersion = '16.4.1';
77
+ var ReactVersion = '16.4.2';
78
78
 
79
79
  var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
80
80
 
@@ -513,14 +513,15 @@ var ATTRIBUTE_NAME_CHAR = ATTRIBUTE_NAME_START_CHAR + '\\-.0-9\\u00B7\\u0300-\\u
513
513
  var ROOT_ATTRIBUTE_NAME = 'data-reactroot';
514
514
  var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + ATTRIBUTE_NAME_START_CHAR + '][' + ATTRIBUTE_NAME_CHAR + ']*$');
515
515
 
516
+ var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
516
517
  var illegalAttributeNameCache = {};
517
518
  var validatedAttributeNameCache = {};
518
519
 
519
520
  function isAttributeNameSafe(attributeName) {
520
- if (validatedAttributeNameCache.hasOwnProperty(attributeName)) {
521
+ if (hasOwnProperty$1.call(validatedAttributeNameCache, attributeName)) {
521
522
  return true;
522
523
  }
523
- if (illegalAttributeNameCache.hasOwnProperty(attributeName)) {
524
+ if (hasOwnProperty$1.call(illegalAttributeNameCache, attributeName)) {
524
525
  return false;
525
526
  }
526
527
  if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) {
@@ -883,9 +884,10 @@ function createMarkupForProperty(name, value) {
883
884
  } else {
884
885
  return attributeName + '=' + quoteAttributeValueForBrowser(value);
885
886
  }
886
- } else {
887
+ } else if (isAttributeNameSafe(name)) {
887
888
  return name + '=' + quoteAttributeValueForBrowser(value);
888
889
  }
890
+ return '';
889
891
  }
890
892
 
891
893
  /**
@@ -1358,7 +1360,7 @@ var warnedProperties = {};
1358
1360
  var rARIA = new RegExp('^(aria)-[' + ATTRIBUTE_NAME_CHAR + ']*$');
1359
1361
  var rARIACamel = new RegExp('^(aria)[A-Z][' + ATTRIBUTE_NAME_CHAR + ']*$');
1360
1362
 
1361
- var hasOwnProperty = Object.prototype.hasOwnProperty;
1363
+ var hasOwnProperty$2 = Object.prototype.hasOwnProperty;
1362
1364
 
1363
1365
  function getStackAddendum$1() {
1364
1366
  var stack = ReactDebugCurrentFrame.getStackAddendum();
@@ -1366,7 +1368,7 @@ function getStackAddendum$1() {
1366
1368
  }
1367
1369
 
1368
1370
  function validateProperty(tagName, name) {
1369
- if (hasOwnProperty.call(warnedProperties, name) && warnedProperties[name]) {
1371
+ if (hasOwnProperty$2.call(warnedProperties, name) && warnedProperties[name]) {
1370
1372
  return true;
1371
1373
  }
1372
1374
 
@@ -2389,6 +2391,7 @@ function processContext(type, context) {
2389
2391
  return maskedContext;
2390
2392
  }
2391
2393
 
2394
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
2392
2395
  var STYLE = 'style';
2393
2396
  var RESERVED_PROPS = {
2394
2397
  children: null,
@@ -2401,7 +2404,7 @@ function createOpenTagMarkup(tagVerbatim, tagLowercase, props, namespace, makeSt
2401
2404
  var ret = '<' + tagVerbatim;
2402
2405
 
2403
2406
  for (var propKey in props) {
2404
- if (!props.hasOwnProperty(propKey)) {
2407
+ if (!hasOwnProperty.call(props, propKey)) {
2405
2408
  continue;
2406
2409
  }
2407
2410
  var propValue = props[propKey];
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom-server.browser.production.min.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -6,31 +6,32 @@
6
6
  * This source code is licensed under the MIT license found in the
7
7
  * LICENSE file in the root directory of this source tree.
8
8
  */
9
- 'use strict';(function(w,t){"object"===typeof exports&&"undefined"!==typeof module?module.exports=t(require("react")):"function"===typeof define&&define.amd?define(["react"],t):w.ReactDOMServer=t(w.React)})(this,function(w){function t(a){for(var b=arguments.length-1,d="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=0;c<b;c++)d+="&args[]="+encodeURIComponent(arguments[c+1]);Q(!1,"Minified React error #"+a+"; visit %s for the full message or use the non-minified dev environment for full errors and additional helpful warnings. ",
10
- d)}function B(a){return function(){return a}}function R(a){if(E.hasOwnProperty(a))return!0;if(F.hasOwnProperty(a))return!1;if(S.test(a))return E[a]=!0;F[a]=!0;return!1}function T(a,b,d,c){if(null!==d&&0===d.type)return!1;switch(typeof b){case "function":case "symbol":return!0;case "boolean":if(c)return!1;if(null!==d)return!d.acceptsBooleans;a=a.toLowerCase().slice(0,5);return"data-"!==a&&"aria-"!==a;default:return!1}}function U(a,b,d,c){if(null===b||"undefined"===typeof b||T(a,b,d,c))return!0;if(c)return!1;
11
- if(null!==d)switch(d.type){case 3:return!b;case 4:return!1===b;case 5:return isNaN(b);case 6:return isNaN(b)||1>b}return!1}function r(a,b,d,c,m){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=c;this.attributeNamespace=m;this.mustUseProperty=d;this.propertyName=a;this.type=b}function z(a){if("boolean"===typeof a||"number"===typeof a)return""+a;a=""+a;var b=V.exec(a);if(b){var d="",c,m=0;for(c=b.index;c<a.length;c++){switch(a.charCodeAt(c)){case 34:b="&quot;";break;case 38:b="&amp;";break;
12
- case 39:b="&#x27;";break;case 60:b="&lt;";break;case 62:b="&gt;";break;default:continue}m!==c&&(d+=a.substring(m,c));m=c+1;d+=b}a=m!==c?d+a.substring(m,c):d}return a}function G(a){switch(a){case "svg":return"http://www.w3.org/2000/svg";case "math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function H(a){return"string"===typeof a?a:"function"===typeof a?a.displayName||a.name:null}function W(a){var b="";w.Children.forEach(a,function(a){null==a||"string"!==
13
- typeof a&&"number"!==typeof a||(b+=a)});return b}function X(a,b){if(a=a.contextTypes){var d={},c;for(c in a)d[c]=b[c];b=d}else b=I;return b}function J(a,b){void 0===a&&t("152",H(b)||"Component")}function Y(a,b){function d(c,d){var m=X(d,b),f=[],h=!1,g={isMounted:function(a){return!1},enqueueForceUpdate:function(a){if(null===f)return null},enqueueReplaceState:function(a,b){h=!0;f=[b]},enqueueSetState:function(a,b){if(null===f)return null;f.push(b)}},e=void 0;if(d.prototype&&d.prototype.isReactComponent){if(e=
14
- new d(c.props,m,g),"function"===typeof d.getDerivedStateFromProps){var k=d.getDerivedStateFromProps.call(null,c.props,e.state);null!=k&&(e.state=x({},e.state,k))}}else if(e=d(c.props,m,g),null==e||null==e.render){a=e;J(a,d);return}e.props=c.props;e.context=m;e.updater=g;g=e.state;void 0===g&&(e.state=g=null);if("function"===typeof e.UNSAFE_componentWillMount||"function"===typeof e.componentWillMount)if("function"===typeof e.componentWillMount&&"function"!==typeof d.getDerivedStateFromProps&&e.componentWillMount(),
15
- "function"===typeof e.UNSAFE_componentWillMount&&"function"!==typeof d.getDerivedStateFromProps&&e.UNSAFE_componentWillMount(),f.length){g=f;var p=h;f=null;h=!1;if(p&&1===g.length)e.state=g[0];else{k=p?g[0]:e.state;var n=!0;for(p=p?1:0;p<g.length;p++){var q=g[p];q="function"===typeof q?q.call(e,k,c.props,m):q;null!=q&&(n?(n=!1,k=x({},k,q)):x(k,q))}e.state=k}}else f=null;a=e.render();J(a,d);c=void 0;if("function"===typeof e.getChildContext&&(m=d.childContextTypes,"object"===typeof m)){c=e.getChildContext();
16
- for(var v in c)v in m?void 0:t("108",H(d)||"Unknown",v)}c&&(b=x({},b,c))}for(;w.isValidElement(a);){var c=a,m=c.type;if("function"!==typeof m)break;d(c,m)}return{child:a,context:b}}var Q=function(a,b,d,c,m,f,h,l){if(!a){if(void 0===b)a=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var k=[d,c,m,f,h,l],p=0;a=Error(b.replace(/%s/g,function(){return k[p++]}));a.name="Invariant Violation"}a.framesToPop=1;throw a;
17
- }},x=w.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.assign,k=function(){};k.thatReturns=B;k.thatReturnsFalse=B(!1);k.thatReturnsTrue=B(!0);k.thatReturnsNull=B(null);k.thatReturnsThis=function(){return this};k.thatReturnsArgument=function(a){return a};var I={},Z=/([A-Z])/g,aa=/^ms-/,u="function"===typeof Symbol&&Symbol.for,ba=u?Symbol.for("react.portal"):60106,K=u?Symbol.for("react.fragment"):60107,ca=u?Symbol.for("react.strict_mode"):60108,da=u?Symbol.for("react.profiler"):60114,L=u?Symbol.for("react.provider"):
18
- 60109,ea=u?Symbol.for("react.context"):60110,fa=u?Symbol.for("react.async_mode"):60111,ha=u?Symbol.for("react.forward_ref"):60112,S=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,F={},E={},p={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a){p[a]=
19
- new r(a,0,!1,a,null)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(a){var b=a[0];p[b]=new r(b,1,!1,a[1],null)});["contentEditable","draggable","spellCheck","value"].forEach(function(a){p[a]=new r(a,2,!1,a.toLowerCase(),null)});["autoReverse","externalResourcesRequired","preserveAlpha"].forEach(function(a){p[a]=new r(a,2,!1,a,null)});"allowFullScreen async autoFocus autoPlay controls default defer disabled formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a){p[a]=
20
- new r(a,3,!1,a.toLowerCase(),null)});["checked","multiple","muted","selected"].forEach(function(a){p[a]=new r(a,3,!0,a.toLowerCase(),null)});["capture","download"].forEach(function(a){p[a]=new r(a,4,!1,a.toLowerCase(),null)});["cols","rows","size","span"].forEach(function(a){p[a]=new r(a,6,!1,a.toLowerCase(),null)});["rowSpan","start"].forEach(function(a){p[a]=new r(a,5,!1,a.toLowerCase(),null)});var C=/[\-:]([a-z])/g,D=function(a){return a[1].toUpperCase()};"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a){var b=
21
- a.replace(C,D);p[b]=new r(b,1,!1,a,null)});"xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a){var b=a.replace(C,D);p[b]=new r(b,1,!1,a,"http://www.w3.org/1999/xlink")});["xml:base","xml:lang","xml:space"].forEach(function(a){var b=a.replace(C,D);p[b]=new r(b,1,!1,a,"http://www.w3.org/XML/1998/namespace")});p.tabIndex=new r("tabIndex",1,!1,"tabindex",null);var V=/["'&<>]/,M={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,
22
- keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},ia=x({menuitem:!0},M),A={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,
23
- order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ja=["Webkit","ms","Moz","O"];Object.keys(A).forEach(function(a){ja.forEach(function(b){b=b+a.charAt(0).toUpperCase()+a.substring(1);A[b]=A[a]})});var y=w.Children.toArray,N=k.thatReturns("");k.thatReturns("");var ka={listing:!0,pre:!0,textarea:!0},la=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,O={},ma=function(a){var b=
24
- {};return function(d){b.hasOwnProperty(d)||(b[d]=a.call(this,d));return b[d]}}(function(a){return a.replace(Z,"-$1").toLowerCase().replace(aa,"-ms-")}),na={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null,suppressHydrationWarning:null},P=function(){function a(b,d){if(!(this instanceof a))throw new TypeError("Cannot call a class as a function");w.isValidElement(b)?b.type!==K?b=[b]:(b=b.props.children,b=w.isValidElement(b)?[b]:y(b)):b=y(b);this.stack=[{type:null,domNamespace:"http://www.w3.org/1999/xhtml",
25
- children:b,childIndex:0,context:I,footer:""}];this.exhausted=!1;this.currentSelectValue=null;this.previousWasTextNode=!1;this.makeStaticMarkup=d;this.contextIndex=-1;this.contextStack=[];this.contextValueStack=[]}a.prototype.pushProvider=function(a){var b=++this.contextIndex,c=a.type._context,m=c._currentValue;this.contextStack[b]=c;this.contextValueStack[b]=m;c._currentValue=a.props.value};a.prototype.popProvider=function(a){a=this.contextIndex;var b=this.contextStack[a],c=this.contextValueStack[a];
26
- this.contextStack[a]=null;this.contextValueStack[a]=null;this.contextIndex--;b._currentValue=c};a.prototype.read=function(a){if(this.exhausted)return null;for(var b="";b.length<a;){if(0===this.stack.length){this.exhausted=!0;break}var c=this.stack[this.stack.length-1];if(c.childIndex>=c.children.length){var m=c.footer;b+=m;""!==m&&(this.previousWasTextNode=!1);this.stack.pop();"select"===c.type?this.currentSelectValue=null:null!=c.type&&null!=c.type.type&&c.type.type.$$typeof===L&&this.popProvider(c.type)}else m=
27
- c.children[c.childIndex++],b+=this.render(m,c.context,c.domNamespace)}return b};a.prototype.render=function(a,d,c){if("string"===typeof a||"number"===typeof a){c=""+a;if(""===c)return"";if(this.makeStaticMarkup)return z(c);if(this.previousWasTextNode)return"\x3c!-- --\x3e"+z(c);this.previousWasTextNode=!0;return z(c)}d=Y(a,d);a=d.child;d=d.context;if(null===a||!1===a)return"";if(!w.isValidElement(a)){if(null!=a&&null!=a.$$typeof){var b=a.$$typeof;b===ba?t("257"):void 0;t("258",b.toString())}a=y(a);
28
- this.stack.push({type:null,domNamespace:c,children:a,childIndex:0,context:d,footer:""});return""}b=a.type;if("string"===typeof b)return this.renderDOM(a,d,c);switch(b){case ca:case fa:case da:case K:return a=y(a.props.children),this.stack.push({type:null,domNamespace:c,children:a,childIndex:0,context:d,footer:""}),""}if("object"===typeof b&&null!==b)switch(b.$$typeof){case ha:return a=y(b.render(a.props,a.ref)),this.stack.push({type:null,domNamespace:c,children:a,childIndex:0,context:d,footer:""}),
29
- "";case L:return b=y(a.props.children),c={type:a,domNamespace:c,children:b,childIndex:0,context:d,footer:""},this.pushProvider(a),this.stack.push(c),"";case ea:return b=y(a.props.children(a.type._currentValue)),this.stack.push({type:a,domNamespace:c,children:b,childIndex:0,context:d,footer:""}),""}t("130",null==b?b:typeof b,"")};a.prototype.renderDOM=function(a,d,c){var b=a.type.toLowerCase();"http://www.w3.org/1999/xhtml"===c&&G(b);O.hasOwnProperty(b)||(la.test(b)?void 0:t("65",b),O[b]=!0);var f=
30
- a.props;if("input"===b)f=x({type:void 0},f,{defaultChecked:void 0,defaultValue:void 0,value:null!=f.value?f.value:f.defaultValue,checked:null!=f.checked?f.checked:f.defaultChecked});else if("textarea"===b){var h=f.value;if(null==h){h=f.defaultValue;var l=f.children;null!=l&&(null!=h?t("92"):void 0,Array.isArray(l)&&(1>=l.length?void 0:t("93"),l=l[0]),h=""+l);null==h&&(h="")}f=x({},f,{value:void 0,children:""+h})}else if("select"===b)this.currentSelectValue=null!=f.value?f.value:f.defaultValue,f=x({},
31
- f,{value:void 0});else if("option"===b){l=this.currentSelectValue;var k=W(f.children);if(null!=l){var r=null!=f.value?f.value+"":k;h=!1;if(Array.isArray(l))for(var g=0;g<l.length;g++){if(""+l[g]===r){h=!0;break}}else h=""+l===r;f=x({selected:void 0,children:void 0},f,{selected:h,children:k})}}if(h=f)ia[b]&&(null!=h.children||null!=h.dangerouslySetInnerHTML?t("137",b,N()):void 0),null!=h.dangerouslySetInnerHTML&&(null!=h.children?t("60"):void 0,"object"===typeof h.dangerouslySetInnerHTML&&"__html"in
32
- h.dangerouslySetInnerHTML?void 0:t("61")),null!=h.style&&"object"!==typeof h.style?t("62",N()):void 0;h=f;l=this.makeStaticMarkup;k=1===this.stack.length;r="<"+a.type;for(v in h)if(h.hasOwnProperty(v)){var e=h[v];if(null!=e){if("style"===v){g=void 0;var w="",u="";for(g in e)if(e.hasOwnProperty(g)){var n=0===g.indexOf("--"),q=e[g];null!=q&&(w+=u+ma(g)+":",u=g,n=null==q||"boolean"===typeof q||""===q?"":n||"number"!==typeof q||0===q||A.hasOwnProperty(u)&&A[u]?(""+q).trim():q+"px",w+=n,u=";")}e=w||null}g=
33
- null;b:if(n=b,q=h,-1===n.indexOf("-"))n="string"===typeof q.is;else switch(n){case "annotation-xml":case "color-profile":case "font-face":case "font-face-src":case "font-face-uri":case "font-face-format":case "font-face-name":case "missing-glyph":n=!1;break b;default:n=!0}if(n)na.hasOwnProperty(v)||(g=v,g=R(g)&&null!=e?g+"="+('"'+z(e)+'"'):"");else{n=v;g=e;e=p.hasOwnProperty(n)?p[n]:null;if(q="style"!==n)q=null!==e?0===e.type:!(2<n.length)||"o"!==n[0]&&"O"!==n[0]||"n"!==n[1]&&"N"!==n[1]?!1:!0;q||
34
- U(n,g,e,!1)?g="":null!==e?(n=e.attributeName,e=e.type,g=3===e||4===e&&!0===g?n+'=""':n+"="+('"'+z(g)+'"')):g=n+"="+('"'+z(g)+'"')}g&&(r+=" "+g)}}l||k&&(r+=' data-reactroot=""');var v=r;h="";M.hasOwnProperty(b)?v+="/>":(v+=">",h="</"+a.type+">");a:{l=f.dangerouslySetInnerHTML;if(null!=l){if(null!=l.__html){l=l.__html;break a}}else if(l=f.children,"string"===typeof l||"number"===typeof l){l=z(l);break a}l=null}null!=l?(f=[],ka[b]&&"\n"===l.charAt(0)&&(v+="\n"),v+=l):f=y(f.children);a=a.type;c=null==
35
- c||"http://www.w3.org/1999/xhtml"===c?G(a):"http://www.w3.org/2000/svg"===c&&"foreignObject"===a?"http://www.w3.org/1999/xhtml":c;this.stack.push({domNamespace:c,type:b,children:f,childIndex:0,context:d,footer:h});this.previousWasTextNode=!1;return v};return a}();k={renderToString:function(a){return(new P(a,!1)).read(Infinity)},renderToStaticMarkup:function(a){return(new P(a,!0)).read(Infinity)},renderToNodeStream:function(){t("207")},renderToStaticNodeStream:function(){t("208")},version:"16.4.1"};
36
- k=(u={default:k},k)||u;return k.default?k.default:k});
9
+ 'use strict';(function(w,t){"object"===typeof exports&&"undefined"!==typeof module?module.exports=t(require("react")):"function"===typeof define&&define.amd?define(["react"],t):w.ReactDOMServer=t(w.React)})(this,function(w){function t(a){for(var b=arguments.length-1,d="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=0;c<b;c++)d+="&args[]="+encodeURIComponent(arguments[c+1]);S(!1,"Minified React error #"+a+"; visit %s for the full message or use the non-minified dev environment for full errors and additional helpful warnings. ",
10
+ d)}function B(a){return function(){return a}}function E(a){if(F.call(G,a))return!0;if(F.call(H,a))return!1;if(T.test(a))return G[a]=!0;H[a]=!0;return!1}function U(a,b,d,c){if(null!==d&&0===d.type)return!1;switch(typeof b){case "function":case "symbol":return!0;case "boolean":if(c)return!1;if(null!==d)return!d.acceptsBooleans;a=a.toLowerCase().slice(0,5);return"data-"!==a&&"aria-"!==a;default:return!1}}function V(a,b,d,c){if(null===b||"undefined"===typeof b||U(a,b,d,c))return!0;if(c)return!1;if(null!==
11
+ d)switch(d.type){case 3:return!b;case 4:return!1===b;case 5:return isNaN(b);case 6:return isNaN(b)||1>b}return!1}function r(a,b,d,c,n){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=c;this.attributeNamespace=n;this.mustUseProperty=d;this.propertyName=a;this.type=b}function z(a){if("boolean"===typeof a||"number"===typeof a)return""+a;a=""+a;var b=W.exec(a);if(b){var d="",c,n=0;for(c=b.index;c<a.length;c++){switch(a.charCodeAt(c)){case 34:b="&quot;";break;case 38:b="&amp;";break;case 39:b=
12
+ "&#x27;";break;case 60:b="&lt;";break;case 62:b="&gt;";break;default:continue}n!==c&&(d+=a.substring(n,c));n=c+1;d+=b}a=n!==c?d+a.substring(n,c):d}return a}function I(a){switch(a){case "svg":return"http://www.w3.org/2000/svg";case "math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function J(a){return"string"===typeof a?a:"function"===typeof a?a.displayName||a.name:null}function X(a){var b="";w.Children.forEach(a,function(a){null==a||"string"!==typeof a&&
13
+ "number"!==typeof a||(b+=a)});return b}function Y(a,b){if(a=a.contextTypes){var d={},c;for(c in a)d[c]=b[c];b=d}else b=K;return b}function L(a,b){void 0===a&&t("152",J(b)||"Component")}function Z(a,b){function d(c,d){var n=Y(d,b),f=[],h=!1,g={isMounted:function(a){return!1},enqueueForceUpdate:function(a){if(null===f)return null},enqueueReplaceState:function(a,b){h=!0;f=[b]},enqueueSetState:function(a,b){if(null===f)return null;f.push(b)}},e=void 0;if(d.prototype&&d.prototype.isReactComponent){if(e=
14
+ new d(c.props,n,g),"function"===typeof d.getDerivedStateFromProps){var k=d.getDerivedStateFromProps.call(null,c.props,e.state);null!=k&&(e.state=x({},e.state,k))}}else if(e=d(c.props,n,g),null==e||null==e.render){a=e;L(a,d);return}e.props=c.props;e.context=n;e.updater=g;g=e.state;void 0===g&&(e.state=g=null);if("function"===typeof e.UNSAFE_componentWillMount||"function"===typeof e.componentWillMount)if("function"===typeof e.componentWillMount&&"function"!==typeof d.getDerivedStateFromProps&&e.componentWillMount(),
15
+ "function"===typeof e.UNSAFE_componentWillMount&&"function"!==typeof d.getDerivedStateFromProps&&e.UNSAFE_componentWillMount(),f.length){g=f;var p=h;f=null;h=!1;if(p&&1===g.length)e.state=g[0];else{k=p?g[0]:e.state;var m=!0;for(p=p?1:0;p<g.length;p++){var q=g[p];q="function"===typeof q?q.call(e,k,c.props,n):q;null!=q&&(m?(m=!1,k=x({},k,q)):x(k,q))}e.state=k}}else f=null;a=e.render();L(a,d);c=void 0;if("function"===typeof e.getChildContext&&(n=d.childContextTypes,"object"===typeof n)){c=e.getChildContext();
16
+ for(var v in c)v in n?void 0:t("108",J(d)||"Unknown",v)}c&&(b=x({},b,c))}for(;w.isValidElement(a);){var c=a,n=c.type;if("function"!==typeof n)break;d(c,n)}return{child:a,context:b}}var S=function(a,b,d,c,n,f,h,l){if(!a){if(void 0===b)a=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var k=[d,c,n,f,h,l],p=0;a=Error(b.replace(/%s/g,function(){return k[p++]}));a.name="Invariant Violation"}a.framesToPop=1;throw a;
17
+ }},x=w.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.assign,k=function(){};k.thatReturns=B;k.thatReturnsFalse=B(!1);k.thatReturnsTrue=B(!0);k.thatReturnsNull=B(null);k.thatReturnsThis=function(){return this};k.thatReturnsArgument=function(a){return a};var K={},aa=/([A-Z])/g,ba=/^ms-/,u="function"===typeof Symbol&&Symbol.for,ca=u?Symbol.for("react.portal"):60106,M=u?Symbol.for("react.fragment"):60107,da=u?Symbol.for("react.strict_mode"):60108,ea=u?Symbol.for("react.profiler"):60114,N=u?Symbol.for("react.provider"):
18
+ 60109,fa=u?Symbol.for("react.context"):60110,ha=u?Symbol.for("react.async_mode"):60111,ia=u?Symbol.for("react.forward_ref"):60112,T=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,F=Object.prototype.hasOwnProperty,
19
+ H={},G={},p={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a){p[a]=new r(a,0,!1,a,null)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(a){var b=a[0];p[b]=new r(b,1,!1,a[1],null)});["contentEditable","draggable","spellCheck","value"].forEach(function(a){p[a]=new r(a,2,!1,a.toLowerCase(),null)});["autoReverse",
20
+ "externalResourcesRequired","preserveAlpha"].forEach(function(a){p[a]=new r(a,2,!1,a,null)});"allowFullScreen async autoFocus autoPlay controls default defer disabled formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a){p[a]=new r(a,3,!1,a.toLowerCase(),null)});["checked","multiple","muted","selected"].forEach(function(a){p[a]=new r(a,3,!0,a.toLowerCase(),null)});["capture","download"].forEach(function(a){p[a]=
21
+ new r(a,4,!1,a.toLowerCase(),null)});["cols","rows","size","span"].forEach(function(a){p[a]=new r(a,6,!1,a.toLowerCase(),null)});["rowSpan","start"].forEach(function(a){p[a]=new r(a,5,!1,a.toLowerCase(),null)});var C=/[\-:]([a-z])/g,D=function(a){return a[1].toUpperCase()};"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a){var b=
22
+ a.replace(C,D);p[b]=new r(b,1,!1,a,null)});"xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a){var b=a.replace(C,D);p[b]=new r(b,1,!1,a,"http://www.w3.org/1999/xlink")});["xml:base","xml:lang","xml:space"].forEach(function(a){var b=a.replace(C,D);p[b]=new r(b,1,!1,a,"http://www.w3.org/XML/1998/namespace")});p.tabIndex=new r("tabIndex",1,!1,"tabindex",null);var W=/["'&<>]/,O={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,
23
+ keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},ja=x({menuitem:!0},O),A={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,
24
+ order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ka=["Webkit","ms","Moz","O"];Object.keys(A).forEach(function(a){ka.forEach(function(b){b=b+a.charAt(0).toUpperCase()+a.substring(1);A[b]=A[a]})});var y=w.Children.toArray,P=k.thatReturns("");k.thatReturns("");var la={listing:!0,pre:!0,textarea:!0},ma=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,Q={},na=function(a){var b=
25
+ {};return function(d){b.hasOwnProperty(d)||(b[d]=a.call(this,d));return b[d]}}(function(a){return a.replace(aa,"-$1").toLowerCase().replace(ba,"-ms-")}),oa=Object.prototype.hasOwnProperty,pa={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null,suppressHydrationWarning:null},R=function(){function a(b,d){if(!(this instanceof a))throw new TypeError("Cannot call a class as a function");w.isValidElement(b)?b.type!==M?b=[b]:(b=b.props.children,b=w.isValidElement(b)?[b]:y(b)):
26
+ b=y(b);this.stack=[{type:null,domNamespace:"http://www.w3.org/1999/xhtml",children:b,childIndex:0,context:K,footer:""}];this.exhausted=!1;this.currentSelectValue=null;this.previousWasTextNode=!1;this.makeStaticMarkup=d;this.contextIndex=-1;this.contextStack=[];this.contextValueStack=[]}a.prototype.pushProvider=function(a){var b=++this.contextIndex,c=a.type._context,n=c._currentValue;this.contextStack[b]=c;this.contextValueStack[b]=n;c._currentValue=a.props.value};a.prototype.popProvider=function(a){a=
27
+ this.contextIndex;var b=this.contextStack[a],c=this.contextValueStack[a];this.contextStack[a]=null;this.contextValueStack[a]=null;this.contextIndex--;b._currentValue=c};a.prototype.read=function(a){if(this.exhausted)return null;for(var b="";b.length<a;){if(0===this.stack.length){this.exhausted=!0;break}var c=this.stack[this.stack.length-1];if(c.childIndex>=c.children.length){var n=c.footer;b+=n;""!==n&&(this.previousWasTextNode=!1);this.stack.pop();"select"===c.type?this.currentSelectValue=null:null!=
28
+ c.type&&null!=c.type.type&&c.type.type.$$typeof===N&&this.popProvider(c.type)}else n=c.children[c.childIndex++],b+=this.render(n,c.context,c.domNamespace)}return b};a.prototype.render=function(a,d,c){if("string"===typeof a||"number"===typeof a){c=""+a;if(""===c)return"";if(this.makeStaticMarkup)return z(c);if(this.previousWasTextNode)return"\x3c!-- --\x3e"+z(c);this.previousWasTextNode=!0;return z(c)}d=Z(a,d);a=d.child;d=d.context;if(null===a||!1===a)return"";if(!w.isValidElement(a)){if(null!=a&&
29
+ null!=a.$$typeof){var b=a.$$typeof;b===ca?t("257"):void 0;t("258",b.toString())}a=y(a);this.stack.push({type:null,domNamespace:c,children:a,childIndex:0,context:d,footer:""});return""}b=a.type;if("string"===typeof b)return this.renderDOM(a,d,c);switch(b){case da:case ha:case ea:case M:return a=y(a.props.children),this.stack.push({type:null,domNamespace:c,children:a,childIndex:0,context:d,footer:""}),""}if("object"===typeof b&&null!==b)switch(b.$$typeof){case ia:return a=y(b.render(a.props,a.ref)),
30
+ this.stack.push({type:null,domNamespace:c,children:a,childIndex:0,context:d,footer:""}),"";case N:return b=y(a.props.children),c={type:a,domNamespace:c,children:b,childIndex:0,context:d,footer:""},this.pushProvider(a),this.stack.push(c),"";case fa:return b=y(a.props.children(a.type._currentValue)),this.stack.push({type:a,domNamespace:c,children:b,childIndex:0,context:d,footer:""}),""}t("130",null==b?b:typeof b,"")};a.prototype.renderDOM=function(a,d,c){var b=a.type.toLowerCase();"http://www.w3.org/1999/xhtml"===
31
+ c&&I(b);Q.hasOwnProperty(b)||(ma.test(b)?void 0:t("65",b),Q[b]=!0);var f=a.props;if("input"===b)f=x({type:void 0},f,{defaultChecked:void 0,defaultValue:void 0,value:null!=f.value?f.value:f.defaultValue,checked:null!=f.checked?f.checked:f.defaultChecked});else if("textarea"===b){var h=f.value;if(null==h){h=f.defaultValue;var l=f.children;null!=l&&(null!=h?t("92"):void 0,Array.isArray(l)&&(1>=l.length?void 0:t("93"),l=l[0]),h=""+l);null==h&&(h="")}f=x({},f,{value:void 0,children:""+h})}else if("select"===
32
+ b)this.currentSelectValue=null!=f.value?f.value:f.defaultValue,f=x({},f,{value:void 0});else if("option"===b){l=this.currentSelectValue;var k=X(f.children);if(null!=l){var r=null!=f.value?f.value+"":k;h=!1;if(Array.isArray(l))for(var g=0;g<l.length;g++){if(""+l[g]===r){h=!0;break}}else h=""+l===r;f=x({selected:void 0,children:void 0},f,{selected:h,children:k})}}if(h=f)ja[b]&&(null!=h.children||null!=h.dangerouslySetInnerHTML?t("137",b,P()):void 0),null!=h.dangerouslySetInnerHTML&&(null!=h.children?
33
+ t("60"):void 0,"object"===typeof h.dangerouslySetInnerHTML&&"__html"in h.dangerouslySetInnerHTML?void 0:t("61")),null!=h.style&&"object"!==typeof h.style?t("62",P()):void 0;h=f;l=this.makeStaticMarkup;k=1===this.stack.length;r="<"+a.type;for(v in h)if(oa.call(h,v)){var e=h[v];if(null!=e){if("style"===v){g=void 0;var w="",u="";for(g in e)if(e.hasOwnProperty(g)){var m=0===g.indexOf("--"),q=e[g];null!=q&&(w+=u+na(g)+":",u=g,m=null==q||"boolean"===typeof q||""===q?"":m||"number"!==typeof q||0===q||A.hasOwnProperty(u)&&
34
+ A[u]?(""+q).trim():q+"px",w+=m,u=";")}e=w||null}g=null;b:if(m=b,q=h,-1===m.indexOf("-"))m="string"===typeof q.is;else switch(m){case "annotation-xml":case "color-profile":case "font-face":case "font-face-src":case "font-face-uri":case "font-face-format":case "font-face-name":case "missing-glyph":m=!1;break b;default:m=!0}if(m)pa.hasOwnProperty(v)||(g=v,g=E(g)&&null!=e?g+"="+('"'+z(e)+'"'):"");else{m=v;g=e;e=p.hasOwnProperty(m)?p[m]:null;if(q="style"!==m)q=null!==e?0===e.type:!(2<m.length)||"o"!==
35
+ m[0]&&"O"!==m[0]||"n"!==m[1]&&"N"!==m[1]?!1:!0;q||V(m,g,e,!1)?g="":null!==e?(m=e.attributeName,e=e.type,g=3===e||4===e&&!0===g?m+'=""':m+"="+('"'+z(g)+'"')):g=E(m)?m+"="+('"'+z(g)+'"'):""}g&&(r+=" "+g)}}l||k&&(r+=' data-reactroot=""');var v=r;h="";O.hasOwnProperty(b)?v+="/>":(v+=">",h="</"+a.type+">");a:{l=f.dangerouslySetInnerHTML;if(null!=l){if(null!=l.__html){l=l.__html;break a}}else if(l=f.children,"string"===typeof l||"number"===typeof l){l=z(l);break a}l=null}null!=l?(f=[],la[b]&&"\n"===l.charAt(0)&&
36
+ (v+="\n"),v+=l):f=y(f.children);a=a.type;c=null==c||"http://www.w3.org/1999/xhtml"===c?I(a):"http://www.w3.org/2000/svg"===c&&"foreignObject"===a?"http://www.w3.org/1999/xhtml":c;this.stack.push({domNamespace:c,type:b,children:f,childIndex:0,context:d,footer:h});this.previousWasTextNode=!1;return v};return a}();k={renderToString:function(a){return(new R(a,!1)).read(Infinity)},renderToStaticMarkup:function(a){return(new R(a,!0)).read(Infinity)},renderToNodeStream:function(){t("207")},renderToStaticNodeStream:function(){t("208")},
37
+ version:"16.4.2"};k=(u={default:k},k)||u;return k.default?k.default:k});
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom-test-utils.development.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom-test-utils.production.min.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom-unstable-native-dependencies.development.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom-unstable-native-dependencies.production.min.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -1,4 +1,4 @@
1
- /** @license React v16.4.1
1
+ /** @license React v16.4.2
2
2
  * react-dom.development.js
3
3
  *
4
4
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -2745,14 +2745,15 @@ var ATTRIBUTE_NAME_CHAR = ATTRIBUTE_NAME_START_CHAR + '\\-.0-9\\u00B7\\u0300-\\u
2745
2745
  var ROOT_ATTRIBUTE_NAME = 'data-reactroot';
2746
2746
  var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + ATTRIBUTE_NAME_START_CHAR + '][' + ATTRIBUTE_NAME_CHAR + ']*$');
2747
2747
 
2748
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
2748
2749
  var illegalAttributeNameCache = {};
2749
2750
  var validatedAttributeNameCache = {};
2750
2751
 
2751
2752
  function isAttributeNameSafe(attributeName) {
2752
- if (validatedAttributeNameCache.hasOwnProperty(attributeName)) {
2753
+ if (hasOwnProperty.call(validatedAttributeNameCache, attributeName)) {
2753
2754
  return true;
2754
2755
  }
2755
- if (illegalAttributeNameCache.hasOwnProperty(attributeName)) {
2756
+ if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) {
2756
2757
  return false;
2757
2758
  }
2758
2759
  if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) {
@@ -3959,7 +3960,7 @@ var getActiveElement_1 = getActiveElement;
3959
3960
 
3960
3961
 
3961
3962
 
3962
- var hasOwnProperty = Object.prototype.hasOwnProperty;
3963
+ var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
3963
3964
 
3964
3965
  /**
3965
3966
  * inlined Object.is polyfill to avoid requiring consumers ship their own
@@ -4001,7 +4002,7 @@ function shallowEqual(objA, objB) {
4001
4002
 
4002
4003
  // Test for A's keys different from B.
4003
4004
  for (var i = 0; i < keysA.length; i++) {
4004
- if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
4005
+ if (!hasOwnProperty$1.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
4005
4006
  return false;
4006
4007
  }
4007
4008
  }
@@ -7480,7 +7481,7 @@ var warnedProperties = {};
7480
7481
  var rARIA = new RegExp('^(aria)-[' + ATTRIBUTE_NAME_CHAR + ']*$');
7481
7482
  var rARIACamel = new RegExp('^(aria)[A-Z][' + ATTRIBUTE_NAME_CHAR + ']*$');
7482
7483
 
7483
- var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
7484
+ var hasOwnProperty$2 = Object.prototype.hasOwnProperty;
7484
7485
 
7485
7486
  function getStackAddendum() {
7486
7487
  var stack = ReactDebugCurrentFrame.getStackAddendum();
@@ -7488,7 +7489,7 @@ function getStackAddendum() {
7488
7489
  }
7489
7490
 
7490
7491
  function validateProperty(tagName, name) {
7491
- if (hasOwnProperty$1.call(warnedProperties, name) && warnedProperties[name]) {
7492
+ if (hasOwnProperty$2.call(warnedProperties, name) && warnedProperties[name]) {
7492
7493
  return true;
7493
7494
  }
7494
7495
 
@@ -17502,7 +17503,7 @@ implementation) {
17502
17503
 
17503
17504
  // TODO: this is special because it gets imported during build.
17504
17505
 
17505
- var ReactVersion = '16.4.1';
17506
+ var ReactVersion = '16.4.2';
17506
17507
 
17507
17508
  // TODO: This type is shared between the reconciler and ReactDOM, but will
17508
17509
  // eventually be lifted out to the renderer.