@symbo.ls/datepicker 0.4.2 → 0.5.10

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 (209) hide show
  1. package/.parcel-cache/3085beb0745a2550.txt +2 -0
  2. package/.parcel-cache/736b9fb319e7887f.txt +2 -0
  3. package/.parcel-cache/data.mdb +0 -0
  4. package/.parcel-cache/lock.mdb +0 -0
  5. package/dist/index.js +347 -0
  6. package/dist/index.js.map +1 -0
  7. package/package.json +6 -6
  8. package/packages/react/index.js +7 -0
  9. package/packages/react/node_modules/.yarn-integrity +105 -0
  10. package/packages/react/node_modules/@domql/cache/LICENSE +21 -0
  11. package/packages/react/node_modules/@domql/cache/index.js +0 -0
  12. package/packages/react/node_modules/@domql/cache/package.json +10 -0
  13. package/packages/react/node_modules/@domql/cookie/LICENSE +21 -0
  14. package/packages/react/node_modules/@domql/cookie/index.js +22 -0
  15. package/packages/react/node_modules/@domql/cookie/package.json +10 -0
  16. package/packages/react/node_modules/@domql/define/LICENSE +21 -0
  17. package/packages/react/node_modules/@domql/define/index.js +14 -0
  18. package/packages/react/node_modules/@domql/define/package.json +11 -0
  19. package/packages/react/node_modules/@domql/domql/LICENSE +21 -0
  20. package/packages/react/node_modules/@domql/domql/dist/index.js +93 -0
  21. package/packages/react/node_modules/@domql/domql/dist/index.js.map +1 -0
  22. package/packages/react/node_modules/@domql/domql/package.json +33 -0
  23. package/packages/react/node_modules/@domql/element/LICENSE +21 -0
  24. package/packages/react/node_modules/@domql/element/package.json +20 -0
  25. package/packages/react/node_modules/@domql/element/src/assign.js +22 -0
  26. package/packages/react/node_modules/@domql/element/src/create.js +125 -0
  27. package/packages/react/node_modules/@domql/element/src/index.js +8 -0
  28. package/packages/react/node_modules/@domql/element/src/iterate.js +80 -0
  29. package/packages/react/node_modules/@domql/element/src/methods.js +96 -0
  30. package/packages/react/node_modules/@domql/element/src/set.js +44 -0
  31. package/packages/react/node_modules/@domql/element/src/update.js +100 -0
  32. package/packages/react/node_modules/@domql/event/LICENSE +21 -0
  33. package/packages/react/node_modules/@domql/event/package.json +14 -0
  34. package/packages/react/node_modules/@domql/event/src/can.js +10 -0
  35. package/packages/react/node_modules/@domql/event/src/index.js +11 -0
  36. package/packages/react/node_modules/@domql/event/src/is.js +13 -0
  37. package/packages/react/node_modules/@domql/event/src/on.js +33 -0
  38. package/packages/react/node_modules/@domql/event/src/store.js +6 -0
  39. package/packages/react/node_modules/@domql/event/src/wrappers.js +14 -0
  40. package/packages/react/node_modules/@domql/event/yarn-error.log +44 -0
  41. package/packages/react/node_modules/@domql/id/LICENSE +21 -0
  42. package/packages/react/node_modules/@domql/id/index.js +12 -0
  43. package/packages/react/node_modules/@domql/id/package.json +10 -0
  44. package/packages/react/node_modules/@domql/mixins/LICENSE +21 -0
  45. package/packages/react/node_modules/@domql/mixins/package.json +12 -0
  46. package/packages/react/node_modules/@domql/mixins/src/attr.js +19 -0
  47. package/packages/react/node_modules/@domql/mixins/src/classList.js +37 -0
  48. package/packages/react/node_modules/@domql/mixins/src/content.js +17 -0
  49. package/packages/react/node_modules/@domql/mixins/src/data.js +21 -0
  50. package/packages/react/node_modules/@domql/mixins/src/html.js +17 -0
  51. package/packages/react/node_modules/@domql/mixins/src/index.js +11 -0
  52. package/packages/react/node_modules/@domql/mixins/src/registry.js +55 -0
  53. package/packages/react/node_modules/@domql/mixins/src/state.js +16 -0
  54. package/packages/react/node_modules/@domql/mixins/src/style.js +14 -0
  55. package/packages/react/node_modules/@domql/mixins/src/text.js +19 -0
  56. package/packages/react/node_modules/@domql/node/LICENSE +21 -0
  57. package/packages/react/node_modules/@domql/node/package.json +18 -0
  58. package/packages/react/node_modules/@domql/node/src/cache.js +53 -0
  59. package/packages/react/node_modules/@domql/node/src/create.js +86 -0
  60. package/packages/react/node_modules/@domql/node/src/index.js +5 -0
  61. package/packages/react/node_modules/@domql/node/src/registry.js +139 -0
  62. package/packages/react/node_modules/@domql/node/yarn-error.log +166 -0
  63. package/packages/react/node_modules/@domql/parse/LICENSE +21 -0
  64. package/packages/react/node_modules/@domql/parse/index.js +16 -0
  65. package/packages/react/node_modules/@domql/parse/package.json +10 -0
  66. package/packages/react/node_modules/@domql/props/LICENSE +21 -0
  67. package/packages/react/node_modules/@domql/props/package.json +10 -0
  68. package/packages/react/node_modules/@domql/props/src/index.js +62 -0
  69. package/packages/react/node_modules/@domql/proto/LICENSE +21 -0
  70. package/packages/react/node_modules/@domql/proto/index.js +66 -0
  71. package/packages/react/node_modules/@domql/proto/package.json +10 -0
  72. package/packages/react/node_modules/@domql/react-transformer/LICENSE +21 -0
  73. package/packages/react/node_modules/@domql/react-transformer/dist/index.js +62 -0
  74. package/packages/react/node_modules/@domql/react-transformer/dist/index.js.map +1 -0
  75. package/packages/react/node_modules/@domql/react-transformer/package.json +17 -0
  76. package/packages/react/node_modules/@domql/report/LICENSE +21 -0
  77. package/packages/react/node_modules/@domql/report/index.js +62 -0
  78. package/packages/react/node_modules/@domql/report/package.json +7 -0
  79. package/packages/react/node_modules/@domql/state/LICENSE +21 -0
  80. package/packages/react/node_modules/@domql/state/package.json +11 -0
  81. package/packages/react/node_modules/@domql/state/src/index.js +51 -0
  82. package/packages/react/node_modules/@domql/tree/LICENSE +21 -0
  83. package/packages/react/node_modules/@domql/tree/index.js +6 -0
  84. package/packages/react/node_modules/@domql/tree/package.json +10 -0
  85. package/packages/react/node_modules/@domql/tree/root.js +8 -0
  86. package/packages/react/node_modules/@domql/utils/LICENSE +21 -0
  87. package/packages/react/node_modules/@domql/utils/package.json +13 -0
  88. package/packages/react/node_modules/@domql/utils/src/index.js +5 -0
  89. package/packages/react/node_modules/@domql/utils/src/node.js +10 -0
  90. package/packages/react/node_modules/@domql/utils/src/object.js +193 -0
  91. package/packages/react/node_modules/@domql/utils/src/protoUtils.js +119 -0
  92. package/packages/react/node_modules/@symbo.ls/block/package.json +7 -0
  93. package/packages/react/node_modules/@symbo.ls/block/packages/react/index.js +1 -0
  94. package/packages/react/node_modules/@symbo.ls/block/packages/react/package.json +7 -0
  95. package/packages/react/node_modules/@symbo.ls/block/src/index.js +90 -0
  96. package/packages/react/node_modules/@symbo.ls/block/src/style.js +5 -0
  97. package/packages/react/node_modules/@symbo.ls/datepicker/package.json +12 -0
  98. package/packages/react/node_modules/@symbo.ls/datepicker/packages/react/index.js +1 -0
  99. package/packages/react/node_modules/@symbo.ls/datepicker/packages/react/package.json +7 -0
  100. package/packages/react/node_modules/@symbo.ls/datepicker/src/index.js +115 -0
  101. package/packages/react/node_modules/@symbo.ls/datepicker/src/style.js +100 -0
  102. package/packages/react/node_modules/@symbo.ls/icon/package.json +10 -0
  103. package/packages/react/node_modules/@symbo.ls/icon/packages/react/index.js +1 -0
  104. package/packages/react/node_modules/@symbo.ls/icon/packages/react/package.json +7 -0
  105. package/packages/react/node_modules/@symbo.ls/icon/src/index.js +14 -0
  106. package/packages/react/node_modules/@symbo.ls/icon/src/style.js +8 -0
  107. package/packages/react/node_modules/@symbo.ls/shape/package.json +7 -0
  108. package/packages/react/node_modules/@symbo.ls/shape/packages/react/index.js +1 -0
  109. package/packages/react/node_modules/@symbo.ls/shape/packages/react/package.json +7 -0
  110. package/packages/react/node_modules/@symbo.ls/shape/src/index.js +43 -0
  111. package/packages/react/node_modules/@symbo.ls/shape/src/style.js +102 -0
  112. package/packages/react/node_modules/@symbo.ls/svg/package.json +7 -0
  113. package/packages/react/node_modules/@symbo.ls/svg/packages/react/index.js +1 -0
  114. package/packages/react/node_modules/@symbo.ls/svg/packages/react/package.json +7 -0
  115. package/packages/react/node_modules/@symbo.ls/svg/src/index.js +14 -0
  116. package/packages/react/node_modules/js-tokens/CHANGELOG.md +151 -0
  117. package/packages/react/node_modules/js-tokens/LICENSE +21 -0
  118. package/packages/react/node_modules/js-tokens/README.md +240 -0
  119. package/packages/react/node_modules/js-tokens/index.js +23 -0
  120. package/packages/react/node_modules/js-tokens/package.json +30 -0
  121. package/packages/react/node_modules/loose-envify/LICENSE +21 -0
  122. package/packages/react/node_modules/loose-envify/README.md +45 -0
  123. package/packages/react/node_modules/loose-envify/cli.js +16 -0
  124. package/packages/react/node_modules/loose-envify/custom.js +4 -0
  125. package/packages/react/node_modules/loose-envify/index.js +3 -0
  126. package/packages/react/node_modules/loose-envify/loose-envify.js +36 -0
  127. package/packages/react/node_modules/loose-envify/package.json +36 -0
  128. package/packages/react/node_modules/loose-envify/replace.js +65 -0
  129. package/packages/react/node_modules/object-assign/index.js +90 -0
  130. package/packages/react/node_modules/object-assign/license +21 -0
  131. package/packages/react/node_modules/object-assign/package.json +42 -0
  132. package/packages/react/node_modules/object-assign/readme.md +61 -0
  133. package/packages/react/node_modules/react/LICENSE +21 -0
  134. package/packages/react/node_modules/react/README.md +13 -0
  135. package/packages/react/node_modules/react/build-info.json +8 -0
  136. package/packages/react/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1203 -0
  137. package/packages/react/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +9 -0
  138. package/packages/react/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +9 -0
  139. package/packages/react/node_modules/react/cjs/react-jsx-runtime.development.js +1221 -0
  140. package/packages/react/node_modules/react/cjs/react-jsx-runtime.production.min.js +10 -0
  141. package/packages/react/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +10 -0
  142. package/packages/react/node_modules/react/cjs/react.development.js +2333 -0
  143. package/packages/react/node_modules/react/cjs/react.production.min.js +23 -0
  144. package/packages/react/node_modules/react/index.js +7 -0
  145. package/packages/react/node_modules/react/jsx-dev-runtime.js +7 -0
  146. package/packages/react/node_modules/react/jsx-runtime.js +7 -0
  147. package/packages/react/node_modules/react/package.json +39 -0
  148. package/packages/react/node_modules/react/umd/react.development.js +3357 -0
  149. package/packages/react/node_modules/react/umd/react.production.min.js +31 -0
  150. package/packages/react/node_modules/react/umd/react.profiling.min.js +36 -0
  151. package/packages/react/node_modules/react-dom/LICENSE +21 -0
  152. package/packages/react/node_modules/react-dom/README.md +54 -0
  153. package/packages/react/node_modules/react-dom/build-info.json +8 -0
  154. package/packages/react/node_modules/react-dom/cjs/react-dom-server.browser.development.js +4342 -0
  155. package/packages/react/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +51 -0
  156. package/packages/react/node_modules/react-dom/cjs/react-dom-server.node.development.js +4383 -0
  157. package/packages/react/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +52 -0
  158. package/packages/react/node_modules/react-dom/cjs/react-dom-test-utils.development.js +2118 -0
  159. package/packages/react/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +43 -0
  160. package/packages/react/node_modules/react-dom/cjs/react-dom.development.js +26262 -0
  161. package/packages/react/node_modules/react-dom/cjs/react-dom.production.min.js +297 -0
  162. package/packages/react/node_modules/react-dom/cjs/react-dom.profiling.min.js +310 -0
  163. package/packages/react/node_modules/react-dom/index.js +38 -0
  164. package/packages/react/node_modules/react-dom/package.json +49 -0
  165. package/packages/react/node_modules/react-dom/profiling.js +38 -0
  166. package/packages/react/node_modules/react-dom/server.browser.js +7 -0
  167. package/packages/react/node_modules/react-dom/server.js +3 -0
  168. package/packages/react/node_modules/react-dom/server.node.js +7 -0
  169. package/packages/react/node_modules/react-dom/test-utils.js +7 -0
  170. package/packages/react/node_modules/react-dom/umd/react-dom-server.browser.development.js +4341 -0
  171. package/packages/react/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +46 -0
  172. package/packages/react/node_modules/react-dom/umd/react-dom-test-utils.development.js +2136 -0
  173. package/packages/react/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +35 -0
  174. package/packages/react/node_modules/react-dom/umd/react-dom.development.js +26292 -0
  175. package/packages/react/node_modules/react-dom/umd/react-dom.production.min.js +245 -0
  176. package/packages/react/node_modules/react-dom/umd/react-dom.profiling.min.js +252 -0
  177. package/packages/react/node_modules/regenerator-runtime/LICENSE +21 -0
  178. package/packages/react/node_modules/regenerator-runtime/README.md +31 -0
  179. package/packages/react/node_modules/regenerator-runtime/package.json +19 -0
  180. package/packages/react/node_modules/regenerator-runtime/path.js +11 -0
  181. package/packages/react/node_modules/regenerator-runtime/runtime.js +754 -0
  182. package/packages/react/node_modules/scheduler/LICENSE +21 -0
  183. package/packages/react/node_modules/scheduler/README.md +9 -0
  184. package/packages/react/node_modules/scheduler/build-info.json +8 -0
  185. package/packages/react/node_modules/scheduler/cjs/scheduler-tracing.development.js +347 -0
  186. package/packages/react/node_modules/scheduler/cjs/scheduler-tracing.production.min.js +9 -0
  187. package/packages/react/node_modules/scheduler/cjs/scheduler-tracing.profiling.min.js +16 -0
  188. package/packages/react/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +665 -0
  189. package/packages/react/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +19 -0
  190. package/packages/react/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +206 -0
  191. package/packages/react/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +13 -0
  192. package/packages/react/node_modules/scheduler/cjs/scheduler.development.js +646 -0
  193. package/packages/react/node_modules/scheduler/cjs/scheduler.production.min.js +20 -0
  194. package/packages/react/node_modules/scheduler/index.js +7 -0
  195. package/packages/react/node_modules/scheduler/package.json +40 -0
  196. package/packages/react/node_modules/scheduler/tracing-profiling.js +7 -0
  197. package/packages/react/node_modules/scheduler/tracing.js +7 -0
  198. package/packages/react/node_modules/scheduler/umd/scheduler-tracing.development.js +80 -0
  199. package/packages/react/node_modules/scheduler/umd/scheduler-tracing.production.min.js +80 -0
  200. package/packages/react/node_modules/scheduler/umd/scheduler-tracing.profiling.min.js +80 -0
  201. package/packages/react/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +664 -0
  202. package/packages/react/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +18 -0
  203. package/packages/react/node_modules/scheduler/umd/scheduler.development.js +152 -0
  204. package/packages/react/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
  205. package/packages/react/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
  206. package/packages/react/node_modules/scheduler/unstable_mock.js +7 -0
  207. package/packages/react/node_modules/scheduler/unstable_post_task.js +7 -0
  208. package/packages/react/package.json +6 -2
  209. package/packages/react/yarn.lock +229 -0
