hdsp-jupyter-extension 2.0.0__py3-none-any.whl

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 (121) hide show
  1. agent_server/__init__.py +8 -0
  2. agent_server/core/__init__.py +92 -0
  3. agent_server/core/api_key_manager.py +427 -0
  4. agent_server/core/code_validator.py +1238 -0
  5. agent_server/core/context_condenser.py +308 -0
  6. agent_server/core/embedding_service.py +254 -0
  7. agent_server/core/error_classifier.py +577 -0
  8. agent_server/core/llm_client.py +95 -0
  9. agent_server/core/llm_service.py +649 -0
  10. agent_server/core/notebook_generator.py +274 -0
  11. agent_server/core/prompt_builder.py +35 -0
  12. agent_server/core/rag_manager.py +742 -0
  13. agent_server/core/reflection_engine.py +489 -0
  14. agent_server/core/retriever.py +248 -0
  15. agent_server/core/state_verifier.py +452 -0
  16. agent_server/core/summary_generator.py +484 -0
  17. agent_server/core/task_manager.py +198 -0
  18. agent_server/knowledge/__init__.py +9 -0
  19. agent_server/knowledge/watchdog_service.py +352 -0
  20. agent_server/main.py +160 -0
  21. agent_server/prompts/__init__.py +60 -0
  22. agent_server/prompts/file_action_prompts.py +113 -0
  23. agent_server/routers/__init__.py +9 -0
  24. agent_server/routers/agent.py +591 -0
  25. agent_server/routers/chat.py +188 -0
  26. agent_server/routers/config.py +100 -0
  27. agent_server/routers/file_resolver.py +293 -0
  28. agent_server/routers/health.py +42 -0
  29. agent_server/routers/rag.py +163 -0
  30. agent_server/schemas/__init__.py +60 -0
  31. hdsp_agent_core/__init__.py +158 -0
  32. hdsp_agent_core/factory.py +252 -0
  33. hdsp_agent_core/interfaces.py +203 -0
  34. hdsp_agent_core/knowledge/__init__.py +31 -0
  35. hdsp_agent_core/knowledge/chunking.py +356 -0
  36. hdsp_agent_core/knowledge/libraries/dask.md +188 -0
  37. hdsp_agent_core/knowledge/libraries/matplotlib.md +164 -0
  38. hdsp_agent_core/knowledge/libraries/polars.md +68 -0
  39. hdsp_agent_core/knowledge/loader.py +337 -0
  40. hdsp_agent_core/llm/__init__.py +13 -0
  41. hdsp_agent_core/llm/service.py +556 -0
  42. hdsp_agent_core/managers/__init__.py +22 -0
  43. hdsp_agent_core/managers/config_manager.py +133 -0
  44. hdsp_agent_core/managers/session_manager.py +251 -0
  45. hdsp_agent_core/models/__init__.py +115 -0
  46. hdsp_agent_core/models/agent.py +316 -0
  47. hdsp_agent_core/models/chat.py +41 -0
  48. hdsp_agent_core/models/common.py +95 -0
  49. hdsp_agent_core/models/rag.py +368 -0
  50. hdsp_agent_core/prompts/__init__.py +63 -0
  51. hdsp_agent_core/prompts/auto_agent_prompts.py +1260 -0
  52. hdsp_agent_core/prompts/cell_action_prompts.py +98 -0
  53. hdsp_agent_core/services/__init__.py +18 -0
  54. hdsp_agent_core/services/agent_service.py +438 -0
  55. hdsp_agent_core/services/chat_service.py +205 -0
  56. hdsp_agent_core/services/rag_service.py +262 -0
  57. hdsp_agent_core/tests/__init__.py +1 -0
  58. hdsp_agent_core/tests/conftest.py +102 -0
  59. hdsp_agent_core/tests/test_factory.py +251 -0
  60. hdsp_agent_core/tests/test_services.py +326 -0
  61. hdsp_jupyter_extension-2.0.0.data/data/etc/jupyter/jupyter_server_config.d/hdsp_jupyter_extension.json +7 -0
  62. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/build_log.json +738 -0
  63. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/install.json +5 -0
  64. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/package.json +134 -0
  65. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.2607ff74c74acfa83158.js +4369 -0
  66. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.2607ff74c74acfa83158.js.map +1 -0
  67. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.622c1a5918b3aafb2315.js +12496 -0
  68. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.622c1a5918b3aafb2315.js.map +1 -0
  69. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js +94 -0
  70. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js.map +1 -0
  71. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js +94 -0
  72. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js.map +1 -0
  73. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.dae97cde171e13b8c834.js +623 -0
  74. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.dae97cde171e13b8c834.js.map +1 -0
  75. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/style.js +4 -0
  76. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js +507 -0
  77. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js.map +1 -0
  78. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js-node_modules-782ee5.d9ed8645ef1d311657d8.js +2071 -0
  79. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js-node_modules-782ee5.d9ed8645ef1d311657d8.js.map +1 -0
  80. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.36b49c71871f98d4f549.js +1059 -0
  81. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.36b49c71871f98d4f549.js.map +1 -0
  82. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js +376 -0
  83. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js.map +1 -0
  84. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js +60336 -0
  85. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js.map +1 -0
  86. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.2e13df4ea61496e95d45.js +7132 -0
  87. hdsp_jupyter_extension-2.0.0.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.2e13df4ea61496e95d45.js.map +1 -0
  88. hdsp_jupyter_extension-2.0.0.dist-info/METADATA +152 -0
  89. hdsp_jupyter_extension-2.0.0.dist-info/RECORD +121 -0
  90. hdsp_jupyter_extension-2.0.0.dist-info/WHEEL +4 -0
  91. hdsp_jupyter_extension-2.0.0.dist-info/licenses/LICENSE +21 -0
  92. jupyter_ext/__init__.py +233 -0
  93. jupyter_ext/_version.py +4 -0
  94. jupyter_ext/config.py +111 -0
  95. jupyter_ext/etc/jupyter/jupyter_server_config.d/hdsp_jupyter_extension.json +7 -0
  96. jupyter_ext/handlers.py +632 -0
  97. jupyter_ext/labextension/build_log.json +738 -0
  98. jupyter_ext/labextension/package.json +134 -0
  99. jupyter_ext/labextension/static/frontend_styles_index_js.2607ff74c74acfa83158.js +4369 -0
  100. jupyter_ext/labextension/static/frontend_styles_index_js.2607ff74c74acfa83158.js.map +1 -0
  101. jupyter_ext/labextension/static/lib_index_js.622c1a5918b3aafb2315.js +12496 -0
  102. jupyter_ext/labextension/static/lib_index_js.622c1a5918b3aafb2315.js.map +1 -0
  103. jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js +94 -0
  104. jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js.map +1 -0
  105. jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js +94 -0
  106. jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js.map +1 -0
  107. jupyter_ext/labextension/static/remoteEntry.dae97cde171e13b8c834.js +623 -0
  108. jupyter_ext/labextension/static/remoteEntry.dae97cde171e13b8c834.js.map +1 -0
  109. jupyter_ext/labextension/static/style.js +4 -0
  110. jupyter_ext/labextension/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js +507 -0
  111. jupyter_ext/labextension/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js.map +1 -0
  112. jupyter_ext/labextension/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js-node_modules-782ee5.d9ed8645ef1d311657d8.js +2071 -0
  113. jupyter_ext/labextension/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js-node_modules-782ee5.d9ed8645ef1d311657d8.js.map +1 -0
  114. jupyter_ext/labextension/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.36b49c71871f98d4f549.js +1059 -0
  115. jupyter_ext/labextension/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.36b49c71871f98d4f549.js.map +1 -0
  116. jupyter_ext/labextension/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js +376 -0
  117. jupyter_ext/labextension/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js.map +1 -0
  118. jupyter_ext/labextension/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js +60336 -0
  119. jupyter_ext/labextension/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js.map +1 -0
  120. jupyter_ext/labextension/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.2e13df4ea61496e95d45.js +7132 -0
  121. jupyter_ext/labextension/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.2e13df4ea61496e95d45.js.map +1 -0
