react-dom 16.6.3 → 16.7.0

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.
Files changed (37) hide show
  1. package/build-info.json +8 -0
  2. package/cjs/react-dom-server.browser.development.js +13 -11
  3. package/cjs/react-dom-server.browser.production.min.js +3 -3
  4. package/cjs/react-dom-server.node.development.js +15 -12
  5. package/cjs/react-dom-server.node.production.min.js +4 -4
  6. package/cjs/react-dom-test-utils.development.js +1 -1
  7. package/cjs/react-dom-test-utils.production.min.js +1 -1
  8. package/cjs/react-dom-unstable-fire.development.js +20093 -0
  9. package/cjs/react-dom-unstable-fire.production.min.js +249 -0
  10. package/cjs/react-dom-unstable-fire.profiling.min.js +261 -0
  11. package/cjs/react-dom-unstable-fizz.browser.development.js +144 -0
  12. package/cjs/react-dom-unstable-fizz.browser.production.min.js +11 -0
  13. package/cjs/react-dom-unstable-fizz.node.development.js +150 -0
  14. package/cjs/react-dom-unstable-fizz.node.production.min.js +11 -0
  15. package/cjs/react-dom-unstable-native-dependencies.development.js +1 -1
  16. package/cjs/react-dom-unstable-native-dependencies.production.min.js +1 -1
  17. package/cjs/react-dom.development.js +503 -145
  18. package/cjs/react-dom.production.min.js +163 -163
  19. package/cjs/react-dom.profiling.min.js +140 -139
  20. package/package.json +58 -37
  21. package/umd/react-dom-server.browser.development.js +13 -11
  22. package/umd/react-dom-server.browser.production.min.js +11 -11
  23. package/umd/react-dom-test-utils.development.js +1 -1
  24. package/umd/react-dom-test-utils.production.min.js +1 -1
  25. package/umd/react-dom-unstable-fire.development.js +20220 -0
  26. package/umd/react-dom-unstable-fire.production.min.js +207 -0
  27. package/umd/react-dom-unstable-fire.profiling.min.js +212 -0
  28. package/umd/react-dom-unstable-fizz.browser.development.js +144 -0
  29. package/umd/react-dom-unstable-fizz.browser.production.min.js +10 -0
  30. package/umd/react-dom-unstable-native-dependencies.development.js +1 -1
  31. package/umd/react-dom-unstable-native-dependencies.production.min.js +1 -1
  32. package/umd/react-dom.development.js +506 -145
  33. package/umd/react-dom.production.min.js +195 -192
  34. package/umd/react-dom.profiling.min.js +178 -176
  35. package/unstable-fizz.browser.js +7 -0
  36. package/unstable-fizz.js +3 -0
  37. package/unstable-fizz.node.js +7 -0