@@ -0,0 +1,31 @@
1
+ /** @license React v17.0.2
2
+ * react.production.min.js
3
+ *
4
+ * Copyright (c) Facebook, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ (function(){'use strict';(function(c,x){"object"===typeof exports&&"undefined"!==typeof module?x(exports):"function"===typeof define&&define.amd?define(["exports"],x):(c=c||self,x(c.React={}))})(this,function(c){function x(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,e=1;e<arguments.length;e++)b+="&args[]="+encodeURIComponent(arguments[e]);return"Minified React error #"+
10
+ a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function v(a,b,e){this.props=a;this.context=b;this.refs=Z;this.updater=e||aa}function ba(){}function K(a,b,e){this.props=a;this.context=b;this.refs=Z;this.updater=e||aa}function ca(a,b,e){var l,f={},c=null,da=null;if(null!=b)for(l in void 0!==b.ref&&(da=b.ref),void 0!==b.key&&(c=""+b.key),b)ea.call(b,l)&&!fa.hasOwnProperty(l)&&(f[l]=b[l]);var k=arguments.length-2;if(1===
11
+ k)f.children=e;else if(1<k){for(var h=Array(k),d=0;d<k;d++)h[d]=arguments[d+2];f.children=h}if(a&&a.defaultProps)for(l in k=a.defaultProps,k)void 0===f[l]&&(f[l]=k[l]);return{$$typeof:w,type:a,key:c,ref:da,props:f,_owner:L.current}}function va(a,b){return{$$typeof:w,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===w}function wa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function N(a,b){return"object"===
12
+ typeof a&&null!==a&&null!=a.key?wa(""+a.key):b.toString(36)}function C(a,b,e,l,f){var c=typeof a;if("undefined"===c||"boolean"===c)a=null;var d=!1;if(null===a)d=!0;else switch(c){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case w:case ha:d=!0}}if(d)return d=a,f=f(d),a=""===l?"."+N(d,0):l,Array.isArray(f)?(e="",null!=a&&(e=a.replace(ia,"$&/")+"/"),C(f,b,e,"",function(a){return a})):null!=f&&(M(f)&&(f=va(f,e+(!f.key||d&&d.key===f.key?"":(""+f.key).replace(ia,"$&/")+"/")+
13
+ a)),b.push(f)),1;d=0;l=""===l?".":l+":";if(Array.isArray(a))for(var k=0;k<a.length;k++){c=a[k];var h=l+N(c,k);d+=C(c,b,e,h,f)}else if(h=x(a),"function"===typeof h)for(a=h.call(a),k=0;!(c=a.next()).done;)c=c.value,h=l+N(c,k++),d+=C(c,b,e,h,f);else if("object"===c)throw b=""+a,Error(y(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return d}function D(a,b,e){if(null==a)return a;var l=[],c=0;C(a,l,"","",function(a){return b.call(e,a,c++)});return l}function xa(a){if(-1===
14
+ a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function n(){var a=ja.current;if(null===a)throw Error(y(321));return a}function O(a,b){var e=a.length;a.push(b);a:for(;;){var c=e-1>>>1,f=a[c];if(void 0!==f&&0<E(f,b))a[c]=b,a[e]=f,e=c;else break a}}function p(a){a=a[0];return void 0===a?null:a}function F(a){var b=
15
+ a[0];if(void 0!==b){var e=a.pop();if(e!==b){a[0]=e;a:for(var c=0,f=a.length;c<f;){var d=2*(c+1)-1,g=a[d],k=d+1,h=a[k];if(void 0!==g&&0>E(g,e))void 0!==h&&0>E(h,g)?(a[c]=h,a[k]=e,c=k):(a[c]=g,a[d]=e,c=d);else if(void 0!==h&&0>E(h,e))a[c]=h,a[k]=e,c=k;else break a}}return b}return null}function E(a,b){var e=a.sortIndex-b.sortIndex;return 0!==e?e:a.id-b.id}function P(a){for(var b=p(r);null!==b;){if(null===b.callback)F(r);else if(b.startTime<=a)F(r),b.sortIndex=b.expirationTime,O(q,b);else break;b=p(r)}}
16
+ function Q(a){z=!1;P(a);if(!u)if(null!==p(q))u=!0,A(R);else{var b=p(r);null!==b&&G(Q,b.startTime-a)}}function R(a,b){u=!1;z&&(z=!1,S());H=!0;var e=g;try{P(b);for(m=p(q);null!==m&&(!(m.expirationTime>b)||a&&!T());){var c=m.callback;if("function"===typeof c){m.callback=null;g=m.priorityLevel;var f=c(m.expirationTime<=b);b=t();"function"===typeof f?m.callback=f:m===p(q)&&F(q);P(b)}else F(q);m=p(q)}if(null!==m)var d=!0;else{var n=p(r);null!==n&&G(Q,n.startTime-b);d=!1}return d}finally{m=null,g=e,H=!1}}
17
+ var w=60103,ha=60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ka=60109,la=60110,ma=60112;c.Suspense=60113;var na=60115,oa=60116;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;w=d("react.element");ha=d("react.portal");c.Fragment=d("react.fragment");c.StrictMode=d("react.strict_mode");c.Profiler=d("react.profiler");ka=d("react.provider");la=d("react.context");ma=d("react.forward_ref");c.Suspense=d("react.suspense");na=d("react.memo");oa=d("react.lazy")}var Y="function"===
18
+ typeof Symbol&&Symbol.iterator,ya=Object.prototype.hasOwnProperty,U=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var e=Object(a),c=1;c<arguments.length;c++){var d=arguments[c];if(null!=d){var g=void 0;d=Object(d);for(g in d)ya.call(d,g)&&(e[g]=d[g])}}return e},aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},Z={};v.prototype.isReactComponent=
19
+ {};v.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(y(85));this.updater.enqueueSetState(this,a,b,"setState")};v.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ba.prototype=v.prototype;d=K.prototype=new ba;d.constructor=K;U(d,v.prototype);d.isPureReactComponent=!0;var L={current:null},ea=Object.prototype.hasOwnProperty,fa={key:!0,ref:!0,__self:!0,__source:!0},ia=/\/+/g,ja={current:null},V;if("object"===typeof performance&&
20
+ "function"===typeof performance.now){var za=performance;var t=function(){return za.now()}}else{var pa=Date,Aa=pa.now();t=function(){return pa.now()-Aa}}if("undefined"===typeof window||"function"!==typeof MessageChannel){var B=null,qa=null,ra=function(){if(null!==B)try{var a=t();B(!0,a);B=null}catch(b){throw setTimeout(ra,0),b;}};var A=function(a){null!==B?setTimeout(A,0,a):(B=a,setTimeout(ra,0))};var G=function(a,b){qa=setTimeout(a,b)};var S=function(){clearTimeout(qa)};var T=function(){return!1};
21
+ d=V=function(){}}else{var Ba=window.setTimeout,Ca=window.clearTimeout;"undefined"!==typeof console&&(d=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!==typeof d&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"));
22
+ var I=!1,J=null,W=-1,sa=5,ta=0;T=function(){return t()>=ta};d=function(){};V=function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):sa=0<a?Math.floor(1E3/a):5};var ua=new MessageChannel,X=ua.port2;ua.port1.onmessage=function(){if(null!==J){var a=t();ta=a+sa;try{J(!0,a)?X.postMessage(null):(I=!1,J=null)}catch(b){throw X.postMessage(null),b;}}else I=!1};A=function(a){J=a;I||(I=!0,X.postMessage(null))};G=
23
+ function(a,b){W=Ba(function(){a(t())},b)};S=function(){Ca(W);W=-1}}var q=[],r=[],Da=1,m=null,g=3,H=!1,u=!1,z=!1,Ea=0;d={ReactCurrentDispatcher:ja,ReactCurrentOwner:L,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:{transition:0},assign:U,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=
24
+ 3}var c=g;g=a;try{return b()}finally{g=c}},unstable_next:function(a){switch(g){case 1:case 2:case 3:var b=3;break;default:b=g}var c=g;g=b;try{return a()}finally{g=c}},unstable_scheduleCallback:function(a,b,c){var d=t();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Da++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=
25
+ c,O(r,a),null===p(q)&&a===p(r)&&(z?S():z=!0,G(Q,c-d))):(a.sortIndex=e,O(q,a),u||H||(u=!0,A(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=g;return function(){var c=g;g=b;try{return a.apply(this,arguments)}finally{g=c}}},unstable_getCurrentPriorityLevel:function(){return g},get unstable_shouldYield(){return T},unstable_requestPaint:d,unstable_continueExecution:function(){u||H||(u=!0,A(R))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return p(q)},
26
+ get unstable_now(){return t},get unstable_forceFrameRate(){return V},unstable_Profiling:null},SchedulerTracing:{__proto__:null,__interactionsRef:null,__subscriberRef:null,unstable_clear:function(a){return a()},unstable_getCurrent:function(){return null},unstable_getThreadID:function(){return++Ea},unstable_trace:function(a,b,c){return c()},unstable_wrap:function(a){return a},unstable_subscribe:function(a){},unstable_unsubscribe:function(a){}}};c.Children={map:D,forEach:function(a,b,c){D(a,function(){b.apply(this,
27
+ arguments)},c)},count:function(a){var b=0;D(a,function(){b++});return b},toArray:function(a){return D(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(y(143));return a}};c.Component=v;c.PureComponent=K;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(y(267,a));var d=U({},a.props),e=a.key,g=a.ref,n=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,n=L.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var k=
28
+ a.type.defaultProps;for(h in b)ea.call(b,h)&&!fa.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==k?k[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){k=Array(h);for(var m=0;m<h;m++)k[m]=arguments[m+2];d.children=k}return{$$typeof:w,type:a.type,key:e,ref:g,props:d,_owner:n}};c.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:la,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ka,_context:a};return a.Consumer=
29
+ a};c.createElement=ca;c.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:ma,render:a}};c.isValidElement=M;c.lazy=function(a){return{$$typeof:oa,_payload:{_status:-1,_result:a},_init:xa}};c.memo=function(a,b){return{$$typeof:na,type:a,compare:void 0===b?null:b}};c.useCallback=function(a,b){return n().useCallback(a,b)};c.useContext=function(a,b){return n().useContext(a,b)};c.useDebugValue=function(a,
30
+ b){};c.useEffect=function(a,b){return n().useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return n().useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return n().useLayoutEffect(a,b)};c.useMemo=function(a,b){return n().useMemo(a,b)};c.useReducer=function(a,b,c){return n().useReducer(a,b,c)};c.useRef=function(a){return n().useRef(a)};c.useState=function(a){return n().useState(a)};c.version="17.0.2"});
31
+ })();
@@ -0,0 +1,36 @@
1
+ /** @license React v17.0.2
2
+ * react.profiling.min.js
3
+ *
4
+ * Copyright (c) Facebook, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ (function(){'use strict';(function(f,C){"object"===typeof exports&&"undefined"!==typeof module?C(exports):"function"===typeof define&&define.amd?define(["exports"],C):(f=f||self,C(f.React={}))})(this,function(f){function C(a){if(null===a||"object"!==typeof a)return null;a=da&&a[da]||a["@@iterator"];return"function"===typeof a?a:null}function D(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+
10
+ a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function A(a,b,c){this.props=a;this.context=b;this.refs=ea;this.updater=c||fa}function ha(){}function P(a,b,c){this.props=a;this.context=b;this.refs=ea;this.updater=c||fa}function ia(a,b,c){var e,d={},l=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(l=""+b.key),b)ja.call(b,e)&&!ka.hasOwnProperty(e)&&(d[e]=b[e]);var k=arguments.length-2;if(1===
11
+ k)d.children=c;else if(1<k){for(var f=Array(k),g=0;g<k;g++)f[g]=arguments[g+2];d.children=f}if(a&&a.defaultProps)for(e in k=a.defaultProps,k)void 0===d[e]&&(d[e]=k[e]);return{$$typeof:B,type:a,key:l,ref:h,props:d,_owner:Q.current}}function za(a,b){return{$$typeof:B,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function R(a){return"object"===typeof a&&null!==a&&a.$$typeof===B}function Aa(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function S(a,b){return"object"===
12
+ typeof a&&null!==a&&null!=a.key?Aa(""+a.key):b.toString(36)}function H(a,b,c,e,d){var l=typeof a;if("undefined"===l||"boolean"===l)a=null;var h=!1;if(null===a)h=!0;else switch(l){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case B:case la:h=!0}}if(h)return h=a,d=d(h),a=""===e?"."+S(h,0):e,Array.isArray(d)?(c="",null!=a&&(c=a.replace(ma,"$&/")+"/"),H(d,b,c,"",function(a){return a})):null!=d&&(R(d)&&(d=za(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(ma,"$&/")+"/")+
13
+ a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(Array.isArray(a))for(var f=0;f<a.length;f++){l=a[f];var n=e+S(l,f);h+=H(l,b,c,n,d)}else if(n=C(a),"function"===typeof n)for(a=n.call(a),f=0;!(l=a.next()).done;)l=l.value,n=e+S(l,f++),h+=H(l,b,c,n,d);else if("object"===l)throw b=""+a,Error(D(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function I(a,b,c){if(null==a)return a;var e=[],d=0;H(a,e,"","",function(a){return b.call(c,a,d++)});return e}function Ba(a){if(-1===
14
+ a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function v(){var a=na.current;if(null===a)throw Error(D(321));return a}function T(a,b){var c=a.length;a.push(b);a:for(;;){var e=c-1>>>1,d=a[e];if(void 0!==d&&0<J(d,b))a[e]=b,a[c]=d,c=e;else break a}}function r(a){a=a[0];return void 0===a?null:a}function K(a){var b=
15
+ a[0];if(void 0!==b){var c=a.pop();if(c!==b){a[0]=c;a:for(var e=0,d=a.length;e<d;){var f=2*(e+1)-1,h=a[f],k=f+1,n=a[k];if(void 0!==h&&0>J(h,c))void 0!==n&&0>J(n,h)?(a[e]=n,a[k]=c,e=k):(a[e]=h,a[f]=c,e=f);else if(void 0!==n&&0>J(n,c))a[e]=n,a[k]=c,e=k;else break a}}return b}return null}function J(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function U(a){for(var b=r(w);null!==b;){if(null===b.callback)K(w);else if(b.startTime<=a)K(w),b.sortIndex=b.expirationTime,T(u,b);else break;b=r(w)}}
16
+ function V(a){E=!1;U(a);if(!z)if(null!==r(u))z=!0,F(W);else{var b=r(w);null!==b&&L(V,b.startTime-a)}}function W(a,b){z=!1;E&&(E=!1,X());M=!0;var c=m;try{U(b);for(q=r(u);null!==q&&(!(q.expirationTime>b)||a&&!Y());){var e=q.callback;if("function"===typeof e){q.callback=null;m=q.priorityLevel;var d=e(q.expirationTime<=b);b=x();"function"===typeof d?q.callback=d:q===r(u)&&K(u);U(b)}else K(u);q=r(u)}if(null!==q)var f=!0;else{var h=r(w);null!==h&&L(V,h.startTime-b);f=!1}return f}finally{q=null,m=c,M=!1}}
17
+ function Ca(a){var b=!1,c=null;t.forEach(function(e){try{e.onInteractionTraced(a)}catch(d){b||(b=!0,c=d)}});if(b)throw c;}function Da(a){var b=!1,c=null;t.forEach(function(e){try{e.onInteractionScheduledWorkCompleted(a)}catch(d){b||(b=!0,c=d)}});if(b)throw c;}function Ea(a,b){var c=!1,e=null;t.forEach(function(d){try{d.onWorkScheduled(a,b)}catch(l){c||(c=!0,e=l)}});if(c)throw e;}function Fa(a,b){var c=!1,e=null;t.forEach(function(d){try{d.onWorkStarted(a,b)}catch(l){c||(c=!0,e=l)}});if(c)throw e;
18
+ }function Ga(a,b){var c=!1,e=null;t.forEach(function(d){try{d.onWorkStopped(a,b)}catch(l){c||(c=!0,e=l)}});if(c)throw e;}function Ha(a,b){var c=!1,e=null;t.forEach(function(d){try{d.onWorkCanceled(a,b)}catch(l){c||(c=!0,e=l)}});if(c)throw e;}var B=60103,la=60106;f.Fragment=60107;f.StrictMode=60108;f.Profiler=60114;var oa=60109,pa=60110,qa=60112;f.Suspense=60113;var ra=60115,sa=60116;if("function"===typeof Symbol&&Symbol.for){var g=Symbol.for;B=g("react.element");la=g("react.portal");f.Fragment=g("react.fragment");
19
+ f.StrictMode=g("react.strict_mode");f.Profiler=g("react.profiler");oa=g("react.provider");pa=g("react.context");qa=g("react.forward_ref");f.Suspense=g("react.suspense");ra=g("react.memo");sa=g("react.lazy")}var da="function"===typeof Symbol&&Symbol.iterator,Ia=Object.prototype.hasOwnProperty,Z=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var c=Object(a),e=1;e<arguments.length;e++){var d=arguments[e];if(null!=d){var f=void 0;d=
20
+ Object(d);for(f in d)Ia.call(d,f)&&(c[f]=d[f])}}return c},fa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,e){},enqueueSetState:function(a,b,c,e){}},ea={};A.prototype.isReactComponent={};A.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(D(85));this.updater.enqueueSetState(this,a,b,"setState")};A.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ha.prototype=
21
+ A.prototype;g=P.prototype=new ha;g.constructor=P;Z(g,A.prototype);g.isPureReactComponent=!0;var Q={current:null},ja=Object.prototype.hasOwnProperty,ka={key:!0,ref:!0,__self:!0,__source:!0},ma=/\/+/g,na={current:null},aa;if("object"===typeof performance&&"function"===typeof performance.now){var Ja=performance;var x=function(){return Ja.now()}}else{var ta=Date,Ka=ta.now();x=function(){return ta.now()-Ka}}if("undefined"===typeof window||"function"!==typeof MessageChannel){var G=null,ua=null,va=function(){if(null!==
22
+ G)try{var a=x();G(!0,a);G=null}catch(b){throw setTimeout(va,0),b;}};var F=function(a){null!==G?setTimeout(F,0,a):(G=a,setTimeout(va,0))};var L=function(a,b){ua=setTimeout(a,b)};var X=function(){clearTimeout(ua)};var Y=function(){return!1};g=aa=function(){}}else{var La=window.setTimeout,Ma=window.clearTimeout;"undefined"!==typeof console&&(g=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),
23
+ "function"!==typeof g&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"));var N=!1,O=null,ba=-1,wa=5,xa=0;Y=function(){return x()>=xa};g=function(){};aa=function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):wa=0<a?Math.floor(1E3/a):5};var ya=new MessageChannel,ca=ya.port2;ya.port1.onmessage=
24
+ function(){if(null!==O){var a=x();xa=a+wa;try{O(!0,a)?ca.postMessage(null):(N=!1,O=null)}catch(b){throw ca.postMessage(null),b;}}else N=!1};F=function(a){O=a;N||(N=!0,ca.postMessage(null))};L=function(a,b){ba=La(function(){a(x())},b)};X=function(){Ma(ba);ba=-1}}var u=[],w=[],Na=1,q=null,m=3,M=!1,z=!1,E=!1;g={__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;
25
+ default:a=3}var c=m;m=a;try{return b()}finally{m=c}},unstable_next:function(a){switch(m){case 1:case 2:case 3:var b=3;break;default:b=m}var c=m;m=b;try{return a()}finally{m=c}},unstable_scheduleCallback:function(a,b,c){var e=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?e+c:e):c=e;switch(a){case 1:var d=-1;break;case 2:d=250;break;case 5:d=1073741823;break;case 4:d=1E4;break;default:d=5E3}d=c+d;a={id:Na++,callback:b,priorityLevel:a,startTime:c,expirationTime:d,sortIndex:-1};
26
+ c>e?(a.sortIndex=c,T(w,a),null===r(u)&&a===r(w)&&(E?X():E=!0,L(V,c-e))):(a.sortIndex=d,T(u,a),z||M||(z=!0,F(W)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=m;return function(){var c=m;m=b;try{return a.apply(this,arguments)}finally{m=c}}},unstable_getCurrentPriorityLevel:function(){return m},get unstable_shouldYield(){return Y},unstable_requestPaint:g,unstable_continueExecution:function(){z||M||(z=!0,F(W))},unstable_pauseExecution:function(){},
27
+ unstable_getFirstCallbackNode:function(){return r(u)},get unstable_now(){return x},get unstable_forceFrameRate(){return aa},unstable_Profiling:null};var Oa=0,Pa=0,p=null,y=null;p={current:new Set};y={current:null};var t=null;t=new Set;g={ReactCurrentDispatcher:na,ReactCurrentOwner:Q,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:{transition:0},assign:Z,Scheduler:g,SchedulerTracing:{__proto__:null,get __interactionsRef(){return p},get __subscriberRef(){return y},unstable_clear:function(a){var b=
28
+ p.current;p.current=new Set;try{return a()}finally{p.current=b}},unstable_getCurrent:function(){return p.current},unstable_getThreadID:function(){return++Pa},unstable_trace:function(a,b,c){var e=3<arguments.length&&void 0!==arguments[3]?arguments[3]:0,d={__count:1,id:Oa++,name:a,timestamp:b},f=p.current,h=new Set(f);h.add(d);p.current=h;var k=y.current;try{if(null!==k)k.onInteractionTraced(d)}finally{try{if(null!==k)k.onWorkStarted(h,e)}finally{try{var n=c()}finally{p.current=f;try{if(null!==k)k.onWorkStopped(h,
29
+ e)}finally{if(d.__count--,null!==k&&0===d.__count)k.onInteractionScheduledWorkCompleted(d)}}}}return n},unstable_wrap:function(a){function b(){var b=p.current;p.current=e;d=y.current;try{try{if(null!==d)d.onWorkStarted(e,c)}finally{try{var k=a.apply(void 0,arguments)}finally{if(p.current=b,null!==d)d.onWorkStopped(e,c)}}return k}finally{f||(f=!0,e.forEach(function(a){a.__count--;if(null!==d&&0===a.__count)d.onInteractionScheduledWorkCompleted(a)}))}}var c=1<arguments.length&&void 0!==arguments[1]?
30
+ arguments[1]:0,e=p.current,d=y.current;if(null!==d)d.onWorkScheduled(e,c);e.forEach(function(a){a.__count++});var f=!1;b.cancel=function(){d=y.current;try{if(null!==d)d.onWorkCanceled(e,c)}finally{e.forEach(function(a){a.__count--;if(d&&0===a.__count)d.onInteractionScheduledWorkCompleted(a)})}};return b},unstable_subscribe:function(a){t.add(a);1===t.size&&(y.current={onInteractionScheduledWorkCompleted:Da,onInteractionTraced:Ca,onWorkCanceled:Ha,onWorkScheduled:Ea,onWorkStarted:Fa,onWorkStopped:Ga})},
31
+ unstable_unsubscribe:function(a){t.delete(a);0===t.size&&(y.current=null)}}};f.Children={map:I,forEach:function(a,b,c){I(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;I(a,function(){b++});return b},toArray:function(a){return I(a,function(a){return a})||[]},only:function(a){if(!R(a))throw Error(D(143));return a}};f.Component=A;f.PureComponent=P;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=g;f.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(D(267,a));var e=
32
+ Z({},a.props),d=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=Q.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var k=a.type.defaultProps;for(g in b)ja.call(b,g)&&!ka.hasOwnProperty(g)&&(e[g]=void 0===b[g]&&void 0!==k?k[g]:b[g])}var g=arguments.length-2;if(1===g)e.children=c;else if(1<g){k=Array(g);for(var m=0;m<g;m++)k[m]=arguments[m+2];e.children=k}return{$$typeof:B,type:a.type,key:d,ref:f,props:e,_owner:h}};f.createContext=function(a,b){void 0===b&&(b=null);
33
+ a={$$typeof:pa,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:oa,_context:a};return a.Consumer=a};f.createElement=ia;f.createFactory=function(a){var b=ia.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.forwardRef=function(a){return{$$typeof:qa,render:a}};f.isValidElement=R;f.lazy=function(a){return{$$typeof:sa,_payload:{_status:-1,_result:a},_init:Ba}};f.memo=function(a,b){return{$$typeof:ra,
34
+ type:a,compare:void 0===b?null:b}};f.useCallback=function(a,b){return v().useCallback(a,b)};f.useContext=function(a,b){return v().useContext(a,b)};f.useDebugValue=function(a,b){};f.useEffect=function(a,b){return v().useEffect(a,b)};f.useImperativeHandle=function(a,b,c){return v().useImperativeHandle(a,b,c)};f.useLayoutEffect=function(a,b){return v().useLayoutEffect(a,b)};f.useMemo=function(a,b){return v().useMemo(a,b)};f.useReducer=function(a,b,c){return v().useReducer(a,b,c)};f.useRef=function(a){return v().useRef(a)};
35
+ f.useState=function(a){return v().useState(a)};f.version="17.0.2"});
36
+ })();
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Facebook, Inc. and its affiliates.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,54 @@
1
+ # `react-dom`
2
+
3
+ This package serves as the entry point to the DOM and server renderers for React. It is intended to be paired with the generic React package, which is shipped as `react` to npm.
4
+
5
+ ## Installation
6
+
7
+ ```sh
8
+ npm install react react-dom
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ### In the browser
14
+
15
+ ```js
16
+ var React = require('react');
17
+ var ReactDOM = require('react-dom');
18
+
19
+ class MyComponent extends React.Component {
20
+ render() {
21
+ return <div>Hello World</div>;
22
+ }
23
+ }
24
+
25
+ ReactDOM.render(<MyComponent />, node);
26
+ ```
27
+
28
+ ### On the server
29
+
30
+ ```js
31
+ var React = require('react');
32
+ var ReactDOMServer = require('react-dom/server');
33
+
34
+ class MyComponent extends React.Component {
35
+ render() {
36
+ return <div>Hello World</div>;
37
+ }
38
+ }
39
+
40
+ ReactDOMServer.renderToString(<MyComponent />);
41
+ ```
42
+
43
+ ## API
44
+
45
+ ### `react-dom`
46
+
47
+ - `findDOMNode`
48
+ - `render`
49
+ - `unmountComponentAtNode`
50
+
51
+ ### `react-dom/server`
52
+
53
+ - `renderToString`
54
+ - `renderToStaticMarkup`
@@ -0,0 +1,8 @@
1
+ {
2
+ "branch": "pull/21051",
3
+ "buildNumber": "287151",
4
+ "checksum": "94f5c65",
5
+ "commit": "12adaffef",
6
+ "environment": "ci",
7
+ "reactVersion": "17.0.0-12adaffef"
8
+ }