@@ -0,0 +1,2071 @@
1
+ "use strict";
2
+ (self["webpackChunkhdsp_agent"] = self["webpackChunkhdsp_agent"] || []).push([["vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js-node_modules-782ee5"],{
3
+
4
+ /***/ "./node_modules/@emotion/cache/dist/emotion-cache.browser.development.esm.js"
5
+ /*!***********************************************************************************!*\
6
+ !*** ./node_modules/@emotion/cache/dist/emotion-cache.browser.development.esm.js ***!
7
+ \***********************************************************************************/
8
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9
+
10
+ __webpack_require__.r(__webpack_exports__);
11
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12
+ /* harmony export */ "default": () => (/* binding */ createCache)
13
+ /* harmony export */ });
14
+ /* harmony import */ var _emotion_sheet__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @emotion/sheet */ "./node_modules/@emotion/sheet/dist/emotion-sheet.development.esm.js");
15
+ /* harmony import */ var stylis__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! stylis */ "./node_modules/stylis/src/Enum.js");
16
+ /* harmony import */ var stylis__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! stylis */ "./node_modules/stylis/src/Utility.js");
17
+ /* harmony import */ var stylis__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! stylis */ "./node_modules/stylis/src/Parser.js");
18
+ /* harmony import */ var stylis__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! stylis */ "./node_modules/stylis/src/Tokenizer.js");
19
+ /* harmony import */ var stylis__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! stylis */ "./node_modules/stylis/src/Serializer.js");
20
+ /* harmony import */ var stylis__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! stylis */ "./node_modules/stylis/src/Middleware.js");
21
+ /* harmony import */ var _emotion_weak_memoize__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @emotion/weak-memoize */ "./node_modules/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js");
22
+ /* harmony import */ var _emotion_memoize__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @emotion/memoize */ "./node_modules/@emotion/memoize/dist/emotion-memoize.esm.js");
23
+
24
+
25
+
26
+
27
+
28
+ var identifierWithPointTracking = function identifierWithPointTracking(begin, points, index) {
29
+ var previous = 0;
30
+ var character = 0;
31
+
32
+ while (true) {
33
+ previous = character;
34
+ character = (0,stylis__WEBPACK_IMPORTED_MODULE_4__.peek)(); // &\f
35
+
36
+ if (previous === 38 && character === 12) {
37
+ points[index] = 1;
38
+ }
39
+
40
+ if ((0,stylis__WEBPACK_IMPORTED_MODULE_4__.token)(character)) {
41
+ break;
42
+ }
43
+
44
+ (0,stylis__WEBPACK_IMPORTED_MODULE_4__.next)();
45
+ }
46
+
47
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_4__.slice)(begin, stylis__WEBPACK_IMPORTED_MODULE_4__.position);
48
+ };
49
+
50
+ var toRules = function toRules(parsed, points) {
51
+ // pretend we've started with a comma
52
+ var index = -1;
53
+ var character = 44;
54
+
55
+ do {
56
+ switch ((0,stylis__WEBPACK_IMPORTED_MODULE_4__.token)(character)) {
57
+ case 0:
58
+ // &\f
59
+ if (character === 38 && (0,stylis__WEBPACK_IMPORTED_MODULE_4__.peek)() === 12) {
60
+ // this is not 100% correct, we don't account for literal sequences here - like for example quoted strings
61
+ // stylis inserts \f after & to know when & where it should replace this sequence with the context selector
62
+ // and when it should just concatenate the outer and inner selectors
63
+ // it's very unlikely for this sequence to actually appear in a different context, so we just leverage this fact here
64
+ points[index] = 1;
65
+ }
66
+
67
+ parsed[index] += identifierWithPointTracking(stylis__WEBPACK_IMPORTED_MODULE_4__.position - 1, points, index);
68
+ break;
69
+
70
+ case 2:
71
+ parsed[index] += (0,stylis__WEBPACK_IMPORTED_MODULE_4__.delimit)(character);
72
+ break;
73
+
74
+ case 4:
75
+ // comma
76
+ if (character === 44) {
77
+ // colon
78
+ parsed[++index] = (0,stylis__WEBPACK_IMPORTED_MODULE_4__.peek)() === 58 ? '&\f' : '';
79
+ points[index] = parsed[index].length;
80
+ break;
81
+ }
82
+
83
+ // fallthrough
84
+
85
+ default:
86
+ parsed[index] += (0,stylis__WEBPACK_IMPORTED_MODULE_2__.from)(character);
87
+ }
88
+ } while (character = (0,stylis__WEBPACK_IMPORTED_MODULE_4__.next)());
89
+
90
+ return parsed;
91
+ };
92
+
93
+ var getRules = function getRules(value, points) {
94
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_4__.dealloc)(toRules((0,stylis__WEBPACK_IMPORTED_MODULE_4__.alloc)(value), points));
95
+ }; // WeakSet would be more appropriate, but only WeakMap is supported in IE11
96
+
97
+
98
+ var fixedElements = /* #__PURE__ */new WeakMap();
99
+ var compat = function compat(element) {
100
+ if (element.type !== 'rule' || !element.parent || // positive .length indicates that this rule contains pseudo
101
+ // negative .length indicates that this rule has been already prefixed
102
+ element.length < 1) {
103
+ return;
104
+ }
105
+
106
+ var value = element.value;
107
+ var parent = element.parent;
108
+ var isImplicitRule = element.column === parent.column && element.line === parent.line;
109
+
110
+ while (parent.type !== 'rule') {
111
+ parent = parent.parent;
112
+ if (!parent) return;
113
+ } // short-circuit for the simplest case
114
+
115
+
116
+ if (element.props.length === 1 && value.charCodeAt(0) !== 58
117
+ /* colon */
118
+ && !fixedElements.get(parent)) {
119
+ return;
120
+ } // if this is an implicitly inserted rule (the one eagerly inserted at the each new nested level)
121
+ // then the props has already been manipulated beforehand as they that array is shared between it and its "rule parent"
122
+
123
+
124
+ if (isImplicitRule) {
125
+ return;
126
+ }
127
+
128
+ fixedElements.set(element, true);
129
+ var points = [];
130
+ var rules = getRules(value, points);
131
+ var parentRules = parent.props;
132
+
133
+ for (var i = 0, k = 0; i < rules.length; i++) {
134
+ for (var j = 0; j < parentRules.length; j++, k++) {
135
+ element.props[k] = points[i] ? rules[i].replace(/&\f/g, parentRules[j]) : parentRules[j] + " " + rules[i];
136
+ }
137
+ }
138
+ };
139
+ var removeLabel = function removeLabel(element) {
140
+ if (element.type === 'decl') {
141
+ var value = element.value;
142
+
143
+ if ( // charcode for l
144
+ value.charCodeAt(0) === 108 && // charcode for b
145
+ value.charCodeAt(2) === 98) {
146
+ // this ignores label
147
+ element["return"] = '';
148
+ element.value = '';
149
+ }
150
+ }
151
+ };
152
+ var ignoreFlag = 'emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason';
153
+
154
+ var isIgnoringComment = function isIgnoringComment(element) {
155
+ return element.type === 'comm' && element.children.indexOf(ignoreFlag) > -1;
156
+ };
157
+
158
+ var createUnsafeSelectorsAlarm = function createUnsafeSelectorsAlarm(cache) {
159
+ return function (element, index, children) {
160
+ if (element.type !== 'rule' || cache.compat) return;
161
+ var unsafePseudoClasses = element.value.match(/(:first|:nth|:nth-last)-child/g);
162
+
163
+ if (unsafePseudoClasses) {
164
+ var isNested = !!element.parent; // in nested rules comments become children of the "auto-inserted" rule and that's always the `element.parent`
165
+ //
166
+ // considering this input:
167
+ // .a {
168
+ // .b /* comm */ {}
169
+ // color: hotpink;
170
+ // }
171
+ // we get output corresponding to this:
172
+ // .a {
173
+ // & {
174
+ // /* comm */
175
+ // color: hotpink;
176
+ // }
177
+ // .b {}
178
+ // }
179
+
180
+ var commentContainer = isNested ? element.parent.children : // global rule at the root level
181
+ children;
182
+
183
+ for (var i = commentContainer.length - 1; i >= 0; i--) {
184
+ var node = commentContainer[i];
185
+
186
+ if (node.line < element.line) {
187
+ break;
188
+ } // it is quite weird but comments are *usually* put at `column: element.column - 1`
189
+ // so we seek *from the end* for the node that is earlier than the rule's `element` and check that
190
+ // this will also match inputs like this:
191
+ // .a {
192
+ // /* comm */
193
+ // .b {}
194
+ // }
195
+ //
196
+ // but that is fine
197
+ //
198
+ // it would be the easiest to change the placement of the comment to be the first child of the rule:
199
+ // .a {
200
+ // .b { /* comm */ }
201
+ // }
202
+ // with such inputs we wouldn't have to search for the comment at all
203
+ // TODO: consider changing this comment placement in the next major version
204
+
205
+
206
+ if (node.column < element.column) {
207
+ if (isIgnoringComment(node)) {
208
+ return;
209
+ }
210
+
211
+ break;
212
+ }
213
+ }
214
+
215
+ unsafePseudoClasses.forEach(function (unsafePseudoClass) {
216
+ console.error("The pseudo class \"" + unsafePseudoClass + "\" is potentially unsafe when doing server-side rendering. Try changing it to \"" + unsafePseudoClass.split('-child')[0] + "-of-type\".");
217
+ });
218
+ }
219
+ };
220
+ };
221
+
222
+ var isImportRule = function isImportRule(element) {
223
+ return element.type.charCodeAt(1) === 105 && element.type.charCodeAt(0) === 64;
224
+ };
225
+
226
+ var isPrependedWithRegularRules = function isPrependedWithRegularRules(index, children) {
227
+ for (var i = index - 1; i >= 0; i--) {
228
+ if (!isImportRule(children[i])) {
229
+ return true;
230
+ }
231
+ }
232
+
233
+ return false;
234
+ }; // use this to remove incorrect elements from further processing
235
+ // so they don't get handed to the `sheet` (or anything else)
236
+ // as that could potentially lead to additional logs which in turn could be overhelming to the user
237
+
238
+
239
+ var nullifyElement = function nullifyElement(element) {
240
+ element.type = '';
241
+ element.value = '';
242
+ element["return"] = '';
243
+ element.children = '';
244
+ element.props = '';
245
+ };
246
+
247
+ var incorrectImportAlarm = function incorrectImportAlarm(element, index, children) {
248
+ if (!isImportRule(element)) {
249
+ return;
250
+ }
251
+
252
+ if (element.parent) {
253
+ console.error("`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.");
254
+ nullifyElement(element);
255
+ } else if (isPrependedWithRegularRules(index, children)) {
256
+ console.error("`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.");
257
+ nullifyElement(element);
258
+ }
259
+ };
260
+
261
+ /* eslint-disable no-fallthrough */
262
+
263
+ function prefix(value, length) {
264
+ switch ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.hash)(value, length)) {
265
+ // color-adjust
266
+ case 5103:
267
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + 'print-' + value + value;
268
+ // animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)
269
+
270
+ case 5737:
271
+ case 4201:
272
+ case 3177:
273
+ case 3433:
274
+ case 1641:
275
+ case 4457:
276
+ case 2921: // text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break
277
+
278
+ case 5572:
279
+ case 6356:
280
+ case 5844:
281
+ case 3191:
282
+ case 6645:
283
+ case 3005: // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,
284
+
285
+ case 6391:
286
+ case 5879:
287
+ case 5623:
288
+ case 6135:
289
+ case 4599:
290
+ case 4855: // background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)
291
+
292
+ case 4215:
293
+ case 6389:
294
+ case 5109:
295
+ case 5365:
296
+ case 5621:
297
+ case 3829:
298
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + value;
299
+ // appearance, user-select, transform, hyphens, text-size-adjust
300
+
301
+ case 5349:
302
+ case 4246:
303
+ case 4810:
304
+ case 6968:
305
+ case 2756:
306
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MOZ + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + value + value;
307
+ // flex, flex-direction
308
+
309
+ case 6828:
310
+ case 4268:
311
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + value + value;
312
+ // order
313
+
314
+ case 6165:
315
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + 'flex-' + value + value;
316
+ // align-items
317
+
318
+ case 5187:
319
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(\w+).+(:[^]+)/, stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + 'box-$1$2' + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + 'flex-$1$2') + value;
320
+ // align-self
321
+
322
+ case 5443:
323
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + 'flex-item-' + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /flex-|-self/, '') + value;
324
+ // align-content
325
+
326
+ case 4675:
327
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + 'flex-line-pack' + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /align-content|flex-|-self/, '') + value;
328
+ // flex-shrink
329
+
330
+ case 5548:
331
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, 'shrink', 'negative') + value;
332
+ // flex-basis
333
+
334
+ case 5292:
335
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, 'basis', 'preferred-size') + value;
336
+ // flex-grow
337
+
338
+ case 6060:
339
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + 'box-' + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, '-grow', '') + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, 'grow', 'positive') + value;
340
+ // transition
341
+
342
+ case 4554:
343
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /([^-])(transform)/g, '$1' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$2') + value;
344
+ // cursor
345
+
346
+ case 6187:
347
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)((0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)((0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(zoom-|grab)/, stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$1'), /(image-set)/, stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$1'), value, '') + value;
348
+ // background, background-image
349
+
350
+ case 5495:
351
+ case 3959:
352
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(image-set\([^]*)/, stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$1' + '$`$1');
353
+ // justify-content
354
+
355
+ case 4968:
356
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)((0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(.+:)(flex-)?(.*)/, stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + 'box-pack:$3' + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + 'flex-pack:$3'), /s.+-b[^;]+/, 'justify') + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + value;
357
+ // (margin|padding)-inline-(start|end)
358
+
359
+ case 4095:
360
+ case 3583:
361
+ case 4068:
362
+ case 2532:
363
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(.+)-inline(.+)/, stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$1$2') + value;
364
+ // (min|max)?(width|height|inline-size|block-size)
365
+
366
+ case 8116:
367
+ case 7059:
368
+ case 5753:
369
+ case 5535:
370
+ case 5445:
371
+ case 5701:
372
+ case 4933:
373
+ case 4677:
374
+ case 5533:
375
+ case 5789:
376
+ case 5021:
377
+ case 4765:
378
+ // stretch, max-content, min-content, fill-available
379
+ if ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.strlen)(value) - 1 - length > 6) switch ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, length + 1)) {
380
+ // (m)ax-content, (m)in-content
381
+ case 109:
382
+ // -
383
+ if ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, length + 4) !== 45) break;
384
+ // (f)ill-available, (f)it-content
385
+
386
+ case 102:
387
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(.+:)(.+)-([^]+)/, '$1' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$2-$3' + '$1' + stylis__WEBPACK_IMPORTED_MODULE_1__.MOZ + ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, length + 3) == 108 ? '$3' : '$2-$3')) + value;
388
+ // (s)tretch
389
+
390
+ case 115:
391
+ return ~(0,stylis__WEBPACK_IMPORTED_MODULE_2__.indexof)(value, 'stretch') ? prefix((0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, 'stretch', 'fill-available'), length) + value : value;
392
+ }
393
+ break;
394
+ // position: sticky
395
+
396
+ case 4949:
397
+ // (s)ticky?
398
+ if ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, length + 1) !== 115) break;
399
+ // display: (flex|inline-flex)
400
+
401
+ case 6444:
402
+ switch ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, (0,stylis__WEBPACK_IMPORTED_MODULE_2__.strlen)(value) - 3 - (~(0,stylis__WEBPACK_IMPORTED_MODULE_2__.indexof)(value, '!important') && 10))) {
403
+ // stic(k)y
404
+ case 107:
405
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, ':', ':' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT) + value;
406
+ // (inline-)?fl(e)x
407
+
408
+ case 101:
409
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /(.+:)([^;!]+)(;|!.+)?/, '$1' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, 14) === 45 ? 'inline-' : '') + 'box$3' + '$1' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + '$2$3' + '$1' + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + '$2box$3') + value;
410
+ }
411
+
412
+ break;
413
+ // writing-mode
414
+
415
+ case 5936:
416
+ switch ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.charat)(value, length + 11)) {
417
+ // vertical-l(r)
418
+ case 114:
419
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /[svh]\w+-[tblr]{2}/, 'tb') + value;
420
+ // vertical-r(l)
421
+
422
+ case 108:
423
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /[svh]\w+-[tblr]{2}/, 'tb-rl') + value;
424
+ // horizontal(-)tb
425
+
426
+ case 45:
427
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /[svh]\w+-[tblr]{2}/, 'lr') + value;
428
+ }
429
+
430
+ return stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + value + stylis__WEBPACK_IMPORTED_MODULE_1__.MS + value + value;
431
+ }
432
+
433
+ return value;
434
+ }
435
+
436
+ var prefixer = function prefixer(element, index, children, callback) {
437
+ if (element.length > -1) if (!element["return"]) switch (element.type) {
438
+ case stylis__WEBPACK_IMPORTED_MODULE_1__.DECLARATION:
439
+ element["return"] = prefix(element.value, element.length);
440
+ break;
441
+
442
+ case stylis__WEBPACK_IMPORTED_MODULE_1__.KEYFRAMES:
443
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_5__.serialize)([(0,stylis__WEBPACK_IMPORTED_MODULE_4__.copy)(element, {
444
+ value: (0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(element.value, '@', '@' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT)
445
+ })], callback);
446
+
447
+ case stylis__WEBPACK_IMPORTED_MODULE_1__.RULESET:
448
+ if (element.length) return (0,stylis__WEBPACK_IMPORTED_MODULE_2__.combine)(element.props, function (value) {
449
+ switch ((0,stylis__WEBPACK_IMPORTED_MODULE_2__.match)(value, /(::plac\w+|:read-\w+)/)) {
450
+ // :read-(only|write)
451
+ case ':read-only':
452
+ case ':read-write':
453
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_5__.serialize)([(0,stylis__WEBPACK_IMPORTED_MODULE_4__.copy)(element, {
454
+ props: [(0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /:(read-\w+)/, ':' + stylis__WEBPACK_IMPORTED_MODULE_1__.MOZ + '$1')]
455
+ })], callback);
456
+ // :placeholder
457
+
458
+ case '::placeholder':
459
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_5__.serialize)([(0,stylis__WEBPACK_IMPORTED_MODULE_4__.copy)(element, {
460
+ props: [(0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /:(plac\w+)/, ':' + stylis__WEBPACK_IMPORTED_MODULE_1__.WEBKIT + 'input-$1')]
461
+ }), (0,stylis__WEBPACK_IMPORTED_MODULE_4__.copy)(element, {
462
+ props: [(0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /:(plac\w+)/, ':' + stylis__WEBPACK_IMPORTED_MODULE_1__.MOZ + '$1')]
463
+ }), (0,stylis__WEBPACK_IMPORTED_MODULE_4__.copy)(element, {
464
+ props: [(0,stylis__WEBPACK_IMPORTED_MODULE_2__.replace)(value, /:(plac\w+)/, stylis__WEBPACK_IMPORTED_MODULE_1__.MS + 'input-$1')]
465
+ })], callback);
466
+ }
467
+
468
+ return '';
469
+ });
470
+ }
471
+ };
472
+
473
+ var defaultStylisPlugins = [prefixer];
474
+ var getSourceMap;
475
+
476
+ {
477
+ var sourceMapPattern = /\/\*#\ssourceMappingURL=data:application\/json;\S+\s+\*\//g;
478
+
479
+ getSourceMap = function getSourceMap(styles) {
480
+ var matches = styles.match(sourceMapPattern);
481
+ if (!matches) return;
482
+ return matches[matches.length - 1];
483
+ };
484
+ }
485
+
486
+ var createCache = function createCache(options) {
487
+ var key = options.key;
488
+
489
+ if (!key) {
490
+ throw new Error("You have to configure `key` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\n" + "If multiple caches share the same key they might \"fight\" for each other's style elements.");
491
+ }
492
+
493
+ if (key === 'css') {
494
+ var ssrStyles = document.querySelectorAll("style[data-emotion]:not([data-s])"); // get SSRed styles out of the way of React's hydration
495
+ // document.head is a safe place to move them to(though note document.head is not necessarily the last place they will be)
496
+ // note this very very intentionally targets all style elements regardless of the key to ensure
497
+ // that creating a cache works inside of render of a React component
498
+
499
+ Array.prototype.forEach.call(ssrStyles, function (node) {
500
+ // we want to only move elements which have a space in the data-emotion attribute value
501
+ // because that indicates that it is an Emotion 11 server-side rendered style elements
502
+ // while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector
503
+ // Emotion 10 client-side inserted styles did not have data-s (but importantly did not have a space in their data-emotion attributes)
504
+ // so checking for the space ensures that loading Emotion 11 after Emotion 10 has inserted some styles
505
+ // will not result in the Emotion 10 styles being destroyed
506
+ var dataEmotionAttribute = node.getAttribute('data-emotion');
507
+
508
+ if (dataEmotionAttribute.indexOf(' ') === -1) {
509
+ return;
510
+ }
511
+
512
+ document.head.appendChild(node);
513
+ node.setAttribute('data-s', '');
514
+ });
515
+ }
516
+
517
+ var stylisPlugins = options.stylisPlugins || defaultStylisPlugins;
518
+
519
+ {
520
+ if (/[^a-z-]/.test(key)) {
521
+ throw new Error("Emotion key must only contain lower case alphabetical characters and - but \"" + key + "\" was passed");
522
+ }
523
+ }
524
+
525
+ var inserted = {};
526
+ var container;
527
+ var nodesToHydrate = [];
528
+
529
+ {
530
+ container = options.container || document.head;
531
+ Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which
532
+ // means that the style elements we're looking at are only Emotion 11 server-rendered style elements
533
+ document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node) {
534
+ var attrib = node.getAttribute("data-emotion").split(' ');
535
+
536
+ for (var i = 1; i < attrib.length; i++) {
537
+ inserted[attrib[i]] = true;
538
+ }
539
+
540
+ nodesToHydrate.push(node);
541
+ });
542
+ }
543
+
544
+ var _insert;
545
+
546
+ var omnipresentPlugins = [compat, removeLabel];
547
+
548
+ {
549
+ omnipresentPlugins.push(createUnsafeSelectorsAlarm({
550
+ get compat() {
551
+ return cache.compat;
552
+ }
553
+
554
+ }), incorrectImportAlarm);
555
+ }
556
+
557
+ {
558
+ var currentSheet;
559
+ var finalizingPlugins = [stylis__WEBPACK_IMPORTED_MODULE_5__.stringify, function (element) {
560
+ if (!element.root) {
561
+ if (element["return"]) {
562
+ currentSheet.insert(element["return"]);
563
+ } else if (element.value && element.type !== stylis__WEBPACK_IMPORTED_MODULE_1__.COMMENT) {
564
+ // insert empty rule in non-production environments
565
+ // so @emotion/jest can grab `key` from the (JS)DOM for caches without any rules inserted yet
566
+ currentSheet.insert(element.value + "{}");
567
+ }
568
+ }
569
+ } ];
570
+ var serializer = (0,stylis__WEBPACK_IMPORTED_MODULE_6__.middleware)(omnipresentPlugins.concat(stylisPlugins, finalizingPlugins));
571
+
572
+ var stylis = function stylis(styles) {
573
+ return (0,stylis__WEBPACK_IMPORTED_MODULE_5__.serialize)((0,stylis__WEBPACK_IMPORTED_MODULE_3__.compile)(styles), serializer);
574
+ };
575
+
576
+ _insert = function insert(selector, serialized, sheet, shouldCache) {
577
+ currentSheet = sheet;
578
+
579
+ if (getSourceMap) {
580
+ var sourceMap = getSourceMap(serialized.styles);
581
+
582
+ if (sourceMap) {
583
+ currentSheet = {
584
+ insert: function insert(rule) {
585
+ sheet.insert(rule + sourceMap);
586
+ }
587
+ };
588
+ }
589
+ }
590
+
591
+ stylis(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
592
+
593
+ if (shouldCache) {
594
+ cache.inserted[serialized.name] = true;
595
+ }
596
+ };
597
+ }
598
+
599
+ var cache = {
600
+ key: key,
601
+ sheet: new _emotion_sheet__WEBPACK_IMPORTED_MODULE_0__.StyleSheet({
602
+ key: key,
603
+ container: container,
604
+ nonce: options.nonce,
605
+ speedy: options.speedy,
606
+ prepend: options.prepend,
607
+ insertionPoint: options.insertionPoint
608
+ }),
609
+ nonce: options.nonce,
610
+ inserted: inserted,
611
+ registered: {},
612
+ insert: _insert
613
+ };
614
+ cache.sheet.hydrate(nodesToHydrate);
615
+ return cache;
616
+ };
617
+
618
+
619
+
620
+
621
+ /***/ },
622
+
623
+ /***/ "./node_modules/@emotion/sheet/dist/emotion-sheet.development.esm.js"
624
+ /*!***************************************************************************!*\
625
+ !*** ./node_modules/@emotion/sheet/dist/emotion-sheet.development.esm.js ***!
626
+ \***************************************************************************/
627
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
628
+
629
+ __webpack_require__.r(__webpack_exports__);
630
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
631
+ /* harmony export */ StyleSheet: () => (/* binding */ StyleSheet)
632
+ /* harmony export */ });
633
+ var isDevelopment = true;
634
+
635
+ /*
636
+
637
+ Based off glamor's StyleSheet, thanks Sunil ❤️
638
+
639
+ high performance StyleSheet for css-in-js systems
640
+
641
+ - uses multiple style tags behind the scenes for millions of rules
642
+ - uses `insertRule` for appending in production for *much* faster performance
643
+
644
+ // usage
645
+
646
+ import { StyleSheet } from '@emotion/sheet'
647
+
648
+ let styleSheet = new StyleSheet({ key: '', container: document.head })
649
+
650
+ styleSheet.insert('#box { border: 1px solid red; }')
651
+ - appends a css rule into the stylesheet
652
+
653
+ styleSheet.flush()
654
+ - empties the stylesheet of all its contents
655
+
656
+ */
657
+
658
+ function sheetForTag(tag) {
659
+ if (tag.sheet) {
660
+ return tag.sheet;
661
+ } // this weirdness brought to you by firefox
662
+
663
+ /* istanbul ignore next */
664
+
665
+
666
+ for (var i = 0; i < document.styleSheets.length; i++) {
667
+ if (document.styleSheets[i].ownerNode === tag) {
668
+ return document.styleSheets[i];
669
+ }
670
+ } // this function should always return with a value
671
+ // TS can't understand it though so we make it stop complaining here
672
+
673
+
674
+ return undefined;
675
+ }
676
+
677
+ function createStyleElement(options) {
678
+ var tag = document.createElement('style');
679
+ tag.setAttribute('data-emotion', options.key);
680
+
681
+ if (options.nonce !== undefined) {
682
+ tag.setAttribute('nonce', options.nonce);
683
+ }
684
+
685
+ tag.appendChild(document.createTextNode(''));
686
+ tag.setAttribute('data-s', '');
687
+ return tag;
688
+ }
689
+
690
+ var StyleSheet = /*#__PURE__*/function () {
691
+ // Using Node instead of HTMLElement since container may be a ShadowRoot
692
+ function StyleSheet(options) {
693
+ var _this = this;
694
+
695
+ this._insertTag = function (tag) {
696
+ var before;
697
+
698
+ if (_this.tags.length === 0) {
699
+ if (_this.insertionPoint) {
700
+ before = _this.insertionPoint.nextSibling;
701
+ } else if (_this.prepend) {
702
+ before = _this.container.firstChild;
703
+ } else {
704
+ before = _this.before;
705
+ }
706
+ } else {
707
+ before = _this.tags[_this.tags.length - 1].nextSibling;
708
+ }
709
+
710
+ _this.container.insertBefore(tag, before);
711
+
712
+ _this.tags.push(tag);
713
+ };
714
+
715
+ this.isSpeedy = options.speedy === undefined ? !isDevelopment : options.speedy;
716
+ this.tags = [];
717
+ this.ctr = 0;
718
+ this.nonce = options.nonce; // key is the value of the data-emotion attribute, it's used to identify different sheets
719
+
720
+ this.key = options.key;
721
+ this.container = options.container;
722
+ this.prepend = options.prepend;
723
+ this.insertionPoint = options.insertionPoint;
724
+ this.before = null;
725
+ }
726
+
727
+ var _proto = StyleSheet.prototype;
728
+
729
+ _proto.hydrate = function hydrate(nodes) {
730
+ nodes.forEach(this._insertTag);
731
+ };
732
+
733
+ _proto.insert = function insert(rule) {
734
+ // the max length is how many rules we have per style tag, it's 65000 in speedy mode
735
+ // it's 1 in dev because we insert source maps that map a single rule to a location
736
+ // and you can only have one source map per style tag
737
+ if (this.ctr % (this.isSpeedy ? 65000 : 1) === 0) {
738
+ this._insertTag(createStyleElement(this));
739
+ }
740
+
741
+ var tag = this.tags[this.tags.length - 1];
742
+
743
+ {
744
+ var isImportRule = rule.charCodeAt(0) === 64 && rule.charCodeAt(1) === 105;
745
+
746
+ if (isImportRule && this._alreadyInsertedOrderInsensitiveRule) {
747
+ // this would only cause problem in speedy mode
748
+ // but we don't want enabling speedy to affect the observable behavior
749
+ // so we report this error at all times
750
+ console.error("You're attempting to insert the following rule:\n" + rule + '\n\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules.');
751
+ }
752
+
753
+ this._alreadyInsertedOrderInsensitiveRule = this._alreadyInsertedOrderInsensitiveRule || !isImportRule;
754
+ }
755
+
756
+ if (this.isSpeedy) {
757
+ var sheet = sheetForTag(tag);
758
+
759
+ try {
760
+ // this is the ultrafast version, works across browsers
761
+ // the big drawback is that the css won't be editable in devtools
762
+ sheet.insertRule(rule, sheet.cssRules.length);
763
+ } catch (e) {
764
+ if (!/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(rule)) {
765
+ console.error("There was a problem inserting the following rule: \"" + rule + "\"", e);
766
+ }
767
+ }
768
+ } else {
769
+ tag.appendChild(document.createTextNode(rule));
770
+ }
771
+
772
+ this.ctr++;
773
+ };
774
+
775
+ _proto.flush = function flush() {
776
+ this.tags.forEach(function (tag) {
777
+ var _tag$parentNode;
778
+
779
+ return (_tag$parentNode = tag.parentNode) == null ? void 0 : _tag$parentNode.removeChild(tag);
780
+ });
781
+ this.tags = [];
782
+ this.ctr = 0;
783
+
784
+ {
785
+ this._alreadyInsertedOrderInsensitiveRule = false;
786
+ }
787
+ };
788
+
789
+ return StyleSheet;
790
+ }();
791
+
792
+
793
+
794
+
795
+ /***/ },
796
+
797
+ /***/ "./node_modules/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js"
798
+ /*!*****************************************************************************!*\
799
+ !*** ./node_modules/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js ***!
800
+ \*****************************************************************************/
801
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
802
+
803
+ __webpack_require__.r(__webpack_exports__);
804
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
805
+ /* harmony export */ "default": () => (/* binding */ weakMemoize)
806
+ /* harmony export */ });
807
+ var weakMemoize = function weakMemoize(func) {
808
+ var cache = new WeakMap();
809
+ return function (arg) {
810
+ if (cache.has(arg)) {
811
+ // Use non-null assertion because we just checked that the cache `has` it
812
+ // This allows us to remove `undefined` from the return value
813
+ return cache.get(arg);
814
+ }
815
+
816
+ var ret = func(arg);
817
+ cache.set(arg, ret);
818
+ return ret;
819
+ };
820
+ };
821
+
822
+
823
+
824
+
825
+ /***/ },
826
+
827
+ /***/ "./node_modules/react-is/cjs/react-is.development.js"
828
+ /*!***********************************************************!*\
829
+ !*** ./node_modules/react-is/cjs/react-is.development.js ***!
830
+ \***********************************************************/
831
+ (__unused_webpack_module, exports) {
832
+
833
+ /** @license React v16.13.1
834
+ * react-is.development.js
835
+ *
836
+ * Copyright (c) Facebook, Inc. and its affiliates.
837
+ *
838
+ * This source code is licensed under the MIT license found in the
839
+ * LICENSE file in the root directory of this source tree.
840
+ */
841
+
842
+
843
+
844
+
845
+
846
+ if (true) {
847
+ (function() {
848
+ 'use strict';
849
+
850
+ // The Symbol used to tag the ReactElement-like types. If there is no native Symbol
851
+ // nor polyfill, then a plain number is used for performance.
852
+ var hasSymbol = typeof Symbol === 'function' && Symbol.for;
853
+ var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
854
+ var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
855
+ var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
856
+ var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
857
+ var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
858
+ var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
859
+ var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
860
+ // (unstable) APIs that have been removed. Can we remove the symbols?
861
+
862
+ var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
863
+ var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
864
+ var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
865
+ var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
866
+ var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
867
+ var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
868
+ var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
869
+ var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
870
+ var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
871
+ var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
872
+ var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
873
+
874
+ function isValidElementType(type) {
875
+ return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
876
+ type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
877
+ }
878
+
879
+ function typeOf(object) {
880
+ if (typeof object === 'object' && object !== null) {
881
+ var $$typeof = object.$$typeof;
882
+
883
+ switch ($$typeof) {
884
+ case REACT_ELEMENT_TYPE:
885
+ var type = object.type;
886
+
887
+ switch (type) {
888
+ case REACT_ASYNC_MODE_TYPE:
889
+ case REACT_CONCURRENT_MODE_TYPE:
890
+ case REACT_FRAGMENT_TYPE:
891
+ case REACT_PROFILER_TYPE:
892
+ case REACT_STRICT_MODE_TYPE:
893
+ case REACT_SUSPENSE_TYPE:
894
+ return type;
895
+
896
+ default:
897
+ var $$typeofType = type && type.$$typeof;
898
+
899
+ switch ($$typeofType) {
900
+ case REACT_CONTEXT_TYPE:
901
+ case REACT_FORWARD_REF_TYPE:
902
+ case REACT_LAZY_TYPE:
903
+ case REACT_MEMO_TYPE:
904
+ case REACT_PROVIDER_TYPE:
905
+ return $$typeofType;
906
+
907
+ default:
908
+ return $$typeof;
909
+ }
910
+
911
+ }
912
+
913
+ case REACT_PORTAL_TYPE:
914
+ return $$typeof;
915
+ }
916
+ }
917
+
918
+ return undefined;
919
+ } // AsyncMode is deprecated along with isAsyncMode
920
+
921
+ var AsyncMode = REACT_ASYNC_MODE_TYPE;
922
+ var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
923
+ var ContextConsumer = REACT_CONTEXT_TYPE;
924
+ var ContextProvider = REACT_PROVIDER_TYPE;
925
+ var Element = REACT_ELEMENT_TYPE;
926
+ var ForwardRef = REACT_FORWARD_REF_TYPE;
927
+ var Fragment = REACT_FRAGMENT_TYPE;
928
+ var Lazy = REACT_LAZY_TYPE;
929
+ var Memo = REACT_MEMO_TYPE;
930
+ var Portal = REACT_PORTAL_TYPE;
931
+ var Profiler = REACT_PROFILER_TYPE;
932
+ var StrictMode = REACT_STRICT_MODE_TYPE;
933
+ var Suspense = REACT_SUSPENSE_TYPE;
934
+ var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated
935
+
936
+ function isAsyncMode(object) {
937
+ {
938
+ if (!hasWarnedAboutDeprecatedIsAsyncMode) {
939
+ hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
940
+
941
+ console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');
942
+ }
943
+ }
944
+
945
+ return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
946
+ }
947
+ function isConcurrentMode(object) {
948
+ return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
949
+ }
950
+ function isContextConsumer(object) {
951
+ return typeOf(object) === REACT_CONTEXT_TYPE;
952
+ }
953
+ function isContextProvider(object) {
954
+ return typeOf(object) === REACT_PROVIDER_TYPE;
955
+ }
956
+ function isElement(object) {
957
+ return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
958
+ }
959
+ function isForwardRef(object) {
960
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
961
+ }
962
+ function isFragment(object) {
963
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
964
+ }
965
+ function isLazy(object) {
966
+ return typeOf(object) === REACT_LAZY_TYPE;
967
+ }
968
+ function isMemo(object) {
969
+ return typeOf(object) === REACT_MEMO_TYPE;
970
+ }
971
+ function isPortal(object) {
972
+ return typeOf(object) === REACT_PORTAL_TYPE;
973
+ }
974
+ function isProfiler(object) {
975
+ return typeOf(object) === REACT_PROFILER_TYPE;
976
+ }
977
+ function isStrictMode(object) {
978
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
979
+ }
980
+ function isSuspense(object) {
981
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
982
+ }
983
+
984
+ exports.AsyncMode = AsyncMode;
985
+ exports.ConcurrentMode = ConcurrentMode;
986
+ exports.ContextConsumer = ContextConsumer;
987
+ exports.ContextProvider = ContextProvider;
988
+ exports.Element = Element;
989
+ exports.ForwardRef = ForwardRef;
990
+ exports.Fragment = Fragment;
991
+ exports.Lazy = Lazy;
992
+ exports.Memo = Memo;
993
+ exports.Portal = Portal;
994
+ exports.Profiler = Profiler;
995
+ exports.StrictMode = StrictMode;
996
+ exports.Suspense = Suspense;
997
+ exports.isAsyncMode = isAsyncMode;
998
+ exports.isConcurrentMode = isConcurrentMode;
999
+ exports.isContextConsumer = isContextConsumer;
1000
+ exports.isContextProvider = isContextProvider;
1001
+ exports.isElement = isElement;
1002
+ exports.isForwardRef = isForwardRef;
1003
+ exports.isFragment = isFragment;
1004
+ exports.isLazy = isLazy;
1005
+ exports.isMemo = isMemo;
1006
+ exports.isPortal = isPortal;
1007
+ exports.isProfiler = isProfiler;
1008
+ exports.isStrictMode = isStrictMode;
1009
+ exports.isSuspense = isSuspense;
1010
+ exports.isValidElementType = isValidElementType;
1011
+ exports.typeOf = typeOf;
1012
+ })();
1013
+ }
1014
+
1015
+
1016
+ /***/ },
1017
+
1018
+ /***/ "./node_modules/react-is/index.js"
1019
+ /*!****************************************!*\
1020
+ !*** ./node_modules/react-is/index.js ***!
1021
+ \****************************************/
1022
+ (module, __unused_webpack_exports, __webpack_require__) {
1023
+
1024
+
1025
+
1026
+ if (false) // removed by dead control flow
1027
+ {} else {
1028
+ module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ "./node_modules/react-is/cjs/react-is.development.js");
1029
+ }
1030
+
1031
+
1032
+ /***/ },
1033
+
1034
+ /***/ "./node_modules/stylis/src/Enum.js"
1035
+ /*!*****************************************!*\
1036
+ !*** ./node_modules/stylis/src/Enum.js ***!
1037
+ \*****************************************/
1038
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1039
+
1040
+ __webpack_require__.r(__webpack_exports__);
1041
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1042
+ /* harmony export */ CHARSET: () => (/* binding */ CHARSET),
1043
+ /* harmony export */ COMMENT: () => (/* binding */ COMMENT),
1044
+ /* harmony export */ COUNTER_STYLE: () => (/* binding */ COUNTER_STYLE),
1045
+ /* harmony export */ DECLARATION: () => (/* binding */ DECLARATION),
1046
+ /* harmony export */ DOCUMENT: () => (/* binding */ DOCUMENT),
1047
+ /* harmony export */ FONT_FACE: () => (/* binding */ FONT_FACE),
1048
+ /* harmony export */ FONT_FEATURE_VALUES: () => (/* binding */ FONT_FEATURE_VALUES),
1049
+ /* harmony export */ IMPORT: () => (/* binding */ IMPORT),
1050
+ /* harmony export */ KEYFRAMES: () => (/* binding */ KEYFRAMES),
1051
+ /* harmony export */ LAYER: () => (/* binding */ LAYER),
1052
+ /* harmony export */ MEDIA: () => (/* binding */ MEDIA),
1053
+ /* harmony export */ MOZ: () => (/* binding */ MOZ),
1054
+ /* harmony export */ MS: () => (/* binding */ MS),
1055
+ /* harmony export */ NAMESPACE: () => (/* binding */ NAMESPACE),
1056
+ /* harmony export */ PAGE: () => (/* binding */ PAGE),
1057
+ /* harmony export */ RULESET: () => (/* binding */ RULESET),
1058
+ /* harmony export */ SUPPORTS: () => (/* binding */ SUPPORTS),
1059
+ /* harmony export */ VIEWPORT: () => (/* binding */ VIEWPORT),
1060
+ /* harmony export */ WEBKIT: () => (/* binding */ WEBKIT)
1061
+ /* harmony export */ });
1062
+ var MS = '-ms-'
1063
+ var MOZ = '-moz-'
1064
+ var WEBKIT = '-webkit-'
1065
+
1066
+ var COMMENT = 'comm'
1067
+ var RULESET = 'rule'
1068
+ var DECLARATION = 'decl'
1069
+
1070
+ var PAGE = '@page'
1071
+ var MEDIA = '@media'
1072
+ var IMPORT = '@import'
1073
+ var CHARSET = '@charset'
1074
+ var VIEWPORT = '@viewport'
1075
+ var SUPPORTS = '@supports'
1076
+ var DOCUMENT = '@document'
1077
+ var NAMESPACE = '@namespace'
1078
+ var KEYFRAMES = '@keyframes'
1079
+ var FONT_FACE = '@font-face'
1080
+ var COUNTER_STYLE = '@counter-style'
1081
+ var FONT_FEATURE_VALUES = '@font-feature-values'
1082
+ var LAYER = '@layer'
1083
+
1084
+
1085
+ /***/ },
1086
+
1087
+ /***/ "./node_modules/stylis/src/Middleware.js"
1088
+ /*!***********************************************!*\
1089
+ !*** ./node_modules/stylis/src/Middleware.js ***!
1090
+ \***********************************************/
1091
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1092
+
1093
+ __webpack_require__.r(__webpack_exports__);
1094
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1095
+ /* harmony export */ middleware: () => (/* binding */ middleware),
1096
+ /* harmony export */ namespace: () => (/* binding */ namespace),
1097
+ /* harmony export */ prefixer: () => (/* binding */ prefixer),
1098
+ /* harmony export */ rulesheet: () => (/* binding */ rulesheet)
1099
+ /* harmony export */ });
1100
+ /* harmony import */ var _Enum_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Enum.js */ "./node_modules/stylis/src/Enum.js");
1101
+ /* harmony import */ var _Utility_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utility.js */ "./node_modules/stylis/src/Utility.js");
1102
+ /* harmony import */ var _Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Tokenizer.js */ "./node_modules/stylis/src/Tokenizer.js");
1103
+ /* harmony import */ var _Serializer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Serializer.js */ "./node_modules/stylis/src/Serializer.js");
1104
+ /* harmony import */ var _Prefixer_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Prefixer.js */ "./node_modules/stylis/src/Prefixer.js");
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+ /**
1112
+ * @param {function[]} collection
1113
+ * @return {function}
1114
+ */
1115
+ function middleware (collection) {
1116
+ var length = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.sizeof)(collection)
1117
+
1118
+ return function (element, index, children, callback) {
1119
+ var output = ''
1120
+
1121
+ for (var i = 0; i < length; i++)
1122
+ output += collection[i](element, index, children, callback) || ''
1123
+
1124
+ return output
1125
+ }
1126
+ }
1127
+
1128
+ /**
1129
+ * @param {function} callback
1130
+ * @return {function}
1131
+ */
1132
+ function rulesheet (callback) {
1133
+ return function (element) {
1134
+ if (!element.root)
1135
+ if (element = element.return)
1136
+ callback(element)
1137
+ }
1138
+ }
1139
+
1140
+ /**
1141
+ * @param {object} element
1142
+ * @param {number} index
1143
+ * @param {object[]} children
1144
+ * @param {function} callback
1145
+ */
1146
+ function prefixer (element, index, children, callback) {
1147
+ if (element.length > -1)
1148
+ if (!element.return)
1149
+ switch (element.type) {
1150
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.DECLARATION: element.return = (0,_Prefixer_js__WEBPACK_IMPORTED_MODULE_4__.prefix)(element.value, element.length, children)
1151
+ return
1152
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.KEYFRAMES:
1153
+ return (0,_Serializer_js__WEBPACK_IMPORTED_MODULE_3__.serialize)([(0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.copy)(element, {value: (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(element.value, '@', '@' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT)})], callback)
1154
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.RULESET:
1155
+ if (element.length)
1156
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.combine)(element.props, function (value) {
1157
+ switch ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(value, /(::plac\w+|:read-\w+)/)) {
1158
+ // :read-(only|write)
1159
+ case ':read-only': case ':read-write':
1160
+ return (0,_Serializer_js__WEBPACK_IMPORTED_MODULE_3__.serialize)([(0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.copy)(element, {props: [(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /:(read-\w+)/, ':' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MOZ + '$1')]})], callback)
1161
+ // :placeholder
1162
+ case '::placeholder':
1163
+ return (0,_Serializer_js__WEBPACK_IMPORTED_MODULE_3__.serialize)([
1164
+ (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.copy)(element, {props: [(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /:(plac\w+)/, ':' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + 'input-$1')]}),
1165
+ (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.copy)(element, {props: [(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /:(plac\w+)/, ':' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MOZ + '$1')]}),
1166
+ (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.copy)(element, {props: [(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /:(plac\w+)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'input-$1')]})
1167
+ ], callback)
1168
+ }
1169
+
1170
+ return ''
1171
+ })
1172
+ }
1173
+ }
1174
+
1175
+ /**
1176
+ * @param {object} element
1177
+ * @param {number} index
1178
+ * @param {object[]} children
1179
+ */
1180
+ function namespace (element) {
1181
+ switch (element.type) {
1182
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.RULESET:
1183
+ element.props = element.props.map(function (value) {
1184
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.combine)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.tokenize)(value), function (value, index, children) {
1185
+ switch ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, 0)) {
1186
+ // \f
1187
+ case 12:
1188
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(value, 1, (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(value))
1189
+ // \0 ( + > ~
1190
+ case 0: case 40: case 43: case 62: case 126:
1191
+ return value
1192
+ // :
1193
+ case 58:
1194
+ if (children[++index] === 'global')
1195
+ children[index] = '', children[++index] = '\f' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(children[index], index = 1, -1)
1196
+ // \s
1197
+ case 32:
1198
+ return index === 1 ? '' : value
1199
+ default:
1200
+ switch (index) {
1201
+ case 0: element = value
1202
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.sizeof)(children) > 1 ? '' : value
1203
+ case index = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.sizeof)(children) - 1: case 2:
1204
+ return index === 2 ? value + element + element : value + element
1205
+ default:
1206
+ return value
1207
+ }
1208
+ }
1209
+ })
1210
+ })
1211
+ }
1212
+ }
1213
+
1214
+
1215
+ /***/ },
1216
+
1217
+ /***/ "./node_modules/stylis/src/Parser.js"
1218
+ /*!*******************************************!*\
1219
+ !*** ./node_modules/stylis/src/Parser.js ***!
1220
+ \*******************************************/
1221
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1222
+
1223
+ __webpack_require__.r(__webpack_exports__);
1224
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1225
+ /* harmony export */ comment: () => (/* binding */ comment),
1226
+ /* harmony export */ compile: () => (/* binding */ compile),
1227
+ /* harmony export */ declaration: () => (/* binding */ declaration),
1228
+ /* harmony export */ parse: () => (/* binding */ parse),
1229
+ /* harmony export */ ruleset: () => (/* binding */ ruleset)
1230
+ /* harmony export */ });
1231
+ /* harmony import */ var _Enum_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Enum.js */ "./node_modules/stylis/src/Enum.js");
1232
+ /* harmony import */ var _Utility_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utility.js */ "./node_modules/stylis/src/Utility.js");
1233
+ /* harmony import */ var _Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Tokenizer.js */ "./node_modules/stylis/src/Tokenizer.js");
1234
+
1235
+
1236
+
1237
+
1238
+ /**
1239
+ * @param {string} value
1240
+ * @return {object[]}
1241
+ */
1242
+ function compile (value) {
1243
+ return (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.dealloc)(parse('', null, null, null, [''], value = (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.alloc)(value), 0, [0], value))
1244
+ }
1245
+
1246
+ /**
1247
+ * @param {string} value
1248
+ * @param {object} root
1249
+ * @param {object?} parent
1250
+ * @param {string[]} rule
1251
+ * @param {string[]} rules
1252
+ * @param {string[]} rulesets
1253
+ * @param {number[]} pseudo
1254
+ * @param {number[]} points
1255
+ * @param {string[]} declarations
1256
+ * @return {object}
1257
+ */
1258
+ function parse (value, root, parent, rule, rules, rulesets, pseudo, points, declarations) {
1259
+ var index = 0
1260
+ var offset = 0
1261
+ var length = pseudo
1262
+ var atrule = 0
1263
+ var property = 0
1264
+ var previous = 0
1265
+ var variable = 1
1266
+ var scanning = 1
1267
+ var ampersand = 1
1268
+ var character = 0
1269
+ var type = ''
1270
+ var props = rules
1271
+ var children = rulesets
1272
+ var reference = rule
1273
+ var characters = type
1274
+
1275
+ while (scanning)
1276
+ switch (previous = character, character = (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.next)()) {
1277
+ // (
1278
+ case 40:
1279
+ if (previous != 108 && (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(characters, length - 1) == 58) {
1280
+ if ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.indexof)(characters += (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.delimit)(character), '&', '&\f'), '&\f') != -1)
1281
+ ampersand = -1
1282
+ break
1283
+ }
1284
+ // " ' [
1285
+ case 34: case 39: case 91:
1286
+ characters += (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.delimit)(character)
1287
+ break
1288
+ // \t \n \r \s
1289
+ case 9: case 10: case 13: case 32:
1290
+ characters += (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.whitespace)(previous)
1291
+ break
1292
+ // \
1293
+ case 92:
1294
+ characters += (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.escaping)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.caret)() - 1, 7)
1295
+ continue
1296
+ // /
1297
+ case 47:
1298
+ switch ((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.peek)()) {
1299
+ case 42: case 47:
1300
+ ;(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.append)(comment((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.commenter)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.next)(), (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.caret)()), root, parent), declarations)
1301
+ break
1302
+ default:
1303
+ characters += '/'
1304
+ }
1305
+ break
1306
+ // {
1307
+ case 123 * variable:
1308
+ points[index++] = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(characters) * ampersand
1309
+ // } ; \0
1310
+ case 125 * variable: case 59: case 0:
1311
+ switch (character) {
1312
+ // \0 }
1313
+ case 0: case 125: scanning = 0
1314
+ // ;
1315
+ case 59 + offset: if (ampersand == -1) characters = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(characters, /\f/g, '')
1316
+ if (property > 0 && ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(characters) - length))
1317
+ (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.append)(property > 32 ? declaration(characters + ';', rule, parent, length - 1) : declaration((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(characters, ' ', '') + ';', rule, parent, length - 2), declarations)
1318
+ break
1319
+ // @ ;
1320
+ case 59: characters += ';'
1321
+ // { rule/at-rule
1322
+ default:
1323
+ ;(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.append)(reference = ruleset(characters, root, parent, index, offset, rules, points, type, props = [], children = [], length), rulesets)
1324
+
1325
+ if (character === 123)
1326
+ if (offset === 0)
1327
+ parse(characters, root, reference, reference, props, rulesets, length, points, children)
1328
+ else
1329
+ switch (atrule === 99 && (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(characters, 3) === 110 ? 100 : atrule) {
1330
+ // d l m s
1331
+ case 100: case 108: case 109: case 115:
1332
+ parse(value, reference, reference, rule && (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.append)(ruleset(value, reference, reference, 0, 0, rules, points, type, rules, props = [], length), children), rules, children, length, points, rule ? props : children)
1333
+ break
1334
+ default:
1335
+ parse(characters, reference, reference, reference, [''], children, 0, points, children)
1336
+ }
1337
+ }
1338
+
1339
+ index = offset = property = 0, variable = ampersand = 1, type = characters = '', length = pseudo
1340
+ break
1341
+ // :
1342
+ case 58:
1343
+ length = 1 + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(characters), property = previous
1344
+ default:
1345
+ if (variable < 1)
1346
+ if (character == 123)
1347
+ --variable
1348
+ else if (character == 125 && variable++ == 0 && (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.prev)() == 125)
1349
+ continue
1350
+
1351
+ switch (characters += (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.from)(character), character * variable) {
1352
+ // &
1353
+ case 38:
1354
+ ampersand = offset > 0 ? 1 : (characters += '\f', -1)
1355
+ break
1356
+ // ,
1357
+ case 44:
1358
+ points[index++] = ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(characters) - 1) * ampersand, ampersand = 1
1359
+ break
1360
+ // @
1361
+ case 64:
1362
+ // -
1363
+ if ((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.peek)() === 45)
1364
+ characters += (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.delimit)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.next)())
1365
+
1366
+ atrule = (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.peek)(), offset = length = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(type = characters += (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.identifier)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.caret)())), character++
1367
+ break
1368
+ // -
1369
+ case 45:
1370
+ if (previous === 45 && (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(characters) == 2)
1371
+ variable = 0
1372
+ }
1373
+ }
1374
+
1375
+ return rulesets
1376
+ }
1377
+
1378
+ /**
1379
+ * @param {string} value
1380
+ * @param {object} root
1381
+ * @param {object?} parent
1382
+ * @param {number} index
1383
+ * @param {number} offset
1384
+ * @param {string[]} rules
1385
+ * @param {number[]} points
1386
+ * @param {string} type
1387
+ * @param {string[]} props
1388
+ * @param {string[]} children
1389
+ * @param {number} length
1390
+ * @return {object}
1391
+ */
1392
+ function ruleset (value, root, parent, index, offset, rules, points, type, props, children, length) {
1393
+ var post = offset - 1
1394
+ var rule = offset === 0 ? rules : ['']
1395
+ var size = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.sizeof)(rule)
1396
+
1397
+ for (var i = 0, j = 0, k = 0; i < index; ++i)
1398
+ for (var x = 0, y = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(value, post + 1, post = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.abs)(j = points[i])), z = value; x < size; ++x)
1399
+ if (z = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.trim)(j > 0 ? rule[x] + ' ' + y : (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(y, /&\f/g, rule[x])))
1400
+ props[k++] = z
1401
+
1402
+ return (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.node)(value, root, parent, offset === 0 ? _Enum_js__WEBPACK_IMPORTED_MODULE_0__.RULESET : type, props, children, length)
1403
+ }
1404
+
1405
+ /**
1406
+ * @param {number} value
1407
+ * @param {object} root
1408
+ * @param {object?} parent
1409
+ * @return {object}
1410
+ */
1411
+ function comment (value, root, parent) {
1412
+ return (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.node)(value, root, parent, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.COMMENT, (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.from)((0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.char)()), (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(value, 2, -2), 0)
1413
+ }
1414
+
1415
+ /**
1416
+ * @param {string} value
1417
+ * @param {object} root
1418
+ * @param {object?} parent
1419
+ * @param {number} length
1420
+ * @return {object}
1421
+ */
1422
+ function declaration (value, root, parent, length) {
1423
+ return (0,_Tokenizer_js__WEBPACK_IMPORTED_MODULE_2__.node)(value, root, parent, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.DECLARATION, (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(value, 0, length), (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(value, length + 1, -1), length)
1424
+ }
1425
+
1426
+
1427
+ /***/ },
1428
+
1429
+ /***/ "./node_modules/stylis/src/Prefixer.js"
1430
+ /*!*********************************************!*\
1431
+ !*** ./node_modules/stylis/src/Prefixer.js ***!
1432
+ \*********************************************/
1433
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1434
+
1435
+ __webpack_require__.r(__webpack_exports__);
1436
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1437
+ /* harmony export */ prefix: () => (/* binding */ prefix)
1438
+ /* harmony export */ });
1439
+ /* harmony import */ var _Enum_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Enum.js */ "./node_modules/stylis/src/Enum.js");
1440
+ /* harmony import */ var _Utility_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utility.js */ "./node_modules/stylis/src/Utility.js");
1441
+
1442
+
1443
+
1444
+ /**
1445
+ * @param {string} value
1446
+ * @param {number} length
1447
+ * @param {object[]} children
1448
+ * @return {string}
1449
+ */
1450
+ function prefix (value, length, children) {
1451
+ switch ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.hash)(value, length)) {
1452
+ // color-adjust
1453
+ case 5103:
1454
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + 'print-' + value + value
1455
+ // animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)
1456
+ case 5737: case 4201: case 3177: case 3433: case 1641: case 4457: case 2921:
1457
+ // text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break
1458
+ case 5572: case 6356: case 5844: case 3191: case 6645: case 3005:
1459
+ // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,
1460
+ case 6391: case 5879: case 5623: case 6135: case 4599: case 4855:
1461
+ // background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)
1462
+ case 4215: case 6389: case 5109: case 5365: case 5621: case 3829:
1463
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + value
1464
+ // tab-size
1465
+ case 4789:
1466
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MOZ + value + value
1467
+ // appearance, user-select, transform, hyphens, text-size-adjust
1468
+ case 5349: case 4246: case 4810: case 6968: case 2756:
1469
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MOZ + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + value + value
1470
+ // writing-mode
1471
+ case 5936:
1472
+ switch ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, length + 11)) {
1473
+ // vertical-l(r)
1474
+ case 114:
1475
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /[svh]\w+-[tblr]{2}/, 'tb') + value
1476
+ // vertical-r(l)
1477
+ case 108:
1478
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /[svh]\w+-[tblr]{2}/, 'tb-rl') + value
1479
+ // horizontal(-)tb
1480
+ case 45:
1481
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /[svh]\w+-[tblr]{2}/, 'lr') + value
1482
+ // default: fallthrough to below
1483
+ }
1484
+ // flex, flex-direction, scroll-snap-type, writing-mode
1485
+ case 6828: case 4268: case 2903:
1486
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + value + value
1487
+ // order
1488
+ case 6165:
1489
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'flex-' + value + value
1490
+ // align-items
1491
+ case 5187:
1492
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(\w+).+(:[^]+)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + 'box-$1$2' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'flex-$1$2') + value
1493
+ // align-self
1494
+ case 5443:
1495
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'flex-item-' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /flex-|-self/g, '') + (!(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(value, /flex-|baseline/) ? _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'grid-row-' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /flex-|-self/g, '') : '') + value
1496
+ // align-content
1497
+ case 4675:
1498
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'flex-line-pack' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /align-content|flex-|-self/g, '') + value
1499
+ // flex-shrink
1500
+ case 5548:
1501
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, 'shrink', 'negative') + value
1502
+ // flex-basis
1503
+ case 5292:
1504
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, 'basis', 'preferred-size') + value
1505
+ // flex-grow
1506
+ case 6060:
1507
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + 'box-' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, '-grow', '') + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, 'grow', 'positive') + value
1508
+ // transition
1509
+ case 4554:
1510
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /([^-])(transform)/g, '$1' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$2') + value
1511
+ // cursor
1512
+ case 6187:
1513
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(zoom-|grab)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$1'), /(image-set)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$1'), value, '') + value
1514
+ // background, background-image
1515
+ case 5495: case 3959:
1516
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(image-set\([^]*)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$1' + '$`$1')
1517
+ // justify-content
1518
+ case 4968:
1519
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(.+:)(flex-)?(.*)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + 'box-pack:$3' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'flex-pack:$3'), /s.+-b[^;]+/, 'justify') + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + value + value
1520
+ // justify-self
1521
+ case 4200:
1522
+ if (!(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(value, /flex-|baseline/)) return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'grid-column-align' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.substr)(value, length) + value
1523
+ break
1524
+ // grid-template-(columns|rows)
1525
+ case 2592: case 3360:
1526
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, 'template-', '') + value
1527
+ // grid-(row|column)-start
1528
+ case 4384: case 3616:
1529
+ if (children && children.some(function (element, index) { return length = index, (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(element.props, /grid-\w+-end/) })) {
1530
+ return ~(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.indexof)(value + (children = children[length].value), 'span') ? value : (_Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, '-start', '') + value + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + 'grid-row-span:' + (~(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.indexof)(children, 'span') ? (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(children, /\d+/) : +(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(children, /\d+/) - +(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(value, /\d+/)) + ';')
1531
+ }
1532
+ return _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, '-start', '') + value
1533
+ // grid-(row|column)-end
1534
+ case 4896: case 4128:
1535
+ return (children && children.some(function (element) { return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.match)(element.props, /grid-\w+-start/) })) ? value : _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, '-end', '-span'), 'span ', '') + value
1536
+ // (margin|padding)-inline-(start|end)
1537
+ case 4095: case 3583: case 4068: case 2532:
1538
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(.+)-inline(.+)/, _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$1$2') + value
1539
+ // (min|max)?(width|height|inline-size|block-size)
1540
+ case 8116: case 7059: case 5753: case 5535:
1541
+ case 5445: case 5701: case 4933: case 4677:
1542
+ case 5533: case 5789: case 5021: case 4765:
1543
+ // stretch, max-content, min-content, fill-available
1544
+ if ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(value) - 1 - length > 6)
1545
+ switch ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, length + 1)) {
1546
+ // (m)ax-content, (m)in-content
1547
+ case 109:
1548
+ // -
1549
+ if ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, length + 4) !== 45)
1550
+ break
1551
+ // (f)ill-available, (f)it-content
1552
+ case 102:
1553
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(.+:)(.+)-([^]+)/, '$1' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$2-$3' + '$1' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MOZ + ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, length + 3) == 108 ? '$3' : '$2-$3')) + value
1554
+ // (s)tretch
1555
+ case 115:
1556
+ return ~(0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.indexof)(value, 'stretch') ? prefix((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, 'stretch', 'fill-available'), length, children) + value : value
1557
+ }
1558
+ break
1559
+ // grid-(column|row)
1560
+ case 5152: case 5920:
1561
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/, function (_, a, b, c, d, e, f) { return (_Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + a + ':' + b + f) + (c ? (_Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + a + '-span:' + (d ? e : +e - +b)) + f : '') + value })
1562
+ // position: sticky
1563
+ case 4949:
1564
+ // stick(y)?
1565
+ if ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, length + 6) === 121)
1566
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, ':', ':' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT) + value
1567
+ break
1568
+ // display: (flex|inline-flex|grid|inline-grid)
1569
+ case 6444:
1570
+ switch ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, 14) === 45 ? 18 : 11)) {
1571
+ // (inline-)?fle(x)
1572
+ case 120:
1573
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, /(.+:)([^;\s!]+)(;|(\s+)?!.+)?/, '$1' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + ((0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.charat)(value, 14) === 45 ? 'inline-' : '') + 'box$3' + '$1' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.WEBKIT + '$2$3' + '$1' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS + '$2box$3') + value
1574
+ // (inline-)?gri(d)
1575
+ case 100:
1576
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, ':', ':' + _Enum_js__WEBPACK_IMPORTED_MODULE_0__.MS) + value
1577
+ }
1578
+ break
1579
+ // scroll-margin, scroll-margin-(top|right|bottom|left)
1580
+ case 5719: case 2647: case 2135: case 3927: case 2391:
1581
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.replace)(value, 'scroll-', 'scroll-snap-') + value
1582
+ }
1583
+
1584
+ return value
1585
+ }
1586
+
1587
+
1588
+ /***/ },
1589
+
1590
+ /***/ "./node_modules/stylis/src/Serializer.js"
1591
+ /*!***********************************************!*\
1592
+ !*** ./node_modules/stylis/src/Serializer.js ***!
1593
+ \***********************************************/
1594
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1595
+
1596
+ __webpack_require__.r(__webpack_exports__);
1597
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1598
+ /* harmony export */ serialize: () => (/* binding */ serialize),
1599
+ /* harmony export */ stringify: () => (/* binding */ stringify)
1600
+ /* harmony export */ });
1601
+ /* harmony import */ var _Enum_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Enum.js */ "./node_modules/stylis/src/Enum.js");
1602
+ /* harmony import */ var _Utility_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utility.js */ "./node_modules/stylis/src/Utility.js");
1603
+
1604
+
1605
+
1606
+ /**
1607
+ * @param {object[]} children
1608
+ * @param {function} callback
1609
+ * @return {string}
1610
+ */
1611
+ function serialize (children, callback) {
1612
+ var output = ''
1613
+ var length = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.sizeof)(children)
1614
+
1615
+ for (var i = 0; i < length; i++)
1616
+ output += callback(children[i], i, children, callback) || ''
1617
+
1618
+ return output
1619
+ }
1620
+
1621
+ /**
1622
+ * @param {object} element
1623
+ * @param {number} index
1624
+ * @param {object[]} children
1625
+ * @param {function} callback
1626
+ * @return {string}
1627
+ */
1628
+ function stringify (element, index, children, callback) {
1629
+ switch (element.type) {
1630
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.LAYER: if (element.children.length) break
1631
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.IMPORT: case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.DECLARATION: return element.return = element.return || element.value
1632
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.COMMENT: return ''
1633
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.KEYFRAMES: return element.return = element.value + '{' + serialize(element.children, callback) + '}'
1634
+ case _Enum_js__WEBPACK_IMPORTED_MODULE_0__.RULESET: element.value = element.props.join(',')
1635
+ }
1636
+
1637
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_1__.strlen)(children = serialize(element.children, callback)) ? element.return = element.value + '{' + children + '}' : ''
1638
+ }
1639
+
1640
+
1641
+ /***/ },
1642
+
1643
+ /***/ "./node_modules/stylis/src/Tokenizer.js"
1644
+ /*!**********************************************!*\
1645
+ !*** ./node_modules/stylis/src/Tokenizer.js ***!
1646
+ \**********************************************/
1647
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1648
+
1649
+ __webpack_require__.r(__webpack_exports__);
1650
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1651
+ /* harmony export */ alloc: () => (/* binding */ alloc),
1652
+ /* harmony export */ caret: () => (/* binding */ caret),
1653
+ /* harmony export */ char: () => (/* binding */ char),
1654
+ /* harmony export */ character: () => (/* binding */ character),
1655
+ /* harmony export */ characters: () => (/* binding */ characters),
1656
+ /* harmony export */ column: () => (/* binding */ column),
1657
+ /* harmony export */ commenter: () => (/* binding */ commenter),
1658
+ /* harmony export */ copy: () => (/* binding */ copy),
1659
+ /* harmony export */ dealloc: () => (/* binding */ dealloc),
1660
+ /* harmony export */ delimit: () => (/* binding */ delimit),
1661
+ /* harmony export */ delimiter: () => (/* binding */ delimiter),
1662
+ /* harmony export */ escaping: () => (/* binding */ escaping),
1663
+ /* harmony export */ identifier: () => (/* binding */ identifier),
1664
+ /* harmony export */ length: () => (/* binding */ length),
1665
+ /* harmony export */ line: () => (/* binding */ line),
1666
+ /* harmony export */ next: () => (/* binding */ next),
1667
+ /* harmony export */ node: () => (/* binding */ node),
1668
+ /* harmony export */ peek: () => (/* binding */ peek),
1669
+ /* harmony export */ position: () => (/* binding */ position),
1670
+ /* harmony export */ prev: () => (/* binding */ prev),
1671
+ /* harmony export */ slice: () => (/* binding */ slice),
1672
+ /* harmony export */ token: () => (/* binding */ token),
1673
+ /* harmony export */ tokenize: () => (/* binding */ tokenize),
1674
+ /* harmony export */ tokenizer: () => (/* binding */ tokenizer),
1675
+ /* harmony export */ whitespace: () => (/* binding */ whitespace)
1676
+ /* harmony export */ });
1677
+ /* harmony import */ var _Utility_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Utility.js */ "./node_modules/stylis/src/Utility.js");
1678
+
1679
+
1680
+ var line = 1
1681
+ var column = 1
1682
+ var length = 0
1683
+ var position = 0
1684
+ var character = 0
1685
+ var characters = ''
1686
+
1687
+ /**
1688
+ * @param {string} value
1689
+ * @param {object | null} root
1690
+ * @param {object | null} parent
1691
+ * @param {string} type
1692
+ * @param {string[] | string} props
1693
+ * @param {object[] | string} children
1694
+ * @param {number} length
1695
+ */
1696
+ function node (value, root, parent, type, props, children, length) {
1697
+ return {value: value, root: root, parent: parent, type: type, props: props, children: children, line: line, column: column, length: length, return: ''}
1698
+ }
1699
+
1700
+ /**
1701
+ * @param {object} root
1702
+ * @param {object} props
1703
+ * @return {object}
1704
+ */
1705
+ function copy (root, props) {
1706
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.assign)(node('', null, null, '', null, null, 0), root, {length: -root.length}, props)
1707
+ }
1708
+
1709
+ /**
1710
+ * @return {number}
1711
+ */
1712
+ function char () {
1713
+ return character
1714
+ }
1715
+
1716
+ /**
1717
+ * @return {number}
1718
+ */
1719
+ function prev () {
1720
+ character = position > 0 ? (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.charat)(characters, --position) : 0
1721
+
1722
+ if (column--, character === 10)
1723
+ column = 1, line--
1724
+
1725
+ return character
1726
+ }
1727
+
1728
+ /**
1729
+ * @return {number}
1730
+ */
1731
+ function next () {
1732
+ character = position < length ? (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.charat)(characters, position++) : 0
1733
+
1734
+ if (column++, character === 10)
1735
+ column = 1, line++
1736
+
1737
+ return character
1738
+ }
1739
+
1740
+ /**
1741
+ * @return {number}
1742
+ */
1743
+ function peek () {
1744
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.charat)(characters, position)
1745
+ }
1746
+
1747
+ /**
1748
+ * @return {number}
1749
+ */
1750
+ function caret () {
1751
+ return position
1752
+ }
1753
+
1754
+ /**
1755
+ * @param {number} begin
1756
+ * @param {number} end
1757
+ * @return {string}
1758
+ */
1759
+ function slice (begin, end) {
1760
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.substr)(characters, begin, end)
1761
+ }
1762
+
1763
+ /**
1764
+ * @param {number} type
1765
+ * @return {number}
1766
+ */
1767
+ function token (type) {
1768
+ switch (type) {
1769
+ // \0 \t \n \r \s whitespace token
1770
+ case 0: case 9: case 10: case 13: case 32:
1771
+ return 5
1772
+ // ! + , / > @ ~ isolate token
1773
+ case 33: case 43: case 44: case 47: case 62: case 64: case 126:
1774
+ // ; { } breakpoint token
1775
+ case 59: case 123: case 125:
1776
+ return 4
1777
+ // : accompanied token
1778
+ case 58:
1779
+ return 3
1780
+ // " ' ( [ opening delimit token
1781
+ case 34: case 39: case 40: case 91:
1782
+ return 2
1783
+ // ) ] closing delimit token
1784
+ case 41: case 93:
1785
+ return 1
1786
+ }
1787
+
1788
+ return 0
1789
+ }
1790
+
1791
+ /**
1792
+ * @param {string} value
1793
+ * @return {any[]}
1794
+ */
1795
+ function alloc (value) {
1796
+ return line = column = 1, length = (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.strlen)(characters = value), position = 0, []
1797
+ }
1798
+
1799
+ /**
1800
+ * @param {any} value
1801
+ * @return {any}
1802
+ */
1803
+ function dealloc (value) {
1804
+ return characters = '', value
1805
+ }
1806
+
1807
+ /**
1808
+ * @param {number} type
1809
+ * @return {string}
1810
+ */
1811
+ function delimit (type) {
1812
+ return (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.trim)(slice(position - 1, delimiter(type === 91 ? type + 2 : type === 40 ? type + 1 : type)))
1813
+ }
1814
+
1815
+ /**
1816
+ * @param {string} value
1817
+ * @return {string[]}
1818
+ */
1819
+ function tokenize (value) {
1820
+ return dealloc(tokenizer(alloc(value)))
1821
+ }
1822
+
1823
+ /**
1824
+ * @param {number} type
1825
+ * @return {string}
1826
+ */
1827
+ function whitespace (type) {
1828
+ while (character = peek())
1829
+ if (character < 33)
1830
+ next()
1831
+ else
1832
+ break
1833
+
1834
+ return token(type) > 2 || token(character) > 3 ? '' : ' '
1835
+ }
1836
+
1837
+ /**
1838
+ * @param {string[]} children
1839
+ * @return {string[]}
1840
+ */
1841
+ function tokenizer (children) {
1842
+ while (next())
1843
+ switch (token(character)) {
1844
+ case 0: (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.append)(identifier(position - 1), children)
1845
+ break
1846
+ case 2: ;(0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.append)(delimit(character), children)
1847
+ break
1848
+ default: ;(0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.append)((0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.from)(character), children)
1849
+ }
1850
+
1851
+ return children
1852
+ }
1853
+
1854
+ /**
1855
+ * @param {number} index
1856
+ * @param {number} count
1857
+ * @return {string}
1858
+ */
1859
+ function escaping (index, count) {
1860
+ while (--count && next())
1861
+ // not 0-9 A-F a-f
1862
+ if (character < 48 || character > 102 || (character > 57 && character < 65) || (character > 70 && character < 97))
1863
+ break
1864
+
1865
+ return slice(index, caret() + (count < 6 && peek() == 32 && next() == 32))
1866
+ }
1867
+
1868
+ /**
1869
+ * @param {number} type
1870
+ * @return {number}
1871
+ */
1872
+ function delimiter (type) {
1873
+ while (next())
1874
+ switch (character) {
1875
+ // ] ) " '
1876
+ case type:
1877
+ return position
1878
+ // " '
1879
+ case 34: case 39:
1880
+ if (type !== 34 && type !== 39)
1881
+ delimiter(character)
1882
+ break
1883
+ // (
1884
+ case 40:
1885
+ if (type === 41)
1886
+ delimiter(type)
1887
+ break
1888
+ // \
1889
+ case 92:
1890
+ next()
1891
+ break
1892
+ }
1893
+
1894
+ return position
1895
+ }
1896
+
1897
+ /**
1898
+ * @param {number} type
1899
+ * @param {number} index
1900
+ * @return {number}
1901
+ */
1902
+ function commenter (type, index) {
1903
+ while (next())
1904
+ // //
1905
+ if (type + character === 47 + 10)
1906
+ break
1907
+ // /*
1908
+ else if (type + character === 42 + 42 && peek() === 47)
1909
+ break
1910
+
1911
+ return '/*' + slice(index, position - 1) + '*' + (0,_Utility_js__WEBPACK_IMPORTED_MODULE_0__.from)(type === 47 ? type : next())
1912
+ }
1913
+
1914
+ /**
1915
+ * @param {number} index
1916
+ * @return {string}
1917
+ */
1918
+ function identifier (index) {
1919
+ while (!token(peek()))
1920
+ next()
1921
+
1922
+ return slice(index, position)
1923
+ }
1924
+
1925
+
1926
+ /***/ },
1927
+
1928
+ /***/ "./node_modules/stylis/src/Utility.js"
1929
+ /*!********************************************!*\
1930
+ !*** ./node_modules/stylis/src/Utility.js ***!
1931
+ \********************************************/
1932
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1933
+
1934
+ __webpack_require__.r(__webpack_exports__);
1935
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
1936
+ /* harmony export */ abs: () => (/* binding */ abs),
1937
+ /* harmony export */ append: () => (/* binding */ append),
1938
+ /* harmony export */ assign: () => (/* binding */ assign),
1939
+ /* harmony export */ charat: () => (/* binding */ charat),
1940
+ /* harmony export */ combine: () => (/* binding */ combine),
1941
+ /* harmony export */ from: () => (/* binding */ from),
1942
+ /* harmony export */ hash: () => (/* binding */ hash),
1943
+ /* harmony export */ indexof: () => (/* binding */ indexof),
1944
+ /* harmony export */ match: () => (/* binding */ match),
1945
+ /* harmony export */ replace: () => (/* binding */ replace),
1946
+ /* harmony export */ sizeof: () => (/* binding */ sizeof),
1947
+ /* harmony export */ strlen: () => (/* binding */ strlen),
1948
+ /* harmony export */ substr: () => (/* binding */ substr),
1949
+ /* harmony export */ trim: () => (/* binding */ trim)
1950
+ /* harmony export */ });
1951
+ /**
1952
+ * @param {number}
1953
+ * @return {number}
1954
+ */
1955
+ var abs = Math.abs
1956
+
1957
+ /**
1958
+ * @param {number}
1959
+ * @return {string}
1960
+ */
1961
+ var from = String.fromCharCode
1962
+
1963
+ /**
1964
+ * @param {object}
1965
+ * @return {object}
1966
+ */
1967
+ var assign = Object.assign
1968
+
1969
+ /**
1970
+ * @param {string} value
1971
+ * @param {number} length
1972
+ * @return {number}
1973
+ */
1974
+ function hash (value, length) {
1975
+ return charat(value, 0) ^ 45 ? (((((((length << 2) ^ charat(value, 0)) << 2) ^ charat(value, 1)) << 2) ^ charat(value, 2)) << 2) ^ charat(value, 3) : 0
1976
+ }
1977
+
1978
+ /**
1979
+ * @param {string} value
1980
+ * @return {string}
1981
+ */
1982
+ function trim (value) {
1983
+ return value.trim()
1984
+ }
1985
+
1986
+ /**
1987
+ * @param {string} value
1988
+ * @param {RegExp} pattern
1989
+ * @return {string?}
1990
+ */
1991
+ function match (value, pattern) {
1992
+ return (value = pattern.exec(value)) ? value[0] : value
1993
+ }
1994
+
1995
+ /**
1996
+ * @param {string} value
1997
+ * @param {(string|RegExp)} pattern
1998
+ * @param {string} replacement
1999
+ * @return {string}
2000
+ */
2001
+ function replace (value, pattern, replacement) {
2002
+ return value.replace(pattern, replacement)
2003
+ }
2004
+
2005
+ /**
2006
+ * @param {string} value
2007
+ * @param {string} search
2008
+ * @return {number}
2009
+ */
2010
+ function indexof (value, search) {
2011
+ return value.indexOf(search)
2012
+ }
2013
+
2014
+ /**
2015
+ * @param {string} value
2016
+ * @param {number} index
2017
+ * @return {number}
2018
+ */
2019
+ function charat (value, index) {
2020
+ return value.charCodeAt(index) | 0
2021
+ }
2022
+
2023
+ /**
2024
+ * @param {string} value
2025
+ * @param {number} begin
2026
+ * @param {number} end
2027
+ * @return {string}
2028
+ */
2029
+ function substr (value, begin, end) {
2030
+ return value.slice(begin, end)
2031
+ }
2032
+
2033
+ /**
2034
+ * @param {string} value
2035
+ * @return {number}
2036
+ */
2037
+ function strlen (value) {
2038
+ return value.length
2039
+ }
2040
+
2041
+ /**
2042
+ * @param {any[]} value
2043
+ * @return {number}
2044
+ */
2045
+ function sizeof (value) {
2046
+ return value.length
2047
+ }
2048
+
2049
+ /**
2050
+ * @param {any} value
2051
+ * @param {any[]} array
2052
+ * @return {any}
2053
+ */
2054
+ function append (value, array) {
2055
+ return array.push(value), value
2056
+ }
2057
+
2058
+ /**
2059
+ * @param {string[]} array
2060
+ * @param {function} callback
2061
+ * @return {string}
2062
+ */
2063
+ function combine (array, callback) {
2064
+ return array.map(callback).join('')
2065
+ }
2066
+
2067
+
2068
+ /***/ }
2069
+
2070
+ }]);
2071
+ //# sourceMappingURL=vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js-node_modules-782ee5.d9ed8645ef1d311657d8.js.map