package/package.json CHANGED
@@ -1,62 +1,83 @@
1
1
  {
2
- "name": "react-dom",
3
- "version": "16.6.3",
4
- "description": "React package for working with the DOM.",
5
- "main": "index.js",
6
- "repository": "facebook/react",
7
- "keywords": [
8
- "react"
2
+ "_from": "react-dom@0.0.0-4a1072194",
3
+ "_id": "react-dom@0.0.0-4a1072194",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-GfG8Vh/jMcnJKDpv7T6O1pS/WVqiocjPQ9o9cscW8bjR9W36DT3Xb4pDZT70t1xyVvX48/NrTQGz0H7I3fCLhQ==",
6
+ "_location": "/react-dom",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "version",
10
+ "registry": true,
11
+ "raw": "react-dom@0.0.0-4a1072194",
12
+ "name": "react-dom",
13
+ "escapedName": "react-dom",
14
+ "rawSpec": "0.0.0-4a1072194",
15
+ "saveSpec": null,
16
+ "fetchSpec": "0.0.0-4a1072194"
17
+ },
18
+ "_requiredBy": [
19
+ "#USER",
20
+ "/"
9
21
  ],
10
- "license": "MIT",
22
+ "_resolved": "https://registry.npmjs.org/react-dom/-/react-dom-0.0.0-4a1072194.tgz",
23
+ "_shasum": "cc811f77607416b370557551cfd051dca1a9fed7",
24
+ "_spec": "react-dom@0.0.0-4a1072194",
25
+ "_where": "/Users/acdlite/Code/react/build/node_modules",
26
+ "browser": {
27
+ "./server.js": "./server.browser.js",
28
+ "./unstable-fizz.js": "./unstable-fizz.browser.js"
29
+ },
30
+ "browserify": {
31
+ "transform": [
32
+ "loose-envify"
33
+ ]
34
+ },
11
35
  "bugs": {
12
36
  "url": "https://github.com/facebook/react/issues"
13
37
  },
14
- "homepage": "https://reactjs.org/",
38
+ "bundleDependencies": false,
15
39
  "dependencies": {
16
40
  "loose-envify": "^1.1.0",
17
41
  "object-assign": "^4.1.1",
18
42
  "prop-types": "^15.6.2",
19
- "scheduler": "^0.11.2"
20
- },
21
- "peerDependencies": {
22
- "react": "^16.6.3"
43
+ "scheduler": "^0.12.0"
23
44
  },
45
+ "deprecated": false,
46
+ "description": "React package for working with the DOM.",
24
47
  "files": [
25
48
  "LICENSE",
26
49
  "README.md",
50
+ "build-info.json",
27
51
  "index.js",
28
52
  "profiling.js",
29
53
  "server.js",
30
54
  "server.browser.js",
31
55
  "server.node.js",
32
56
  "test-utils.js",
57
+ "unstable-fire.js",
58
+ "unstable-fizz.js",
59
+ "unstable-fizz.browser.js",
60
+ "unstable-fizz.node.js",
33
61
  "unstable-native-dependencies.js",
34
62
  "cjs/",
35
63
  "umd/"
36
64
  ],
37
- "browser": {
38
- "./server.js": "./server.browser.js"
65
+ "homepage": "https://reactjs.org/",
66
+ "keywords": [
67
+ "react"
68
+ ],
69
+ "license": "MIT",
70
+ "main": "index.js",
71
+ "name": "react-dom",
72
+ "peerDependencies": {
73
+ "react": "^16.0.0"
39
74
  },
40
- "browserify": {
41
- "transform": [
42
- "loose-envify"
43
- ]
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "git+https://github.com/facebook/react.git"
44
78
  },
45
- "buildInfo": {
46
- "buildID": "0c756fb-f7f79fd",
47
- "checksum": "d94496cd35663b7e3250c3d4a9069d8229b72b27",
48
- "unstable": false,
49
- "partial": false,
50
- "packages": [
51
- "create-subscription",
52
- "jest-react",
53
- "react",
54
- "react-art",
55
- "react-dom",
56
- "react-is",
57
- "react-reconciler",
58
- "react-test-renderer",
59
- "scheduler"
60
- ]
61
- }
62
- }
79
+ "scripts": {
80
+ "start": "node server.js"
81
+ },
82
+ "version": "16.7.0"
83
+ }
@@ -1,4 +1,4 @@
1
- /** @license React v16.6.1
1
+ /** @license React v16.7.0
2
2
  * react-dom-server.browser.development.js
3
3
  *
4
4
  * Copyright (c) Facebook, Inc. and its affiliates.
@@ -62,7 +62,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
62
62
 
63
63
  // TODO: this is special because it gets imported during build.
64
64
 
65
- var ReactVersion = '16.6.3';
65
+ var ReactVersion = '16.7.0';
66
66
 
67
67
  var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
68
68
 
@@ -336,7 +336,10 @@ var warnAboutDeprecatedLifecycles = false;
336
336
 
337
337
 
338
338
  // Only used in www builds.
339
- var enableSuspenseServerRenderer = false;
339
+ var enableSuspenseServerRenderer = false; // TODO: true? Here it might just be false.
340
+
341
+ // Only used in www builds.
342
+
340
343
 
341
344
  // Only used in www builds.
342
345
 
@@ -487,7 +490,8 @@ function validateContextBounds(context, threadID) {
487
490
  // If we don't have enough slots in this context to store this threadID,
488
491
  // fill it in without leaving any holes to ensure that the VM optimizes
489
492
  // this as non-holey index properties.
490
- for (var i = context._threadCount; i <= threadID; i++) {
493
+ // (Note: If `react` package is < 16.6, _threadCount is undefined.)
494
+ for (var i = context._threadCount | 0; i <= threadID; i++) {
491
495
  // We assume that this is the same as the defaultValue which might not be
492
496
  // true if we're rendering inside a secondary renderer but they are
493
497
  // secondary because these use cases are very rare.
@@ -1216,10 +1220,6 @@ function useRef(initialValue) {
1216
1220
  }
1217
1221
  }
1218
1222
 
1219
- function useMutationEffect(create, inputs) {
1220
- warning$1(false, 'useMutationEffect does nothing on the server, because its effect cannot ' + "be encoded into the server renderer's output format. This will lead " + 'to a mismatch between the initial, non-hydrated UI and the intended ' + 'UI. To avoid this, useMutationEffect should only be used in ' + 'components that render exclusively on the client.');
1221
- }
1222
-
1223
1223
  function useLayoutEffect(create, inputs) {
1224
1224
  warning$1(false, 'useLayoutEffect does nothing on the server, because its effect cannot ' + "be encoded into the server renderer's output format. This will lead " + 'to a mismatch between the initial, non-hydrated UI and the intended ' + 'UI. To avoid this, useLayoutEffect should only be used in ' + 'components that render exclusively on the client.');
1225
1225
  }
@@ -1258,6 +1258,9 @@ function dispatchAction(componentIdentity, queue, action) {
1258
1258
  }
1259
1259
 
1260
1260
  function noop() {}
1261
+ function identity(fn) {
1262
+ return fn;
1263
+ }
1261
1264
 
1262
1265
  var currentThreadID = 0;
1263
1266
 
@@ -1272,12 +1275,11 @@ var Dispatcher = {
1272
1275
  useReducer: useReducer,
1273
1276
  useRef: useRef,
1274
1277
  useState: useState,
1275
- useMutationEffect: useMutationEffect,
1276
1278
  useLayoutEffect: useLayoutEffect,
1279
+ // Callbacks are passed as they are in the server environment.
1280
+ useCallback: identity,
1277
1281
  // useImperativeMethods is not run in the server environment
1278
1282
  useImperativeMethods: noop,
1279
- // Callbacks are not run in the server environment.
1280
- useCallback: noop,
1281
1283
  // Effects are not run in the server environment.
1282
1284
  useEffect: noop
1283
1285
  };
@@ -1,4 +1,4 @@
1
- /** @license React v16.6.1
1
+ /** @license React v16.7.0
2
2
  * react-dom-server.browser.production.min.js
3
3
  *
4
4
  * Copyright (c) Facebook, Inc. and its affiliates.
@@ -8,15 +8,15 @@
8
8
  */
