AdSense Plugin WP QUADS - Version 2.0.9

Version Description

(07th July 2020)= * New: Custom banner support Feature #109 * New: Improve UX for "Create New AD" #159 * New: Improve UX for Help tab #158 * New: Delete popup ux improvement #161

Download this release

Release Info

Developer wpquads
Plugin Icon 128x128 AdSense Plugin WP QUADS
Version 2.0.9
Comparing to
See all releases

Code changes from version 2.0.8.2 to 2.0.9

Files changed (1) hide show
  1. admin/assets/js/dist/adminscript.js +23839 -1118
admin/assets/js/dist/adminscript.js CHANGED
@@ -1,104911 +1,102815 @@
1
- /******/ (function(modules) { // webpackBootstrap
2
- /******/ // The module cache
3
- /******/ var installedModules = {};
4
- /******/
5
- /******/ // The require function
6
- /******/ function __webpack_require__(moduleId) {
7
- /******/
8
- /******/ // Check if module is in cache
9
- /******/ if(installedModules[moduleId]) {
10
- /******/ return installedModules[moduleId].exports;
11
- /******/ }
12
- /******/ // Create a new module (and put it into the cache)
13
- /******/ var module = installedModules[moduleId] = {
14
- /******/ i: moduleId,
15
- /******/ l: false,
16
- /******/ exports: {}
17
- /******/ };
18
- /******/
19
- /******/ // Execute the module function
20
- /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
21
- /******/
22
- /******/ // Flag the module as loaded
23
- /******/ module.l = true;
24
- /******/
25
- /******/ // Return the exports of the module
26
- /******/ return module.exports;
27
- /******/ }
28
- /******/
29
- /******/
30
- /******/ // expose the modules object (__webpack_modules__)
31
- /******/ __webpack_require__.m = modules;
32
- /******/
33
- /******/ // expose the module cache
34
- /******/ __webpack_require__.c = installedModules;
35
- /******/
36
- /******/ // define getter function for harmony exports
37
- /******/ __webpack_require__.d = function(exports, name, getter) {
38
- /******/ if(!__webpack_require__.o(exports, name)) {
39
- /******/ Object.defineProperty(exports, name, {
40
- /******/ configurable: false,
41
- /******/ enumerable: true,
42
- /******/ get: getter
43
- /******/ });
44
- /******/ }
45
- /******/ };
46
- /******/
47
- /******/ // getDefaultExport function for compatibility with non-harmony modules
48
- /******/ __webpack_require__.n = function(module) {
49
- /******/ var getter = module && module.__esModule ?
50
- /******/ function getDefault() { return module['default']; } :
51
- /******/ function getModuleExports() { return module; };
52
- /******/ __webpack_require__.d(getter, 'a', getter);
53
- /******/ return getter;
54
- /******/ };
55
- /******/
56
- /******/ // Object.prototype.hasOwnProperty.call
57
- /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
58
- /******/
59
- /******/ // __webpack_public_path__
60
- /******/ __webpack_require__.p = "";
61
- /******/
62
- /******/ // Load entry module and return exports
63
- /******/ return __webpack_require__(__webpack_require__.s = 296);
64
- /******/ })
65
- /************************************************************************/
66
- /******/ ([
67
- /* 0 */
68
- /***/ (function(module, exports, __webpack_require__) {
69
-
70
- "use strict";
71
- /* WEBPACK VAR INJECTION */(function(process) {
72
-
73
- if (process.env.NODE_ENV === 'production') {
74
- module.exports = __webpack_require__(297);
75
- } else {
76
- module.exports = __webpack_require__(298);
77
- }
78
-
79
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
80
-
81
- /***/ }),
82
- /* 1 */
83
- /***/ (function(module, exports) {
84
-
85
- // shim for using process in browser
86
- var process = module.exports = {};
87
-
88
- // cached from whatever global is present so that test runners that stub it
89
- // don't break things. But we need to wrap it in a try catch in case it is
90
- // wrapped in strict mode code which doesn't define any globals. It's inside a
91
- // function because try/catches deoptimize in certain engines.
92
-
93
- var cachedSetTimeout;
94
- var cachedClearTimeout;
95
-
96
- function defaultSetTimout() {
97
- throw new Error('setTimeout has not been defined');
98
- }
99
- function defaultClearTimeout () {
100
- throw new Error('clearTimeout has not been defined');
101
- }
102
- (function () {
103
- try {
104
- if (typeof setTimeout === 'function') {
105
- cachedSetTimeout = setTimeout;
106
- } else {
107
- cachedSetTimeout = defaultSetTimout;
108
- }
109
- } catch (e) {
110
- cachedSetTimeout = defaultSetTimout;
111
- }
112
- try {
113
- if (typeof clearTimeout === 'function') {
114
- cachedClearTimeout = clearTimeout;
115
- } else {
116
- cachedClearTimeout = defaultClearTimeout;
117
- }
118
- } catch (e) {
119
- cachedClearTimeout = defaultClearTimeout;
120
- }
121
- } ())
122
- function runTimeout(fun) {
123
- if (cachedSetTimeout === setTimeout) {
124
- //normal enviroments in sane situations
125
- return setTimeout(fun, 0);
126
- }
127
- // if setTimeout wasn't available but was latter defined
128
- if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
129
- cachedSetTimeout = setTimeout;
130
- return setTimeout(fun, 0);
131
- }
132
- try {
133
- // when when somebody has screwed with setTimeout but no I.E. maddness
134
- return cachedSetTimeout(fun, 0);
135
- } catch(e){
136
- try {
137
- // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
138
- return cachedSetTimeout.call(null, fun, 0);
139
- } catch(e){
140
- // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
141
- return cachedSetTimeout.call(this, fun, 0);
142
- }
143
- }
144
-
145
-
146
- }
147
- function runClearTimeout(marker) {
148
- if (cachedClearTimeout === clearTimeout) {
149
- //normal enviroments in sane situations
150
- return clearTimeout(marker);
151
- }
152
- // if clearTimeout wasn't available but was latter defined
153
- if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
154
- cachedClearTimeout = clearTimeout;
155
- return clearTimeout(marker);
156
- }
157
- try {
158
- // when when somebody has screwed with setTimeout but no I.E. maddness
159
- return cachedClearTimeout(marker);
160
- } catch (e){
161
- try {
162
- // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
163
- return cachedClearTimeout.call(null, marker);
164
- } catch (e){
165
- // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
166
- // Some versions of I.E. have different rules for clearTimeout vs setTimeout
167
- return cachedClearTimeout.call(this, marker);
168
- }
169
- }
170
-
171
-
172
-
173
- }
174
- var queue = [];
175
- var draining = false;
176
- var currentQueue;
177
- var queueIndex = -1;
178
-
179
- function cleanUpNextTick() {
180
- if (!draining || !currentQueue) {
181
- return;
182
- }
183
- draining = false;
184
- if (currentQueue.length) {
185
- queue = currentQueue.concat(queue);
186
- } else {
187
- queueIndex = -1;
188
- }
189
- if (queue.length) {
190
- drainQueue();
191
- }
192
- }
193
-
194
- function drainQueue() {
195
- if (draining) {
196
- return;
197
- }
198
- var timeout = runTimeout(cleanUpNextTick);
199
- draining = true;
200
-
201
- var len = queue.length;
202
- while(len) {
203
- currentQueue = queue;
204
- queue = [];
205
- while (++queueIndex < len) {
206
- if (currentQueue) {
207
- currentQueue[queueIndex].run();
208
- }
209
- }
210
- queueIndex = -1;
211
- len = queue.length;
212
- }
213
- currentQueue = null;
214
- draining = false;
215
- runClearTimeout(timeout);
216
- }
217
-
218
- process.nextTick = function (fun) {
219
- var args = new Array(arguments.length - 1);
220
- if (arguments.length > 1) {
221
- for (var i = 1; i < arguments.length; i++) {
222
- args[i - 1] = arguments[i];
223
- }
224
- }
225
- queue.push(new Item(fun, args));
226
- if (queue.length === 1 && !draining) {
227
- runTimeout(drainQueue);
228
- }
229
- };
230
-
231
- // v8 likes predictible objects
232
- function Item(fun, array) {
233
- this.fun = fun;
234
- this.array = array;
235
- }
236
- Item.prototype.run = function () {
237
- this.fun.apply(null, this.array);
238
- };
239
- process.title = 'browser';
240
- process.browser = true;
241
- process.env = {};
242
- process.argv = [];
243
- process.version = ''; // empty string to avoid regexp issues
244
- process.versions = {};
245
-
246
- function noop() {}
247
-
248
- process.on = noop;
249
- process.addListener = noop;
250
- process.once = noop;
251
- process.off = noop;
252
- process.removeListener = noop;
253
- process.removeAllListeners = noop;
254
- process.emit = noop;
255
- process.prependListener = noop;
256
- process.prependOnceListener = noop;
257
-
258
- process.listeners = function (name) { return [] }
259
-
260
- process.binding = function (name) {
261
- throw new Error('process.binding is not supported');
262
- };
263
-
264
- process.cwd = function () { return '/' };
265
- process.chdir = function (dir) {
266
- throw new Error('process.chdir is not supported');
267
- };
268
- process.umask = function() { return 0; };
269
-
270
-
271
- /***/ }),
272
- /* 2 */
273
- /***/ (function(module, exports, __webpack_require__) {
274
-
275
- /* WEBPACK VAR INJECTION */(function(process) {/**
276
- * Copyright (c) 2013-present, Facebook, Inc.
277
- *
278
- * This source code is licensed under the MIT license found in the
279
- * LICENSE file in the root directory of this source tree.
280
- */
281
-
282
- if (process.env.NODE_ENV !== 'production') {
283
- var ReactIs = __webpack_require__(14);
284
-
285
- // By explicitly using `prop-types` you are opting into new development behavior.
286
- // http://fb.me/prop-types-in-prod
287
- var throwOnDirectAccess = true;
288
- module.exports = __webpack_require__(309)(ReactIs.isElement, throwOnDirectAccess);
289
- } else {
290
- // By explicitly using `prop-types` you are opting into new production behavior.
291
- // http://fb.me/prop-types-in-prod
292
- module.exports = __webpack_require__(310)();
293
- }
294
-
295
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
296
-
297
- /***/ }),
298
- /* 3 */
299
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
300
-
301
- "use strict";
302
- /* harmony export (immutable) */ __webpack_exports__["a"] = _extends;
303
- function _extends() {
304
- _extends = Object.assign || function (target) {
305
- for (var i = 1; i < arguments.length; i++) {
306
- var source = arguments[i];
307
-
308
- for (var key in source) {
309
- if (Object.prototype.hasOwnProperty.call(source, key)) {
310
- target[key] = source[key];
311
- }
312
- }
313
- }
314
-
315
- return target;
316
- };
317
-
318
- return _extends.apply(this, arguments);
319
- }
320
-
321
- /***/ }),
322
- /* 4 */
323
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
324
-
325
- "use strict";
326
- /* harmony export (immutable) */ __webpack_exports__["a"] = _objectWithoutProperties;
327
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__objectWithoutPropertiesLoose__ = __webpack_require__(25);
328
-
329
- function _objectWithoutProperties(source, excluded) {
330
- if (source == null) return {};
331
- var target = Object(__WEBPACK_IMPORTED_MODULE_0__objectWithoutPropertiesLoose__["a" /* default */])(source, excluded);
332
- var key, i;
333
-
334
- if (Object.getOwnPropertySymbols) {
335
- var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
336
-
337
- for (i = 0; i < sourceSymbolKeys.length; i++) {
338
- key = sourceSymbolKeys[i];
339
- if (excluded.indexOf(key) >= 0) continue;
340
- if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
341
- target[key] = source[key];
342
- }
343
- }
344
-
345
- return target;
346
- }
347
-
348
- /***/ }),
349
- /* 5 */
350
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
351
-
352
- "use strict";
353
- function toVal(mix) {
354
- var k, y, str='';
355
- if (mix) {
356
- if (typeof mix === 'object') {
357
- if (Array.isArray(mix)) {
358
- for (k=0; k < mix.length; k++) {
359
- if (mix[k] && (y = toVal(mix[k]))) {
360
- str && (str += ' ');
361
- str += y;
362
- }
363
- }
364
- } else {
365
- for (k in mix) {
366
- if (mix[k] && (y = toVal(k))) {
367
- str && (str += ' ');
368
- str += y;
369
- }
370
- }
371
- }
372
- } else if (typeof mix !== 'boolean' && !mix.call) {
373
- str && (str += ' ');
374
- str += mix;
375
- }
376
- }
377
- return str;
378
- }
379
-
380
- /* harmony default export */ __webpack_exports__["a"] = (function () {
381
- var i=0, x, str='';
382
- while (i < arguments.length) {
383
- if (x = toVal(arguments[i++])) {
384
- str && (str += ' ');
385
- str += x
386
- }
387
- }
388
- return str;
389
- });
390
-
391
-
392
- /***/ }),
393
- /* 6 */
394
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
395
-
396
- "use strict";
397
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__ = __webpack_require__(3);
398
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__material_ui_styles__ = __webpack_require__(20);
399
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__defaultTheme__ = __webpack_require__(52);
400
-
401
-
402
-
403
-
404
- function withStyles(stylesOrCreator, options) {
405
- return Object(__WEBPACK_IMPORTED_MODULE_1__material_ui_styles__["g" /* withStyles */])(stylesOrCreator, Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__["a" /* default */])({
406
- defaultTheme: __WEBPACK_IMPORTED_MODULE_2__defaultTheme__["a" /* default */]
407
- }, options));
408
- }
409
-
410
- /* harmony default export */ __webpack_exports__["a"] = (withStyles);
411
-
412
- /***/ }),
413
- /* 7 */
414
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
415
-
416
- "use strict";
417
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__chainPropTypes__ = __webpack_require__(93);
418
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__chainPropTypes__["a"]; });
419
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deepmerge__ = __webpack_require__(341);
420
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_1__deepmerge__["a"]; });
421
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__elementAcceptingRef__ = __webpack_require__(342);
422
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_2__elementAcceptingRef__["a"]; });
423
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__elementTypeAcceptingRef__ = __webpack_require__(343);
424
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_3__elementTypeAcceptingRef__["a"]; });
425
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__exactProp__ = __webpack_require__(344);
426
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_4__exactProp__["a"]; });
427
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__getDisplayName__ = __webpack_require__(345);
428
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_5__getDisplayName__["a"]; });
429
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__ponyfillGlobal__ = __webpack_require__(346);
430
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_6__ponyfillGlobal__["a"]; });
431
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__refType__ = __webpack_require__(347);
432
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return __WEBPACK_IMPORTED_MODULE_7__refType__["a"]; });
433
- /** @license Material-UI v4.9.6
434
- *
435
- * This source code is licensed under the MIT license found in the
436
- * LICENSE file in the root directory of this source tree.
437
- */
438
-
439
-
440
-
441
-
442
-
443
-
444
-
445
-
446
-
447
- /***/ }),
448
- /* 8 */
449
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
450
-
451
- "use strict";
452
- /* WEBPACK VAR INJECTION */(function(process) {/* harmony export (immutable) */ __webpack_exports__["a"] = capitalize;
453
- // It should to be noted that this function isn't equivalent to `text-transform: capitalize`.
454
- //
455
- // A strict capitalization should uppercase the first letter of each word a the sentence.
456
- // We only handle the first word.
457
- function capitalize(string) {
458
- if (process.env.NODE_ENV !== 'production') {
459
- if (typeof string !== 'string') {
460
- throw new Error('Material-UI: capitalize(string) expects a string argument.');
461
- }
462
- }
463
-
464
- return string.charAt(0).toUpperCase() + string.slice(1);
465
- }
466
- /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(1)))
467
-
468
- /***/ }),
469
- /* 9 */
470
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
471
-
472
- "use strict";
473
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__capitalize__ = __webpack_require__(8);
474
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__capitalize__["a"]; });
475
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecatedPropType__ = __webpack_require__(192);
476
- /* unused harmony reexport createChainedFunction */
477
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__createSvgIcon__ = __webpack_require__(19);
478
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_2__createSvgIcon__["a"]; });
479
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__debounce__ = __webpack_require__(38);
480
- /* unused harmony reexport debounce */
481
- /* unused harmony reexport deprecatedPropType */
482
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__isMuiElement__ = __webpack_require__(55);
483
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_4__isMuiElement__["a"]; });
484
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__ownerDocument__ = __webpack_require__(30);
485
- /* unused harmony reexport ownerDocument */
486
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__ownerWindow__ = __webpack_require__(56);
487
- /* unused harmony reexport ownerWindow */
488
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__requirePropFactory__ = __webpack_require__(193);
489
- /* unused harmony reexport requirePropFactory */
490
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__setRef__ = __webpack_require__(39);
491
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_8__setRef__["a"]; });
492
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__unsupportedProp__ = __webpack_require__(74);
493
- /* unused harmony reexport unsupportedProp */
494
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__useControlled__ = __webpack_require__(40);
495
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_10__useControlled__["a"]; });
496
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__useEventCallback__ = __webpack_require__(32);
497
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_11__useEventCallback__["a"]; });
498
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__useForkRef__ = __webpack_require__(11);
499
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return __WEBPACK_IMPORTED_MODULE_12__useForkRef__["a"]; });
500
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__unstable_useId__ = __webpack_require__(104);
501
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_13__unstable_useId__["a"]; });
502
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__useIsFocusVisible__ = __webpack_require__(57);
503
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return __WEBPACK_IMPORTED_MODULE_14__useIsFocusVisible__["a"]; });
504
-
505
-
506
-
507
-
508
-
509
-
510
-
511
-
512
-
513
-
514
-
515
-
516
-
517
- // eslint-disable-next-line camelcase
518
-
519
-
520
-
521
-
522
- /***/ }),
523
- /* 10 */
524
- /***/ (function(module, exports, __webpack_require__) {
525
-
526
- "use strict";
527
- /* WEBPACK VAR INJECTION */(function(process) {
528
-
529
- function checkDCE() {
530
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
531
- if (
532
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
533
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
534
- ) {
535
- return;
536
- }
537
- if (process.env.NODE_ENV !== 'production') {
538
- // This branch is unreachable because this function is only called
539
- // in production, but the condition is true only in development.
540
- // Therefore if the branch is still here, dead code elimination wasn't
541
- // properly applied.
542
- // Don't change the message. React DevTools relies on it. Also make sure
543
- // this message doesn't occur elsewhere in this function, or it will cause
544
- // a false positive.
545
- throw new Error('^_^');
546
- }
547
- try {
548
- // Verify that the code above has been dead code eliminated (DCE'd).
549
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
550
- } catch (err) {
551
- // DevTools shouldn't crash React, no matter what.
552
- // We should still report in case we break this code.
553
- console.error(err);
554
- }
555
- }
556
-
557
- if (process.env.NODE_ENV === 'production') {
558
- // DCE check should happen before ReactDOM bundle executes so that
559
- // DevTools can report bad minification during injection.
560
- checkDCE();
561
- module.exports = __webpack_require__(299);
562
- } else {
563
- module.exports = __webpack_require__(302);
564
- }
565
-
566
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
567
-
568
- /***/ }),
569
- /* 11 */
570
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
571
-
572
- "use strict";
573
- /* harmony export (immutable) */ __webpack_exports__["a"] = useForkRef;
574
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(0);
575
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
576
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__setRef__ = __webpack_require__(39);
577
-
578
-
579
- function useForkRef(refA, refB) {
580
- /**
581
- * This will create a new function if the ref props change and are defined.
582
- * This means react will call the old forkRef with `null` and the new forkRef
583
- * with the ref. Cleanup naturally emerges from this behavior
584
- */
585
- return __WEBPACK_IMPORTED_MODULE_0_react__["useMemo"](function () {
586
- if (refA == null && refB == null) {
587
- return null;
588
- }
589
-
590
- return function (refValue) {
591
- Object(__WEBPACK_IMPORTED_MODULE_1__setRef__["a" /* default */])(refA, refValue);
592
- Object(__WEBPACK_IMPORTED_MODULE_1__setRef__["a" /* default */])(refB, refValue);
593
- };
594
- }, [refA, refB]);
595
- }
596
-
597
- /***/ }),
598
- /* 12 */
599
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
600
-
601
- "use strict";
602
- /* harmony export (immutable) */ __webpack_exports__["a"] = _defineProperty;
603
- function _defineProperty(obj, key, value) {
604
- if (key in obj) {
605
- Object.defineProperty(obj, key, {
606
- value: value,
607
- enumerable: true,
608
- configurable: true,
609
- writable: true
610
- });
611
- } else {
612
- obj[key] = value;
613
- }
614
-
615
- return obj;
616
- }
617
-
618
- /***/ }),
619
- /* 13 */
620
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
621
-
622
- "use strict";
623
- /* WEBPACK VAR INJECTION */(function(process) {/* harmony export (immutable) */ __webpack_exports__["a"] = useTheme;
624
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__material_ui_styles__ = __webpack_require__(20);
625
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(0);
626
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
627
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__defaultTheme__ = __webpack_require__(52);
628
-
629
-
630
-
631
- function useTheme() {
632
- var theme = Object(__WEBPACK_IMPORTED_MODULE_0__material_ui_styles__["f" /* useTheme */])() || __WEBPACK_IMPORTED_MODULE_2__defaultTheme__["a" /* default */];
633
-
634
- if (process.env.NODE_ENV !== 'production') {
635
- // eslint-disable-next-line react-hooks/rules-of-hooks
636
- __WEBPACK_IMPORTED_MODULE_1_react___default.a.useDebugValue(theme);
637
- }
638
-
639
- return theme;
640
- }
641
- /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(1)))
642
-
643
- /***/ }),
644
- /* 14 */
645
- /***/ (function(module, exports, __webpack_require__) {
646
-
647
- "use strict";
648
- /* WEBPACK VAR INJECTION */(function(process) {
649
-
650
- if (process.env.NODE_ENV === 'production') {
651
- module.exports = __webpack_require__(307);
652
- } else {
653
- module.exports = __webpack_require__(308);
654
- }
655
-
656
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)))
657
-
658
- /***/ }),
659
- /* 15 */
660
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
661
-
662
- "use strict";
663
- /* WEBPACK VAR INJECTION */(function(process) {/* unused harmony export hexToRgb */
664
- /* unused harmony export rgbToHex */
665
- /* unused harmony export hslToRgb */
666
- /* unused harmony export decomposeColor */
667
- /* unused harmony export recomposeColor */
668
- /* harmony export (immutable) */ __webpack_exports__["d"] = getContrastRatio;
669
- /* unused harmony export getLuminance */
670
- /* harmony export (immutable) */ __webpack_exports__["b"] = emphasize;
671
- /* harmony export (immutable) */ __webpack_exports__["c"] = fade;
672
- /* harmony export (immutable) */ __webpack_exports__["a"] = darken;
673
- /* harmony export (immutable) */ __webpack_exports__["e"] = lighten;
674
- /* eslint-disable no-use-before-define */
675
-
676
- /**
677
- * Returns a number whose value is limited to the given range.
678
- *
679
- * @param {number} value The value to be clamped
680
- * @param {number} min The lower boundary of the output range
681
- * @param {number} max The upper boundary of the output range
682
- * @returns {number} A number in the range [min, max]
683
- */
684
- function clamp(value) {
685
- var min = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
686
- var max = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
687
-
688
- if (process.env.NODE_ENV !== 'production') {
689
- if (value < min || value > max) {
690
- console.error("Material-UI: the value provided ".concat(value, " is out of range [").concat(min, ", ").concat(max, "]."));
691
- }
692
- }
693
-
694
- return Math.min(Math.max(min, value), max);
695
- }
696
- /**
697
- * Converts a color from CSS hex format to CSS rgb format.
698
- *
699
- * @param {string} color - Hex color, i.e. #nnn or #nnnnnn
700
- * @returns {string} A CSS rgb color string
701
- */
702
-
703
-
704
- function hexToRgb(color) {
705
- color = color.substr(1);
706
- var re = new RegExp(".{1,".concat(color.length / 3, "}"), 'g');
707
- var colors = color.match(re);
708
-
709
- if (colors && colors[0].length === 1) {
710
- colors = colors.map(function (n) {
711
- return n + n;
712
- });
713
- }
714
-
715
- return colors ? "rgb(".concat(colors.map(function (n) {
716
- return parseInt(n, 16);
717
- }).join(', '), ")") : '';
718
- }
719
-
720
- function intToHex(int) {
721
- var hex = int.toString(16);
722
- return hex.length === 1 ? "0".concat(hex) : hex;
723
- }
724
- /**
725
- * Converts a color from CSS rgb format to CSS hex format.
726
- *
727
- * @param {string} color - RGB color, i.e. rgb(n, n, n)
728
- * @returns {string} A CSS rgb color string, i.e. #nnnnnn
729
- */
730
-
731
-
732
- function rgbToHex(color) {
733
- // Idempotent
734
- if (color.indexOf('#') === 0) {
735
- return color;
736
- }
737
-
738
- var _decomposeColor = decomposeColor(color),
739
- values = _decomposeColor.values;
740
-
741
- return "#".concat(values.map(function (n) {
742
- return intToHex(n);
743
- }).join(''));
744
- }
745
- /**
746
- * Converts a color from hsl format to rgb format.
747
- *
748
- * @param {string} color - HSL color values
749
- * @returns {string} rgb color values
750
- */
751
-
752
- function hslToRgb(color) {
753
- color = decomposeColor(color);
754
- var _color = color,
755
- values = _color.values;
756
- var h = values[0];
757
- var s = values[1] / 100;
758
- var l = values[2] / 100;
759
- var a = s * Math.min(l, 1 - l);
760
-
761
- var f = function f(n) {
762
- var k = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : (n + h / 30) % 12;
763
- return l - a * Math.max(Math.min(k - 3, 9 - k, 1), -1);
764
- };
765
-
766
- var type = 'rgb';
767
- var rgb = [Math.round(f(0) * 255), Math.round(f(8) * 255), Math.round(f(4) * 255)];
768
-
769
- if (color.type === 'hsla') {
770
- type += 'a';
771
- rgb.push(values[3]);
772
- }
773
-
774
- return recomposeColor({
775
- type: type,
776
- values: rgb
777
- });
778
- }
779
- /**
780
- * Returns an object with the type and values of a color.
781
- *
782
- * Note: Does not support rgb % values.
783
- *
784
- * @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
785
- * @returns {object} - A MUI color object: {type: string, values: number[]}
786
- */
787
-
788
- function decomposeColor(color) {
789
- // Idempotent
790
- if (color.type) {
791
- return color;
792
- }
793
-
794
- if (color.charAt(0) === '#') {
795
- return decomposeColor(hexToRgb(color));
796
- }
797
-
798
- var marker = color.indexOf('(');
799
- var type = color.substring(0, marker);
800
-
801
- if (['rgb', 'rgba', 'hsl', 'hsla'].indexOf(type) === -1) {
802
- throw new Error(["Material-UI: unsupported `".concat(color, "` color."), 'We support the following formats: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla().'].join('\n'));
803
- }
804
-
805
- var values = color.substring(marker + 1, color.length - 1).split(',');
806
- values = values.map(function (value) {
807
- return parseFloat(value);
808
- });
809
- return {
810
- type: type,
811
- values: values
812
- };
813
- }
814
- /**
815
- * Converts a color object with type and values to a string.
816
- *
817
- * @param {object} color - Decomposed color
818
- * @param {string} color.type - One of: 'rgb', 'rgba', 'hsl', 'hsla'
819
- * @param {array} color.values - [n,n,n] or [n,n,n,n]
820
- * @returns {string} A CSS color string
821
- */
822
-
823
- function recomposeColor(color) {
824
- var type = color.type;
825
- var values = color.values;
826
-
827
- if (type.indexOf('rgb') !== -1) {
828
- // Only convert the first 3 values to int (i.e. not alpha)
829
- values = values.map(function (n, i) {
830
- return i < 3 ? parseInt(n, 10) : n;
831
- });
832
- } else if (type.indexOf('hsl') !== -1) {
833
- values[1] = "".concat(values[1], "%");
834
- values[2] = "".concat(values[2], "%");
835
- }
836
-
837
- return "".concat(type, "(").concat(values.join(', '), ")");
838
- }
839
- /**
840
- * Calculates the contrast ratio between two colors.
841
- *
842
- * Formula: https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
843
- *
844
- * @param {string} foreground - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
845
- * @param {string} background - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
846
- * @returns {number} A contrast ratio value in the range 0 - 21.
847
- */
848
-
849
- function getContrastRatio(foreground, background) {
850
- var lumA = getLuminance(foreground);
851
- var lumB = getLuminance(background);
852
- return (Math.max(lumA, lumB) + 0.05) / (Math.min(lumA, lumB) + 0.05);
853
- }
854
- /**
855
- * The relative brightness of any point in a color space,
856
- * normalized to 0 for darkest black and 1 for lightest white.
857
- *
858
- * Formula: https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
859
- *
860
- * @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
861
- * @returns {number} The relative brightness of the color in the range 0 - 1
862
- */
863
-
864
- function getLuminance(color) {
865
- color = decomposeColor(color);
866
- var rgb = color.type === 'hsl' ? decomposeColor(hslToRgb(color)).values : color.values;
867
- rgb = rgb.map(function (val) {
868
- val /= 255; // normalized
869
-
870
- return val <= 0.03928 ? val / 12.92 : Math.pow((val + 0.055) / 1.055, 2.4);
871
- }); // Truncate at 3 digits
872
-
873
- return Number((0.2126 * rgb[0] + 0.7152 * rgb[1] + 0.0722 * rgb[2]).toFixed(3));
874
- }
875
- /**
876
- * Darken or lighten a color, depending on its luminance.
877
- * Light colors are darkened, dark colors are lightened.
878
- *
879
- * @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
880
- * @param {number} coefficient=0.15 - multiplier in the range 0 - 1
881
- * @returns {string} A CSS color string. Hex input values are returned as rgb
882
- */
883
-
884
- function emphasize(color) {
885
- var coefficient = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0.15;
886
- return getLuminance(color) > 0.5 ? darken(color, coefficient) : lighten(color, coefficient);
887
- }
888
- /**
889
- * Set the absolute transparency of a color.
890
- * Any existing alpha values are overwritten.
891
- *
892
- * @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
893
- * @param {number} value - value to set the alpha channel to in the range 0 -1
894
- * @returns {string} A CSS color string. Hex input values are returned as rgb
895
- */
896
-
897
- function fade(color, value) {
898
- color = decomposeColor(color);
899
- value = clamp(value);
900
-
901
- if (color.type === 'rgb' || color.type === 'hsl') {
902
- color.type += 'a';
903
- }
904
-
905
- color.values[3] = value;
906
- return recomposeColor(color);
907
- }
908
- /**
909
- * Darkens a color.
910
- *
911
- * @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
912
- * @param {number} coefficient - multiplier in the range 0 - 1
913
- * @returns {string} A CSS color string. Hex input values are returned as rgb
914
- */
915
-
916
- function darken(color, coefficient) {
917
- color = decomposeColor(color);
918
- coefficient = clamp(coefficient);
919
-
920
- if (color.type.indexOf('hsl') !== -1) {
921
- color.values[2] *= 1 - coefficient;
922
- } else if (color.type.indexOf('rgb') !== -1) {
923
- for (var i = 0; i < 3; i += 1) {
924
- color.values[i] *= 1 - coefficient;
925
- }
926
- }
927
-
928
- return recomposeColor(color);
929
- }
930
- /**
931
- * Lightens a color.
932
- *
933
- * @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
934
- * @param {number} coefficient - multiplier in the range 0 - 1
935
- * @returns {string} A CSS color string. Hex input values are returned as rgb
936
- */
937
-
938
- function lighten(color, coefficient) {
939
- color = decomposeColor(color);
940
- coefficient = clamp(coefficient);
941
-
942
- if (color.type.indexOf('hsl') !== -1) {
943
- color.values[2] += (100 - color.values[2]) * coefficient;
944
- } else if (color.type.indexOf('rgb') !== -1) {
945
- for (var i = 0; i < 3; i += 1) {
946
- color.values[i] += (255 - color.values[i]) * coefficient;
947
- }
948
- }
949
-
950
- return recomposeColor(color);
951
- }
952
- /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(1)))
953
-
954
- /***/ }),
955
- /* 16 */
956
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
957
-
958
- "use strict";
959
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__ButtonBase__ = __webpack_require__(446);
960
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__ButtonBase__["a"]; });
961
-
962
-
963
- /***/ }),
964
- /* 17 */
965
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
966
-
967
- "use strict";
968
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__colorManipulator__ = __webpack_require__(15);
969
- /* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__colorManipulator__["a"]; });
970
- /* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_0__colorManipulator__["b"]; });
971
- /* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_0__colorManipulator__["c"]; });
972
- /* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_0__colorManipulator__["e"]; });
973
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__createMuiTheme__ = __webpack_require__(98);
974
- /* unused harmony reexport createMuiTheme */
975
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__createMuiStrictModeTheme__ = __webpack_require__(414);
976
- /* unused harmony reexport unstable_createMuiStrictModeTheme */
977
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__createStyles__ = __webpack_require__(435);
978
- /* unused harmony reexport createStyles */
979
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__makeStyles__ = __webpack_require__(436);
980
- /* unused harmony reexport makeStyles */
981
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__responsiveFontSizes__ = __webpack_require__(437);
982
- /* unused harmony reexport responsiveFontSizes */
983
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styled__ = __webpack_require__(198);
984
- /* unused harmony reexport styled */
985
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__transitions__ = __webpack_require__(29);
986
- /* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_7__transitions__["b"]; });
987
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__useTheme__ = __webpack_require__(13);
988
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_8__useTheme__["a"]; });
989
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__withStyles__ = __webpack_require__(6);
990
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_9__withStyles__["a"]; });
991
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__withTheme__ = __webpack_require__(439);
992
- /* unused harmony reexport withTheme */
993
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__material_ui_styles__ = __webpack_require__(20);
994
- /* unused harmony reexport createGenerateClassName */
995
- /* unused harmony reexport jssPreset */
996
- /* unused harmony reexport ServerStyleSheets */
997
- /* unused harmony reexport StylesProvider */
998
- /* unused harmony reexport MuiThemeProvider */
999
- /* unused harmony reexport ThemeProvider */
1000
-
1001
- // eslint-disable-next-line camelcase
1002
-
1003
-
1004
-
1005
-
1006
-
1007
-
1008
-
1009
-
1010
-
1011
-
1012
-
1013
-
1014
- /***/ }),
1015
- /* 18 */
1016
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1017
-
1018
- "use strict";
1019
- /* harmony export (immutable) */ __webpack_exports__["a"] = _toConsumableArray;
1020
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__arrayWithoutHoles__ = __webpack_require__(360);
1021
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__iterableToArray__ = __webpack_require__(143);
1022
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__nonIterableSpread__ = __webpack_require__(361);
1023
-
1024
-
1025
-
1026
- function _toConsumableArray(arr) {
1027
- return Object(__WEBPACK_IMPORTED_MODULE_0__arrayWithoutHoles__["a" /* default */])(arr) || Object(__WEBPACK_IMPORTED_MODULE_1__iterableToArray__["a" /* default */])(arr) || Object(__WEBPACK_IMPORTED_MODULE_2__nonIterableSpread__["a" /* default */])();
1028
- }
1029
-
1030
- /***/ }),
1031
- /* 19 */
1032
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1033
-
1034
- "use strict";
1035
- /* WEBPACK VAR INJECTION */(function(process) {/* harmony export (immutable) */ __webpack_exports__["a"] = createSvgIcon;
1036
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__ = __webpack_require__(3);
1037
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(0);
1038
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
1039
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__SvgIcon__ = __webpack_require__(73);
1040
-
1041
-
1042
-
1043
- /**
1044
- * Private module reserved for @material-ui/x packages.
1045
- */
1046
-
1047
- function createSvgIcon(path, displayName) {
1048
- var Component = __WEBPACK_IMPORTED_MODULE_1_react___default.a.memo(__WEBPACK_IMPORTED_MODULE_1_react___default.a.forwardRef(function (props, ref) {
1049
- return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_2__SvgIcon__["a" /* default */], Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__["a" /* default */])({
1050
- ref: ref
1051
- }, props), path);
1052
- }));
1053
-
1054
- if (process.env.NODE_ENV !== 'production') {
1055
- Component.displayName = "".concat(displayName, "Icon");
1056
- }
1057
-
1058
- Component.muiName = __WEBPACK_IMPORTED_MODULE_2__SvgIcon__["a" /* default */].muiName;
1059
- return Component;
1060
- }
1061
- /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(1)))
1062
-
1063
- /***/ }),
1064
- /* 20 */
1065
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1066
-
1067
- "use strict";
1068
- /* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__material_ui_utils__ = __webpack_require__(7);
1069
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__createGenerateClassName__ = __webpack_require__(65);
1070
- /* unused harmony reexport createGenerateClassName */
1071
- /* unused harmony namespace reexport */
1072
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__createStyles__ = __webpack_require__(141);
1073
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_2__createStyles__["a"]; });
1074
- /* unused harmony namespace reexport */
1075
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__getThemeProps__ = __webpack_require__(94);
1076
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_3__getThemeProps__["a"]; });
1077
- /* unused harmony namespace reexport */
1078
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__jssPreset__ = __webpack_require__(95);
1079
- /* unused harmony reexport jssPreset */
1080
- /* unused harmony namespace reexport */
1081
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__makeStyles__ = __webpack_require__(68);
1082
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_5__makeStyles__["a"]; });
1083
- /* unused harmony namespace reexport */
1084
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__mergeClasses__ = __webpack_require__(96);
1085
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_6__mergeClasses__["a"]; });
1086
- /* unused harmony namespace reexport */
1087
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__ServerStyleSheets__ = __webpack_require__(147);
1088
- /* unused harmony reexport ServerStyleSheets */
1089
- /* unused harmony namespace reexport */
1090
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__styled__ = __webpack_require__(148);
1091
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_8__styled__["a"]; });
1092
- /* unused harmony namespace reexport */
1093
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__StylesProvider__ = __webpack_require__(69);
1094
- /* unused harmony reexport StylesProvider */
1095
- /* unused harmony namespace reexport */
1096
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__ThemeProvider__ = __webpack_require__(149);
1097
- /* unused harmony reexport ThemeProvider */
1098
- /* unused harmony namespace reexport */
1099
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__useTheme__ = __webpack_require__(45);
1100
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_11__useTheme__["a"]; });
1101
- /* unused harmony namespace reexport */
1102
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__withStyles__ = __webpack_require__(150);
1103
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_12__withStyles__["a"]; });
1104
- /* unused harmony namespace reexport */
1105
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__withTheme__ = __webpack_require__(151);
1106
- /* unused harmony reexport withTheme */
1107
- /* harmony namespace reexport (by used) */ __webpack_require__.d(__webpack_exports__, "h", function() { return __WEBPACK_IMPORTED_MODULE_13__withTheme__["a"]; });
1108
- /** @license Material-UI v4.9.10
1109
- *
1110
- * This source code is licensed under the MIT license found in the
1111
- * LICENSE file in the root directory of this source tree.
1112
- */
1113
- /* eslint-disable import/export */
1114
-
1115
- /* Warning if there are several instances of @material-ui/styles */
1116
-
1117
- if (process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test' && typeof window !== 'undefined') {
1118
- __WEBPACK_IMPORTED_MODULE_0__material_ui_utils__["g" /* ponyfillGlobal */]['__@material-ui/styles-init__'] = __WEBPACK_IMPORTED_MODULE_0__material_ui_utils__["g" /* ponyfillGlobal */]['__@material-ui/styles-init__'] || 0;