9
9
  'use strict';(function(u,C){"object"===typeof exports&&"undefined"!==typeof module?module.exports=C(require("react")):"function"===typeof define&&define.amd?define(["react"],C):u.ReactDOMServer=C(u.React)})(this,function(u){function C(a,b,f,c,g,d,h,e){if(!a){a=void 0;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=[f,c,g,d,h,e],ja=0;a=Error(b.replace(/%s/g,function(){return k[ja++]}));
10
10
  a.name="Invariant Violation"}a.framesToPop=1;throw a;}}function v(a){for(var b=arguments.length-1,f="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=0;c<b;c++)f+="&args[]="+encodeURIComponent(arguments[c+1]);C(!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. ",f)}function E(a){if(null==a)return null;if("function"===typeof a)return a.displayName||a.name||null;if("string"===typeof a)return a;
11
- switch(a){case O:return"ConcurrentMode";case H:return"Fragment";case P:return"Portal";case Q:return"Profiler";case R:return"StrictMode";case I:return"Suspense"}if("object"===typeof a)switch(a.$$typeof){case S:return"Context.Consumer";case J:return"Context.Provider";case T:var b=a.render;b=b.displayName||b.name||"";return a.displayName||(""!==b?"ForwardRef("+b+")":"ForwardRef");case U:return E(a.type);case V:if(a=1===a._status?a._result:null)return E(a)}return null}function F(a,b){for(var f=a._threadCount;f<=
12
- b;f++)a[f]=a._currentValue2,a._threadCount=f+1}function ka(a,b,f){var c=a.contextType;if("object"===typeof c&&null!==c)return F(c,f),c[f];if(a=a.contextTypes){f={};for(var g in a)f[g]=b[g];b=f}else b=W;return b}function X(a){if(Y.call(Z,a))return!0;if(Y.call(aa,a))return!1;if(la.test(a))return Z[a]=!0;aa[a]=!0;return!1}function ma(a,b,f,c){if(null!==f&&0===f.type)return!1;switch(typeof b){case "function":case "symbol":return!0;case "boolean":if(c)return!1;if(null!==f)return!f.acceptsBooleans;a=a.toLowerCase().slice(0,
13
- 5);return"data-"!==a&&"aria-"!==a;default:return!1}}function na(a,b,f,c){if(null===b||"undefined"===typeof b||ma(a,b,f,c))return!0;if(c)return!1;if(null!==f)switch(f.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 t(a,b,f,c,g){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=c;this.attributeNamespace=g;this.mustUseProperty=f;this.propertyName=a;this.type=b}function B(a){if("boolean"===typeof a||"number"===typeof a)return""+
14
- a;a=""+a;var b=oa.exec(a);if(b){var f="",c,g=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="&#x27;";break;case 60:b="&lt;";break;case 62:b="&gt;";break;default:continue}g!==c&&(f+=a.substring(g,c));g=c+1;f+=b}a=g!==c?f+a.substring(g,c):f}return a}function ba(a,b,f,c){for(;ca;)ca=!1,f=a(b,c);return f}function da(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"}}
15
- function pa(a){if(void 0===a||null===a)return a;var b="";u.Children.forEach(a,function(a){null!=a&&(b+=a)});return b}function ea(a,b){void 0===a&&v("152",E(b)||"Component")}function qa(a,b,f){function c(g,c){var d=ka(c,b,f),e=[],h=!1,m={isMounted:function(a){return!1},enqueueForceUpdate:function(a){if(null===e)return null},enqueueReplaceState:function(a,b){h=!0;e=[b]},enqueueSetState:function(a,b){if(null===e)return null;e.push(b)}},l=void 0;if(c.prototype&&c.prototype.isReactComponent){if(l=new c(g.props,
16
- d,m),"function"===typeof c.getDerivedStateFromProps){var k=c.getDerivedStateFromProps.call(null,g.props,l.state);null!=k&&(l.state=y({},l.state,k))}}else if(l=c(g.props,d,m),l=ba(c,g.props,l,d),null==l||null==l.render){a=l;ea(a,c);return}l.props=g.props;l.context=d;l.updater=m;m=l.state;void 0===m&&(l.state=m=null);if("function"===typeof l.UNSAFE_componentWillMount||"function"===typeof l.componentWillMount)if("function"===typeof l.componentWillMount&&"function"!==typeof c.getDerivedStateFromProps&&
17
- l.componentWillMount(),"function"===typeof l.UNSAFE_componentWillMount&&"function"!==typeof c.getDerivedStateFromProps&&l.UNSAFE_componentWillMount(),e.length){m=e;var n=h;e=null;h=!1;if(n&&1===m.length)l.state=m[0];else{k=n?m[0]:l.state;var q=!0;for(n=n?1:0;n<m.length;n++){var r=m[n];r="function"===typeof r?r.call(l,k,g.props,d):r;null!=r&&(q?(q=!1,k=y({},k,r)):y(k,r))}l.state=k}}else e=null;a=l.render();ea(a,c);g=void 0;if("function"===typeof l.getChildContext&&(d=c.childContextTypes,"object"===
18
- typeof d)){g=l.getChildContext();for(var t in g)t in d?void 0:v("108",E(c)||"Unknown",t)}g&&(b=y({},b,g))}for(;u.isValidElement(a);){var g=a,d=g.type;if("function"!==typeof d)break;c(g,d)}return{child:a,context:b}}var y=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.assign,k="function"===typeof Symbol&&Symbol.for,P=k?Symbol.for("react.portal"):60106,H=k?Symbol.for("react.fragment"):60107,R=k?Symbol.for("react.strict_mode"):60108,Q=k?Symbol.for("react.profiler"):60114,J=k?Symbol.for("react.provider"):
19
- 60109,S=k?Symbol.for("react.context"):60110,O=k?Symbol.for("react.concurrent_mode"):60111,T=k?Symbol.for("react.forward_ref"):60112,I=k?Symbol.for("react.suspense"):60113,U=k?Symbol.for("react.memo"):60115,V=k?Symbol.for("react.lazy"):60116;k=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;for(var W={},q=new Uint16Array(16),z=0;15>z;z++)q[z]=z+1;q[15]=0;var la=/^[: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]*$/,
11
+ switch(a){case O:return"ConcurrentMode";case H:return"Fragment";case P:return"Portal";case Q:return"Profiler";case R:return"StrictMode";case I:return"Suspense"}if("object"===typeof a)switch(a.$$typeof){case S:return"Context.Consumer";case J:return"Context.Provider";case T:var b=a.render;b=b.displayName||b.name||"";return a.displayName||(""!==b?"ForwardRef("+b+")":"ForwardRef");case U:return E(a.type);case V:if(a=1===a._status?a._result:null)return E(a)}return null}function F(a,b){for(var f=a._threadCount|
12
+ 0;f<=b;f++)a[f]=a._currentValue2,a._threadCount=f+1}function ka(a,b,f){var c=a.contextType;if("object"===typeof c&&null!==c)return F(c,f),c[f];if(a=a.contextTypes){f={};for(var g in a)f[g]=b[g];b=f}else b=W;return b}function X(a){if(Y.call(Z,a))return!0;if(Y.call(aa,a))return!1;if(la.test(a))return Z[a]=!0;aa[a]=!0;return!1}function ma(a,b,f,c){if(null!==f&&0===f.type)return!1;switch(typeof b){case "function":case "symbol":return!0;case "boolean":if(c)return!1;if(null!==f)return!f.acceptsBooleans;
13
+ a=a.toLowerCase().slice(0,5);return"data-"!==a&&"aria-"!==a;default:return!1}}function na(a,b,f,c){if(null===b||"undefined"===typeof b||ma(a,b,f,c))return!0;if(c)return!1;if(null!==f)switch(f.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 t(a,b,f,c,g){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=c;this.attributeNamespace=g;this.mustUseProperty=f;this.propertyName=a;this.type=b}function B(a){if("boolean"===typeof a||"number"===
14
+ typeof a)return""+a;a=""+a;var b=oa.exec(a);if(b){var f="",c,g=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="&#x27;";break;case 60:b="&lt;";break;case 62:b="&gt;";break;default:continue}g!==c&&(f+=a.substring(g,c));g=c+1;f+=b}a=g!==c?f+a.substring(g,c):f}return a}function ba(a,b,f,c){for(;ca;)ca=!1,f=a(b,c);return f}function da(a){switch(a){case "svg":return"http://www.w3.org/2000/svg";case "math":return"http://www.w3.org/1998/Math/MathML";
15
+ default:return"http://www.w3.org/1999/xhtml"}}function pa(a){if(void 0===a||null===a)return a;var b="";u.Children.forEach(a,function(a){null!=a&&(b+=a)});return b}function ea(a,b){void 0===a&&v("152",E(b)||"Component")}function qa(a,b,f){function c(g,c){var d=ka(c,b,f),e=[],h=!1,m={isMounted:function(a){return!1},enqueueForceUpdate:function(a){if(null===e)return null},enqueueReplaceState:function(a,b){h=!0;e=[b]},enqueueSetState:function(a,b){if(null===e)return null;e.push(b)}},l=void 0;if(c.prototype&&
16
+ c.prototype.isReactComponent){if(l=new c(g.props,d,m),"function"===typeof c.getDerivedStateFromProps){var k=c.getDerivedStateFromProps.call(null,g.props,l.state);null!=k&&(l.state=y({},l.state,k))}}else if(l=c(g.props,d,m),l=ba(c,g.props,l,d),null==l||null==l.render){a=l;ea(a,c);return}l.props=g.props;l.context=d;l.updater=m;m=l.state;void 0===m&&(l.state=m=null);if("function"===typeof l.UNSAFE_componentWillMount||"function"===typeof l.componentWillMount)if("function"===typeof l.componentWillMount&&
17
+ "function"!==typeof c.getDerivedStateFromProps&&l.componentWillMount(),"function"===typeof l.UNSAFE_componentWillMount&&"function"!==typeof c.getDerivedStateFromProps&&l.UNSAFE_componentWillMount(),e.length){m=e;var n=h;e=null;h=!1;if(n&&1===m.length)l.state=m[0];else{k=n?m[0]:l.state;var q=!0;for(n=n?1:0;n<m.length;n++){var r=m[n];r="function"===typeof r?r.call(l,k,g.props,d):r;null!=r&&(q?(q=!1,k=y({},k,r)):y(k,r))}l.state=k}}else e=null;a=l.render();ea(a,c);g=void 0;if("function"===typeof l.getChildContext&&
18
+ (d=c.childContextTypes,"object"===typeof d)){g=l.getChildContext();for(var t in g)t in d?void 0:v("108",E(c)||"Unknown",t)}g&&(b=y({},b,g))}for(;u.isValidElement(a);){var g=a,d=g.type;if("function"!==typeof d)break;c(g,d)}return{child:a,context:b}}var y=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.assign,k="function"===typeof Symbol&&Symbol.for,P=k?Symbol.for("react.portal"):60106,H=k?Symbol.for("react.fragment"):60107,R=k?Symbol.for("react.strict_mode"):60108,Q=k?Symbol.for("react.profiler"):
19
+ 60114,J=k?Symbol.for("react.provider"):60109,S=k?Symbol.for("react.context"):60110,O=k?Symbol.for("react.concurrent_mode"):60111,T=k?Symbol.for("react.forward_ref"):60112,I=k?Symbol.for("react.suspense"):60113,U=k?Symbol.for("react.memo"):60115,V=k?Symbol.for("react.lazy"):60116;k=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;for(var W={},q=new Uint16Array(16),z=0;15>z;z++)q[z]=z+1;q[15]=0;var la=/^[: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]*$/,
20
20
  Y=Object.prototype.hasOwnProperty,aa={},Z={},r={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a){r[a]=new t(a,0,!1,a,null)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(a){var b=a[0];r[b]=new t(b,1,!1,a[1],null)});["contentEditable","draggable","spellCheck","value"].forEach(function(a){r[a]=new t(a,2,!1,
21
21
  a.toLowerCase(),null)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(a){r[a]=new t(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){r[a]=new t(a,3,!1,a.toLowerCase(),null)});["checked","multiple","muted","selected"].forEach(function(a){r[a]=new t(a,3,!0,a,null)});["capture",
22
22
  "download"].forEach(function(a){r[a]=new t(a,4,!1,a,null)});["cols","rows","size","span"].forEach(function(a){r[a]=new t(a,6,!1,a,null)});["rowSpan","start"].forEach(function(a){r[a]=new t(a,5,!1,a.toLowerCase(),null)});var K=/[\-:]([a-z])/g,L=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=
@@ -37,4 +37,4 @@ d.defaultValue,d=y({},d,{value:void 0});else if("option"===b){e=this.currentSele
37
37
  ""===w?"":n||"number"!==typeof w||0===w||D.hasOwnProperty(t)&&D[t]?(""+w).trim():w+"px";l+=n;t=";"}}m=l||null}p=null;b:if(n=b,w=h,-1===n.indexOf("-"))n="string"===typeof w.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)Aa.hasOwnProperty(x)||(p=x,p=X(p)&&null!=m?p+"="+('"'+B(m)+'"'):"");else{n=x;p=m;m=r.hasOwnProperty(n)?r[n]:null;
38
38
  if(w="style"!==n)w=null!==m?0===m.type:!(2<n.length)||"o"!==n[0]&&"O"!==n[0]||"n"!==n[1]&&"N"!==n[1]?!1:!0;w||na(n,p,m,!1)?p="":null!==m?(n=m.attributeName,m=m.type,p=3===m||4===m&&!0===p?n+'=""':n+"="+('"'+B(p)+'"')):p=X(n)?n+"="+('"'+B(p)+'"'):""}p&&(q+=" "+p)}}e||k&&(q+=' data-reactroot=""');var x=q;h="";fa.hasOwnProperty(b)?x+="/>":(x+=">",h="</"+a.type+">");a:{e=d.dangerouslySetInnerHTML;if(null!=e){if(null!=e.__html){e=e.__html;break a}}else if(e=d.children,"string"===typeof e||"number"===typeof e){e=
39
39
  B(e);break a}e=null}null!=e?(d=[],xa[b]&&"\n"===e.charAt(0)&&(x+="\n"),x+=e):d=A(d.children);a=a.type;c=null==c||"http://www.w3.org/1999/xhtml"===c?da(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:d,childIndex:0,context:f,footer:h});this.previousWasTextNode=!1;return x};return a}();k={renderToString:function(a){a=new ia(a,!1);try{return a.read(Infinity)}finally{a.destroy()}},renderToStaticMarkup:function(a){a=
40
- new ia(a,!0);try{return a.read(Infinity)}finally{a.destroy()}},renderToNodeStream:function(){v("207")},renderToStaticNodeStream:function(){v("208")},version:"16.6.3"};k=(z={default:k},k)||z;return k.default||k});
40
+ new ia(a,!0);try{return a.read(Infinity)}finally{a.destroy()}},renderToNodeStream:function(){v("207")},renderToStaticNodeStream:function(){v("208")},version:"16.7.0"};k=(z={default:k},k)||z;return k.default||k});
@@ -1,4 +1,4 @@
1
- /** @license React v16.6.1
1
+ /** @license React v16.7.0
2
2
  * react-dom-test-utils.development.js
3
3
  *
4
4
  * Copyright (c) Facebook, Inc. and its affiliates.
@@ -1,4 +1,4 @@
1
- /** @license React v16.6.1
1
+ /** @license React v16.7.0
2
2
  * react-dom-test-utils.production.min.js
3
3
  *
4
4
  * Copyright (c) Facebook, Inc. and its affiliates.