@thecb/components 5.10.0 → 5.10.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +154 -1214
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +200 -1261
- package/dist/index.esm.js.map +1 -1
- package/package.json +5 -4
- package/src/.DS_Store +0 -0
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +1 -1
- package/src/components/molecules/payment-details/PaymentDetails.js +39 -19
- package/src/components/molecules/payment-details/PaymentDetails.stories.js +3 -2
package/dist/index.esm.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React, {
|
|
1
|
+
import React, { createContext, createElement, PureComponent, forwardRef, Component, cloneElement, Children, useContext, Fragment, useRef, useState, useLayoutEffect, memo, useEffect as useEffect$1, useMemo, useCallback, isValidElement, createRef } from 'react';
|
|
2
|
+
import styled, { ThemeContext, css, ThemeProvider } from 'styled-components';
|
|
2
3
|
import theme from 'styled-theming';
|
|
3
4
|
import { Link, useNavigate } from 'react-router-dom';
|
|
4
5
|
import reactDom from 'react-dom';
|
|
@@ -213,1081 +214,6 @@ function _nonIterableRest() {
|
|
|
213
214
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
214
215
|
}
|
|
215
216
|
|
|
216
|
-
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
217
|
-
|
|
218
|
-
function createCommonjsModule(fn, module) {
|
|
219
|
-
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
/** @license React v16.13.1
|
|
223
|
-
* react-is.production.min.js
|
|
224
|
-
*
|
|
225
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
226
|
-
*
|
|
227
|
-
* This source code is licensed under the MIT license found in the
|
|
228
|
-
* LICENSE file in the root directory of this source tree.
|
|
229
|
-
*/
|
|
230
|
-
var b="function"===typeof Symbol&&Symbol.for,c=b?Symbol.for("react.element"):60103,d=b?Symbol.for("react.portal"):60106,e=b?Symbol.for("react.fragment"):60107,f=b?Symbol.for("react.strict_mode"):60108,g=b?Symbol.for("react.profiler"):60114,h=b?Symbol.for("react.provider"):60109,k=b?Symbol.for("react.context"):60110,l=b?Symbol.for("react.async_mode"):60111,m=b?Symbol.for("react.concurrent_mode"):60111,n=b?Symbol.for("react.forward_ref"):60112,p=b?Symbol.for("react.suspense"):60113,q=b?
|
|
231
|
-
Symbol.for("react.suspense_list"):60120,r=b?Symbol.for("react.memo"):60115,t=b?Symbol.for("react.lazy"):60116,v=b?Symbol.for("react.block"):60121,w=b?Symbol.for("react.fundamental"):60117,x=b?Symbol.for("react.responder"):60118,y=b?Symbol.for("react.scope"):60119;
|
|
232
|
-
function z(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}var AsyncMode=l;var ConcurrentMode=m;var ContextConsumer=k;var ContextProvider=h;var Element$1=c;var ForwardRef=n;var Fragment=e;var Lazy=t;var Memo=r;var Portal=d;
|
|
233
|
-
var Profiler=g;var StrictMode=f;var Suspense=p;var isAsyncMode=function(a){return A(a)||z(a)===l};var isConcurrentMode=A;var isContextConsumer=function(a){return z(a)===k};var isContextProvider=function(a){return z(a)===h};var isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c};var isForwardRef=function(a){return z(a)===n};var isFragment=function(a){return z(a)===e};var isLazy=function(a){return z(a)===t};
|
|
234
|
-
var isMemo=function(a){return z(a)===r};var isPortal=function(a){return z(a)===d};var isProfiler=function(a){return z(a)===g};var isStrictMode=function(a){return z(a)===f};var isSuspense=function(a){return z(a)===p};
|
|
235
|
-
var isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||"object"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};var typeOf=z;
|
|
236
|
-
|
|
237
|
-
var reactIs_production_min = {
|
|
238
|
-
AsyncMode: AsyncMode,
|
|
239
|
-
ConcurrentMode: ConcurrentMode,
|
|
240
|
-
ContextConsumer: ContextConsumer,
|
|
241
|
-
ContextProvider: ContextProvider,
|
|
242
|
-
Element: Element$1,
|
|
243
|
-
ForwardRef: ForwardRef,
|
|
244
|
-
Fragment: Fragment,
|
|
245
|
-
Lazy: Lazy,
|
|
246
|
-
Memo: Memo,
|
|
247
|
-
Portal: Portal,
|
|
248
|
-
Profiler: Profiler,
|
|
249
|
-
StrictMode: StrictMode,
|
|
250
|
-
Suspense: Suspense,
|
|
251
|
-
isAsyncMode: isAsyncMode,
|
|
252
|
-
isConcurrentMode: isConcurrentMode,
|
|
253
|
-
isContextConsumer: isContextConsumer,
|
|
254
|
-
isContextProvider: isContextProvider,
|
|
255
|
-
isElement: isElement,
|
|
256
|
-
isForwardRef: isForwardRef,
|
|
257
|
-
isFragment: isFragment,
|
|
258
|
-
isLazy: isLazy,
|
|
259
|
-
isMemo: isMemo,
|
|
260
|
-
isPortal: isPortal,
|
|
261
|
-
isProfiler: isProfiler,
|
|
262
|
-
isStrictMode: isStrictMode,
|
|
263
|
-
isSuspense: isSuspense,
|
|
264
|
-
isValidElementType: isValidElementType,
|
|
265
|
-
typeOf: typeOf
|
|
266
|
-
};
|
|
267
|
-
|
|
268
|
-
var reactIs_development = createCommonjsModule(function (module, exports) {
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
if (process.env.NODE_ENV !== "production") {
|
|
273
|
-
(function() {
|
|
274
|
-
|
|
275
|
-
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
|
|
276
|
-
// nor polyfill, then a plain number is used for performance.
|
|
277
|
-
var hasSymbol = typeof Symbol === 'function' && Symbol.for;
|
|
278
|
-
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
|
|
279
|
-
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
|
|
280
|
-
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
|
|
281
|
-
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
|
|
282
|
-
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
|
|
283
|
-
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
|
|
284
|
-
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
|
|
285
|
-
// (unstable) APIs that have been removed. Can we remove the symbols?
|
|
286
|
-
|
|
287
|
-
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
|
|
288
|
-
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
|
|
289
|
-
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
|
|
290
|
-
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
|
|
291
|
-
var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
|
|
292
|
-
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
|
|
293
|
-
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
|
|
294
|
-
var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
|
|
295
|
-
var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
|
|
296
|
-
var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
|
|
297
|
-
var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
|
|
298
|
-
|
|
299
|
-
function isValidElementType(type) {
|
|
300
|
-
return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
301
|
-
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);
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
function typeOf(object) {
|
|
305
|
-
if (typeof object === 'object' && object !== null) {
|
|
306
|
-
var $$typeof = object.$$typeof;
|
|
307
|
-
|
|
308
|
-
switch ($$typeof) {
|
|
309
|
-
case REACT_ELEMENT_TYPE:
|
|
310
|
-
var type = object.type;
|
|
311
|
-
|
|
312
|
-
switch (type) {
|
|
313
|
-
case REACT_ASYNC_MODE_TYPE:
|
|
314
|
-
case REACT_CONCURRENT_MODE_TYPE:
|
|
315
|
-
case REACT_FRAGMENT_TYPE:
|
|
316
|
-
case REACT_PROFILER_TYPE:
|
|
317
|
-
case REACT_STRICT_MODE_TYPE:
|
|
318
|
-
case REACT_SUSPENSE_TYPE:
|
|
319
|
-
return type;
|
|
320
|
-
|
|
321
|
-
default:
|
|
322
|
-
var $$typeofType = type && type.$$typeof;
|
|
323
|
-
|
|
324
|
-
switch ($$typeofType) {
|
|
325
|
-
case REACT_CONTEXT_TYPE:
|
|
326
|
-
case REACT_FORWARD_REF_TYPE:
|
|
327
|
-
case REACT_LAZY_TYPE:
|
|
328
|
-
case REACT_MEMO_TYPE:
|
|
329
|
-
case REACT_PROVIDER_TYPE:
|
|
330
|
-
return $$typeofType;
|
|
331
|
-
|
|
332
|
-
default:
|
|
333
|
-
return $$typeof;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
case REACT_PORTAL_TYPE:
|
|
339
|
-
return $$typeof;
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
return undefined;
|
|
344
|
-
} // AsyncMode is deprecated along with isAsyncMode
|
|
345
|
-
|
|
346
|
-
var AsyncMode = REACT_ASYNC_MODE_TYPE;
|
|
347
|
-
var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
|
|
348
|
-
var ContextConsumer = REACT_CONTEXT_TYPE;
|
|
349
|
-
var ContextProvider = REACT_PROVIDER_TYPE;
|
|
350
|
-
var Element = REACT_ELEMENT_TYPE;
|
|
351
|
-
var ForwardRef = REACT_FORWARD_REF_TYPE;
|
|
352
|
-
var Fragment = REACT_FRAGMENT_TYPE;
|
|
353
|
-
var Lazy = REACT_LAZY_TYPE;
|
|
354
|
-
var Memo = REACT_MEMO_TYPE;
|
|
355
|
-
var Portal = REACT_PORTAL_TYPE;
|
|
356
|
-
var Profiler = REACT_PROFILER_TYPE;
|
|
357
|
-
var StrictMode = REACT_STRICT_MODE_TYPE;
|
|
358
|
-
var Suspense = REACT_SUSPENSE_TYPE;
|
|
359
|
-
var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated
|
|
360
|
-
|
|
361
|
-
function isAsyncMode(object) {
|
|
362
|
-
{
|
|
363
|
-
if (!hasWarnedAboutDeprecatedIsAsyncMode) {
|
|
364
|
-
hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
|
|
365
|
-
|
|
366
|
-
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.');
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
|
|
371
|
-
}
|
|
372
|
-
function isConcurrentMode(object) {
|
|
373
|
-
return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
|
|
374
|
-
}
|
|
375
|
-
function isContextConsumer(object) {
|
|
376
|
-
return typeOf(object) === REACT_CONTEXT_TYPE;
|
|
377
|
-
}
|
|
378
|
-
function isContextProvider(object) {
|
|
379
|
-
return typeOf(object) === REACT_PROVIDER_TYPE;
|
|
380
|
-
}
|
|
381
|
-
function isElement(object) {
|
|
382
|
-
return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
383
|
-
}
|
|
384
|
-
function isForwardRef(object) {
|
|
385
|
-
return typeOf(object) === REACT_FORWARD_REF_TYPE;
|
|
386
|
-
}
|
|
387
|
-
function isFragment(object) {
|
|
388
|
-
return typeOf(object) === REACT_FRAGMENT_TYPE;
|
|
389
|
-
}
|
|
390
|
-
function isLazy(object) {
|
|
391
|
-
return typeOf(object) === REACT_LAZY_TYPE;
|
|
392
|
-
}
|
|
393
|
-
function isMemo(object) {
|
|
394
|
-
return typeOf(object) === REACT_MEMO_TYPE;
|
|
395
|
-
}
|
|
396
|
-
function isPortal(object) {
|
|
397
|
-
return typeOf(object) === REACT_PORTAL_TYPE;
|
|
398
|
-
}
|
|
399
|
-
function isProfiler(object) {
|
|
400
|
-
return typeOf(object) === REACT_PROFILER_TYPE;
|
|
401
|
-
}
|
|
402
|
-
function isStrictMode(object) {
|
|
403
|
-
return typeOf(object) === REACT_STRICT_MODE_TYPE;
|
|
404
|
-
}
|
|
405
|
-
function isSuspense(object) {
|
|
406
|
-
return typeOf(object) === REACT_SUSPENSE_TYPE;
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
exports.AsyncMode = AsyncMode;
|
|
410
|
-
exports.ConcurrentMode = ConcurrentMode;
|
|
411
|
-
exports.ContextConsumer = ContextConsumer;
|
|
412
|
-
exports.ContextProvider = ContextProvider;
|
|
413
|
-
exports.Element = Element;
|
|
414
|
-
exports.ForwardRef = ForwardRef;
|
|
415
|
-
exports.Fragment = Fragment;
|
|
416
|
-
exports.Lazy = Lazy;
|
|
417
|
-
exports.Memo = Memo;
|
|
418
|
-
exports.Portal = Portal;
|
|
419
|
-
exports.Profiler = Profiler;
|
|
420
|
-
exports.StrictMode = StrictMode;
|
|
421
|
-
exports.Suspense = Suspense;
|
|
422
|
-
exports.isAsyncMode = isAsyncMode;
|
|
423
|
-
exports.isConcurrentMode = isConcurrentMode;
|
|
424
|
-
exports.isContextConsumer = isContextConsumer;
|
|
425
|
-
exports.isContextProvider = isContextProvider;
|
|
426
|
-
exports.isElement = isElement;
|
|
427
|
-
exports.isForwardRef = isForwardRef;
|
|
428
|
-
exports.isFragment = isFragment;
|
|
429
|
-
exports.isLazy = isLazy;
|
|
430
|
-
exports.isMemo = isMemo;
|
|
431
|
-
exports.isPortal = isPortal;
|
|
432
|
-
exports.isProfiler = isProfiler;
|
|
433
|
-
exports.isStrictMode = isStrictMode;
|
|
434
|
-
exports.isSuspense = isSuspense;
|
|
435
|
-
exports.isValidElementType = isValidElementType;
|
|
436
|
-
exports.typeOf = typeOf;
|
|
437
|
-
})();
|
|
438
|
-
}
|
|
439
|
-
});
|
|
440
|
-
var reactIs_development_1 = reactIs_development.AsyncMode;
|
|
441
|
-
var reactIs_development_2 = reactIs_development.ConcurrentMode;
|
|
442
|
-
var reactIs_development_3 = reactIs_development.ContextConsumer;
|
|
443
|
-
var reactIs_development_4 = reactIs_development.ContextProvider;
|
|
444
|
-
var reactIs_development_5 = reactIs_development.Element;
|
|
445
|
-
var reactIs_development_6 = reactIs_development.ForwardRef;
|
|
446
|
-
var reactIs_development_7 = reactIs_development.Fragment;
|
|
447
|
-
var reactIs_development_8 = reactIs_development.Lazy;
|
|
448
|
-
var reactIs_development_9 = reactIs_development.Memo;
|
|
449
|
-
var reactIs_development_10 = reactIs_development.Portal;
|
|
450
|
-
var reactIs_development_11 = reactIs_development.Profiler;
|
|
451
|
-
var reactIs_development_12 = reactIs_development.StrictMode;
|
|
452
|
-
var reactIs_development_13 = reactIs_development.Suspense;
|
|
453
|
-
var reactIs_development_14 = reactIs_development.isAsyncMode;
|
|
454
|
-
var reactIs_development_15 = reactIs_development.isConcurrentMode;
|
|
455
|
-
var reactIs_development_16 = reactIs_development.isContextConsumer;
|
|
456
|
-
var reactIs_development_17 = reactIs_development.isContextProvider;
|
|
457
|
-
var reactIs_development_18 = reactIs_development.isElement;
|
|
458
|
-
var reactIs_development_19 = reactIs_development.isForwardRef;
|
|
459
|
-
var reactIs_development_20 = reactIs_development.isFragment;
|
|
460
|
-
var reactIs_development_21 = reactIs_development.isLazy;
|
|
461
|
-
var reactIs_development_22 = reactIs_development.isMemo;
|
|
462
|
-
var reactIs_development_23 = reactIs_development.isPortal;
|
|
463
|
-
var reactIs_development_24 = reactIs_development.isProfiler;
|
|
464
|
-
var reactIs_development_25 = reactIs_development.isStrictMode;
|
|
465
|
-
var reactIs_development_26 = reactIs_development.isSuspense;
|
|
466
|
-
var reactIs_development_27 = reactIs_development.isValidElementType;
|
|
467
|
-
var reactIs_development_28 = reactIs_development.typeOf;
|
|
468
|
-
|
|
469
|
-
var reactIs = createCommonjsModule(function (module) {
|
|
470
|
-
|
|
471
|
-
if (process.env.NODE_ENV === 'production') {
|
|
472
|
-
module.exports = reactIs_production_min;
|
|
473
|
-
} else {
|
|
474
|
-
module.exports = reactIs_development;
|
|
475
|
-
}
|
|
476
|
-
});
|
|
477
|
-
var reactIs_1 = reactIs.AsyncMode;
|
|
478
|
-
var reactIs_2 = reactIs.ConcurrentMode;
|
|
479
|
-
var reactIs_3 = reactIs.ContextConsumer;
|
|
480
|
-
var reactIs_4 = reactIs.ContextProvider;
|
|
481
|
-
var reactIs_5 = reactIs.Element;
|
|
482
|
-
var reactIs_6 = reactIs.ForwardRef;
|
|
483
|
-
var reactIs_7 = reactIs.Fragment;
|
|
484
|
-
var reactIs_8 = reactIs.Lazy;
|
|
485
|
-
var reactIs_9 = reactIs.Memo;
|
|
486
|
-
var reactIs_10 = reactIs.Portal;
|
|
487
|
-
var reactIs_11 = reactIs.Profiler;
|
|
488
|
-
var reactIs_12 = reactIs.StrictMode;
|
|
489
|
-
var reactIs_13 = reactIs.Suspense;
|
|
490
|
-
var reactIs_14 = reactIs.isAsyncMode;
|
|
491
|
-
var reactIs_15 = reactIs.isConcurrentMode;
|
|
492
|
-
var reactIs_16 = reactIs.isContextConsumer;
|
|
493
|
-
var reactIs_17 = reactIs.isContextProvider;
|
|
494
|
-
var reactIs_18 = reactIs.isElement;
|
|
495
|
-
var reactIs_19 = reactIs.isForwardRef;
|
|
496
|
-
var reactIs_20 = reactIs.isFragment;
|
|
497
|
-
var reactIs_21 = reactIs.isLazy;
|
|
498
|
-
var reactIs_22 = reactIs.isMemo;
|
|
499
|
-
var reactIs_23 = reactIs.isPortal;
|
|
500
|
-
var reactIs_24 = reactIs.isProfiler;
|
|
501
|
-
var reactIs_25 = reactIs.isStrictMode;
|
|
502
|
-
var reactIs_26 = reactIs.isSuspense;
|
|
503
|
-
var reactIs_27 = reactIs.isValidElementType;
|
|
504
|
-
var reactIs_28 = reactIs.typeOf;
|
|
505
|
-
|
|
506
|
-
function stylis_min (W) {
|
|
507
|
-
function M(d, c, e, h, a) {
|
|
508
|
-
for (var m = 0, b = 0, v = 0, n = 0, q, g, x = 0, K = 0, k, u = k = q = 0, l = 0, r = 0, I = 0, t = 0, B = e.length, J = B - 1, y, f = '', p = '', F = '', G = '', C; l < B;) {
|
|
509
|
-
g = e.charCodeAt(l);
|
|
510
|
-
l === J && 0 !== b + n + v + m && (0 !== b && (g = 47 === b ? 10 : 47), n = v = m = 0, B++, J++);
|
|
511
|
-
|
|
512
|
-
if (0 === b + n + v + m) {
|
|
513
|
-
if (l === J && (0 < r && (f = f.replace(N, '')), 0 < f.trim().length)) {
|
|
514
|
-
switch (g) {
|
|
515
|
-
case 32:
|
|
516
|
-
case 9:
|
|
517
|
-
case 59:
|
|
518
|
-
case 13:
|
|
519
|
-
case 10:
|
|
520
|
-
break;
|
|
521
|
-
|
|
522
|
-
default:
|
|
523
|
-
f += e.charAt(l);
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
g = 59;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
switch (g) {
|
|
530
|
-
case 123:
|
|
531
|
-
f = f.trim();
|
|
532
|
-
q = f.charCodeAt(0);
|
|
533
|
-
k = 1;
|
|
534
|
-
|
|
535
|
-
for (t = ++l; l < B;) {
|
|
536
|
-
switch (g = e.charCodeAt(l)) {
|
|
537
|
-
case 123:
|
|
538
|
-
k++;
|
|
539
|
-
break;
|
|
540
|
-
|
|
541
|
-
case 125:
|
|
542
|
-
k--;
|
|
543
|
-
break;
|
|
544
|
-
|
|
545
|
-
case 47:
|
|
546
|
-
switch (g = e.charCodeAt(l + 1)) {
|
|
547
|
-
case 42:
|
|
548
|
-
case 47:
|
|
549
|
-
a: {
|
|
550
|
-
for (u = l + 1; u < J; ++u) {
|
|
551
|
-
switch (e.charCodeAt(u)) {
|
|
552
|
-
case 47:
|
|
553
|
-
if (42 === g && 42 === e.charCodeAt(u - 1) && l + 2 !== u) {
|
|
554
|
-
l = u + 1;
|
|
555
|
-
break a;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
break;
|
|
559
|
-
|
|
560
|
-
case 10:
|
|
561
|
-
if (47 === g) {
|
|
562
|
-
l = u + 1;
|
|
563
|
-
break a;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
l = u;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
break;
|
|
575
|
-
|
|
576
|
-
case 91:
|
|
577
|
-
g++;
|
|
578
|
-
|
|
579
|
-
case 40:
|
|
580
|
-
g++;
|
|
581
|
-
|
|
582
|
-
case 34:
|
|
583
|
-
case 39:
|
|
584
|
-
for (; l++ < J && e.charCodeAt(l) !== g;) {
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
if (0 === k) break;
|
|
590
|
-
l++;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
k = e.substring(t, l);
|
|
594
|
-
0 === q && (q = (f = f.replace(ca, '').trim()).charCodeAt(0));
|
|
595
|
-
|
|
596
|
-
switch (q) {
|
|
597
|
-
case 64:
|
|
598
|
-
0 < r && (f = f.replace(N, ''));
|
|
599
|
-
g = f.charCodeAt(1);
|
|
600
|
-
|
|
601
|
-
switch (g) {
|
|
602
|
-
case 100:
|
|
603
|
-
case 109:
|
|
604
|
-
case 115:
|
|
605
|
-
case 45:
|
|
606
|
-
r = c;
|
|
607
|
-
break;
|
|
608
|
-
|
|
609
|
-
default:
|
|
610
|
-
r = O;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
k = M(c, r, k, g, a + 1);
|
|
614
|
-
t = k.length;
|
|
615
|
-
0 < A && (r = X(O, f, I), C = H(3, k, r, c, D, z, t, g, a, h), f = r.join(''), void 0 !== C && 0 === (t = (k = C.trim()).length) && (g = 0, k = ''));
|
|
616
|
-
if (0 < t) switch (g) {
|
|
617
|
-
case 115:
|
|
618
|
-
f = f.replace(da, ea);
|
|
619
|
-
|
|
620
|
-
case 100:
|
|
621
|
-
case 109:
|
|
622
|
-
case 45:
|
|
623
|
-
k = f + '{' + k + '}';
|
|
624
|
-
break;
|
|
625
|
-
|
|
626
|
-
case 107:
|
|
627
|
-
f = f.replace(fa, '$1 $2');
|
|
628
|
-
k = f + '{' + k + '}';
|
|
629
|
-
k = 1 === w || 2 === w && L('@' + k, 3) ? '@-webkit-' + k + '@' + k : '@' + k;
|
|
630
|
-
break;
|
|
631
|
-
|
|
632
|
-
default:
|
|
633
|
-
k = f + k, 112 === h && (k = (p += k, ''));
|
|
634
|
-
} else k = '';
|
|
635
|
-
break;
|
|
636
|
-
|
|
637
|
-
default:
|
|
638
|
-
k = M(c, X(c, f, I), k, h, a + 1);
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
F += k;
|
|
642
|
-
k = I = r = u = q = 0;
|
|
643
|
-
f = '';
|
|
644
|
-
g = e.charCodeAt(++l);
|
|
645
|
-
break;
|
|
646
|
-
|
|
647
|
-
case 125:
|
|
648
|
-
case 59:
|
|
649
|
-
f = (0 < r ? f.replace(N, '') : f).trim();
|
|
650
|
-
if (1 < (t = f.length)) switch (0 === u && (q = f.charCodeAt(0), 45 === q || 96 < q && 123 > q) && (t = (f = f.replace(' ', ':')).length), 0 < A && void 0 !== (C = H(1, f, c, d, D, z, p.length, h, a, h)) && 0 === (t = (f = C.trim()).length) && (f = '\x00\x00'), q = f.charCodeAt(0), g = f.charCodeAt(1), q) {
|
|
651
|
-
case 0:
|
|
652
|
-
break;
|
|
653
|
-
|
|
654
|
-
case 64:
|
|
655
|
-
if (105 === g || 99 === g) {
|
|
656
|
-
G += f + e.charAt(l);
|
|
657
|
-
break;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
default:
|
|
661
|
-
58 !== f.charCodeAt(t - 1) && (p += P(f, q, g, f.charCodeAt(2)));
|
|
662
|
-
}
|
|
663
|
-
I = r = u = q = 0;
|
|
664
|
-
f = '';
|
|
665
|
-
g = e.charCodeAt(++l);
|
|
666
|
-
}
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
switch (g) {
|
|
670
|
-
case 13:
|
|
671
|
-
case 10:
|
|
672
|
-
47 === b ? b = 0 : 0 === 1 + q && 107 !== h && 0 < f.length && (r = 1, f += '\x00');
|
|
673
|
-
0 < A * Y && H(0, f, c, d, D, z, p.length, h, a, h);
|
|
674
|
-
z = 1;
|
|
675
|
-
D++;
|
|
676
|
-
break;
|
|
677
|
-
|
|
678
|
-
case 59:
|
|
679
|
-
case 125:
|
|
680
|
-
if (0 === b + n + v + m) {
|
|
681
|
-
z++;
|
|
682
|
-
break;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
default:
|
|
686
|
-
z++;
|
|
687
|
-
y = e.charAt(l);
|
|
688
|
-
|
|
689
|
-
switch (g) {
|
|
690
|
-
case 9:
|
|
691
|
-
case 32:
|
|
692
|
-
if (0 === n + m + b) switch (x) {
|
|
693
|
-
case 44:
|
|
694
|
-
case 58:
|
|
695
|
-
case 9:
|
|
696
|
-
case 32:
|
|
697
|
-
y = '';
|
|
698
|
-
break;
|
|
699
|
-
|
|
700
|
-
default:
|
|
701
|
-
32 !== g && (y = ' ');
|
|
702
|
-
}
|
|
703
|
-
break;
|
|
704
|
-
|
|
705
|
-
case 0:
|
|
706
|
-
y = '\\0';
|
|
707
|
-
break;
|
|
708
|
-
|
|
709
|
-
case 12:
|
|
710
|
-
y = '\\f';
|
|
711
|
-
break;
|
|
712
|
-
|
|
713
|
-
case 11:
|
|
714
|
-
y = '\\v';
|
|
715
|
-
break;
|
|
716
|
-
|
|
717
|
-
case 38:
|
|
718
|
-
0 === n + b + m && (r = I = 1, y = '\f' + y);
|
|
719
|
-
break;
|
|
720
|
-
|
|
721
|
-
case 108:
|
|
722
|
-
if (0 === n + b + m + E && 0 < u) switch (l - u) {
|
|
723
|
-
case 2:
|
|
724
|
-
112 === x && 58 === e.charCodeAt(l - 3) && (E = x);
|
|
725
|
-
|
|
726
|
-
case 8:
|
|
727
|
-
111 === K && (E = K);
|
|
728
|
-
}
|
|
729
|
-
break;
|
|
730
|
-
|
|
731
|
-
case 58:
|
|
732
|
-
0 === n + b + m && (u = l);
|
|
733
|
-
break;
|
|
734
|
-
|
|
735
|
-
case 44:
|
|
736
|
-
0 === b + v + n + m && (r = 1, y += '\r');
|
|
737
|
-
break;
|
|
738
|
-
|
|
739
|
-
case 34:
|
|
740
|
-
case 39:
|
|
741
|
-
0 === b && (n = n === g ? 0 : 0 === n ? g : n);
|
|
742
|
-
break;
|
|
743
|
-
|
|
744
|
-
case 91:
|
|
745
|
-
0 === n + b + v && m++;
|
|
746
|
-
break;
|
|
747
|
-
|
|
748
|
-
case 93:
|
|
749
|
-
0 === n + b + v && m--;
|
|
750
|
-
break;
|
|
751
|
-
|
|
752
|
-
case 41:
|
|
753
|
-
0 === n + b + m && v--;
|
|
754
|
-
break;
|
|
755
|
-
|
|
756
|
-
case 40:
|
|
757
|
-
if (0 === n + b + m) {
|
|
758
|
-
if (0 === q) switch (2 * x + 3 * K) {
|
|
759
|
-
case 533:
|
|
760
|
-
break;
|
|
761
|
-
|
|
762
|
-
default:
|
|
763
|
-
q = 1;
|
|
764
|
-
}
|
|
765
|
-
v++;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
break;
|
|
769
|
-
|
|
770
|
-
case 64:
|
|
771
|
-
0 === b + v + n + m + u + k && (k = 1);
|
|
772
|
-
break;
|
|
773
|
-
|
|
774
|
-
case 42:
|
|
775
|
-
case 47:
|
|
776
|
-
if (!(0 < n + m + v)) switch (b) {
|
|
777
|
-
case 0:
|
|
778
|
-
switch (2 * g + 3 * e.charCodeAt(l + 1)) {
|
|
779
|
-
case 235:
|
|
780
|
-
b = 47;
|
|
781
|
-
break;
|
|
782
|
-
|
|
783
|
-
case 220:
|
|
784
|
-
t = l, b = 42;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
break;
|
|
788
|
-
|
|
789
|
-
case 42:
|
|
790
|
-
47 === g && 42 === x && t + 2 !== l && (33 === e.charCodeAt(t + 2) && (p += e.substring(t, l + 1)), y = '', b = 0);
|
|
791
|
-
}
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
0 === b && (f += y);
|
|
795
|
-
}
|
|
796
|
-
|
|
797
|
-
K = x;
|
|
798
|
-
x = g;
|
|
799
|
-
l++;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
t = p.length;
|
|
803
|
-
|
|
804
|
-
if (0 < t) {
|
|
805
|
-
r = c;
|
|
806
|
-
if (0 < A && (C = H(2, p, r, d, D, z, t, h, a, h), void 0 !== C && 0 === (p = C).length)) return G + p + F;
|
|
807
|
-
p = r.join(',') + '{' + p + '}';
|
|
808
|
-
|
|
809
|
-
if (0 !== w * E) {
|
|
810
|
-
2 !== w || L(p, 2) || (E = 0);
|
|
811
|
-
|
|
812
|
-
switch (E) {
|
|
813
|
-
case 111:
|
|
814
|
-
p = p.replace(ha, ':-moz-$1') + p;
|
|
815
|
-
break;
|
|
816
|
-
|
|
817
|
-
case 112:
|
|
818
|
-
p = p.replace(Q, '::-webkit-input-$1') + p.replace(Q, '::-moz-$1') + p.replace(Q, ':-ms-input-$1') + p;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
E = 0;
|
|
822
|
-
}
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
return G + p + F;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
function X(d, c, e) {
|
|
829
|
-
var h = c.trim().split(ia);
|
|
830
|
-
c = h;
|
|
831
|
-
var a = h.length,
|
|
832
|
-
m = d.length;
|
|
833
|
-
|
|
834
|
-
switch (m) {
|
|
835
|
-
case 0:
|
|
836
|
-
case 1:
|
|
837
|
-
var b = 0;
|
|
838
|
-
|
|
839
|
-
for (d = 0 === m ? '' : d[0] + ' '; b < a; ++b) {
|
|
840
|
-
c[b] = Z(d, c[b], e).trim();
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
break;
|
|
844
|
-
|
|
845
|
-
default:
|
|
846
|
-
var v = b = 0;
|
|
847
|
-
|
|
848
|
-
for (c = []; b < a; ++b) {
|
|
849
|
-
for (var n = 0; n < m; ++n) {
|
|
850
|
-
c[v++] = Z(d[n] + ' ', h[b], e).trim();
|
|
851
|
-
}
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
return c;
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
function Z(d, c, e) {
|
|
860
|
-
var h = c.charCodeAt(0);
|
|
861
|
-
33 > h && (h = (c = c.trim()).charCodeAt(0));
|
|
862
|
-
|
|
863
|
-
switch (h) {
|
|
864
|
-
case 38:
|
|
865
|
-
return c.replace(F, '$1' + d.trim());
|
|
866
|
-
|
|
867
|
-
case 58:
|
|
868
|
-
return d.trim() + c.replace(F, '$1' + d.trim());
|
|
869
|
-
|
|
870
|
-
default:
|
|
871
|
-
if (0 < 1 * e && 0 < c.indexOf('\f')) return c.replace(F, (58 === d.charCodeAt(0) ? '' : '$1') + d.trim());
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
return d + c;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
function P(d, c, e, h) {
|
|
878
|
-
var a = d + ';',
|
|
879
|
-
m = 2 * c + 3 * e + 4 * h;
|
|
880
|
-
|
|
881
|
-
if (944 === m) {
|
|
882
|
-
d = a.indexOf(':', 9) + 1;
|
|
883
|
-
var b = a.substring(d, a.length - 1).trim();
|
|
884
|
-
b = a.substring(0, d).trim() + b + ';';
|
|
885
|
-
return 1 === w || 2 === w && L(b, 1) ? '-webkit-' + b + b : b;
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
if (0 === w || 2 === w && !L(a, 1)) return a;
|
|
889
|
-
|
|
890
|
-
switch (m) {
|
|
891
|
-
case 1015:
|
|
892
|
-
return 97 === a.charCodeAt(10) ? '-webkit-' + a + a : a;
|
|
893
|
-
|
|
894
|
-
case 951:
|
|
895
|
-
return 116 === a.charCodeAt(3) ? '-webkit-' + a + a : a;
|
|
896
|
-
|
|
897
|
-
case 963:
|
|
898
|
-
return 110 === a.charCodeAt(5) ? '-webkit-' + a + a : a;
|
|
899
|
-
|
|
900
|
-
case 1009:
|
|
901
|
-
if (100 !== a.charCodeAt(4)) break;
|
|
902
|
-
|
|
903
|
-
case 969:
|
|
904
|
-
case 942:
|
|
905
|
-
return '-webkit-' + a + a;
|
|
906
|
-
|
|
907
|
-
case 978:
|
|
908
|
-
return '-webkit-' + a + '-moz-' + a + a;
|
|
909
|
-
|
|
910
|
-
case 1019:
|
|
911
|
-
case 983:
|
|
912
|
-
return '-webkit-' + a + '-moz-' + a + '-ms-' + a + a;
|
|
913
|
-
|
|
914
|
-
case 883:
|
|
915
|
-
if (45 === a.charCodeAt(8)) return '-webkit-' + a + a;
|
|
916
|
-
if (0 < a.indexOf('image-set(', 11)) return a.replace(ja, '$1-webkit-$2') + a;
|
|
917
|
-
break;
|
|
918
|
-
|
|
919
|
-
case 932:
|
|
920
|
-
if (45 === a.charCodeAt(4)) switch (a.charCodeAt(5)) {
|
|
921
|
-
case 103:
|
|
922
|
-
return '-webkit-box-' + a.replace('-grow', '') + '-webkit-' + a + '-ms-' + a.replace('grow', 'positive') + a;
|
|
923
|
-
|
|
924
|
-
case 115:
|
|
925
|
-
return '-webkit-' + a + '-ms-' + a.replace('shrink', 'negative') + a;
|
|
926
|
-
|
|
927
|
-
case 98:
|
|
928
|
-
return '-webkit-' + a + '-ms-' + a.replace('basis', 'preferred-size') + a;
|
|
929
|
-
}
|
|
930
|
-
return '-webkit-' + a + '-ms-' + a + a;
|
|
931
|
-
|
|
932
|
-
case 964:
|
|
933
|
-
return '-webkit-' + a + '-ms-flex-' + a + a;
|
|
934
|
-
|
|
935
|
-
case 1023:
|
|
936
|
-
if (99 !== a.charCodeAt(8)) break;
|
|
937
|
-
b = a.substring(a.indexOf(':', 15)).replace('flex-', '').replace('space-between', 'justify');
|
|
938
|
-
return '-webkit-box-pack' + b + '-webkit-' + a + '-ms-flex-pack' + b + a;
|
|
939
|
-
|
|
940
|
-
case 1005:
|
|
941
|
-
return ka.test(a) ? a.replace(aa, ':-webkit-') + a.replace(aa, ':-moz-') + a : a;
|
|
942
|
-
|
|
943
|
-
case 1e3:
|
|
944
|
-
b = a.substring(13).trim();
|
|
945
|
-
c = b.indexOf('-') + 1;
|
|
946
|
-
|
|
947
|
-
switch (b.charCodeAt(0) + b.charCodeAt(c)) {
|
|
948
|
-
case 226:
|
|
949
|
-
b = a.replace(G, 'tb');
|
|
950
|
-
break;
|
|
951
|
-
|
|
952
|
-
case 232:
|
|
953
|
-
b = a.replace(G, 'tb-rl');
|
|
954
|
-
break;
|
|
955
|
-
|
|
956
|
-
case 220:
|
|
957
|
-
b = a.replace(G, 'lr');
|
|
958
|
-
break;
|
|
959
|
-
|
|
960
|
-
default:
|
|
961
|
-
return a;
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
return '-webkit-' + a + '-ms-' + b + a;
|
|
965
|
-
|
|
966
|
-
case 1017:
|
|
967
|
-
if (-1 === a.indexOf('sticky', 9)) break;
|
|
968
|
-
|
|
969
|
-
case 975:
|
|
970
|
-
c = (a = d).length - 10;
|
|
971
|
-
b = (33 === a.charCodeAt(c) ? a.substring(0, c) : a).substring(d.indexOf(':', 7) + 1).trim();
|
|
972
|
-
|
|
973
|
-
switch (m = b.charCodeAt(0) + (b.charCodeAt(7) | 0)) {
|
|
974
|
-
case 203:
|
|
975
|
-
if (111 > b.charCodeAt(8)) break;
|
|
976
|
-
|
|
977
|
-
case 115:
|
|
978
|
-
a = a.replace(b, '-webkit-' + b) + ';' + a;
|
|
979
|
-
break;
|
|
980
|
-
|
|
981
|
-
case 207:
|
|
982
|
-
case 102:
|
|
983
|
-
a = a.replace(b, '-webkit-' + (102 < m ? 'inline-' : '') + 'box') + ';' + a.replace(b, '-webkit-' + b) + ';' + a.replace(b, '-ms-' + b + 'box') + ';' + a;
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
return a + ';';
|
|
987
|
-
|
|
988
|
-
case 938:
|
|
989
|
-
if (45 === a.charCodeAt(5)) switch (a.charCodeAt(6)) {
|
|
990
|
-
case 105:
|
|
991
|
-
return b = a.replace('-items', ''), '-webkit-' + a + '-webkit-box-' + b + '-ms-flex-' + b + a;
|
|
992
|
-
|
|
993
|
-
case 115:
|
|
994
|
-
return '-webkit-' + a + '-ms-flex-item-' + a.replace(ba, '') + a;
|
|
995
|
-
|
|
996
|
-
default:
|
|
997
|
-
return '-webkit-' + a + '-ms-flex-line-pack' + a.replace('align-content', '').replace(ba, '') + a;
|
|
998
|
-
}
|
|
999
|
-
break;
|
|
1000
|
-
|
|
1001
|
-
case 973:
|
|
1002
|
-
case 989:
|
|
1003
|
-
if (45 !== a.charCodeAt(3) || 122 === a.charCodeAt(4)) break;
|
|
1004
|
-
|
|
1005
|
-
case 931:
|
|
1006
|
-
case 953:
|
|
1007
|
-
if (!0 === la.test(d)) return 115 === (b = d.substring(d.indexOf(':') + 1)).charCodeAt(0) ? P(d.replace('stretch', 'fill-available'), c, e, h).replace(':fill-available', ':stretch') : a.replace(b, '-webkit-' + b) + a.replace(b, '-moz-' + b.replace('fill-', '')) + a;
|
|
1008
|
-
break;
|
|
1009
|
-
|
|
1010
|
-
case 962:
|
|
1011
|
-
if (a = '-webkit-' + a + (102 === a.charCodeAt(5) ? '-ms-' + a : '') + a, 211 === e + h && 105 === a.charCodeAt(13) && 0 < a.indexOf('transform', 10)) return a.substring(0, a.indexOf(';', 27) + 1).replace(ma, '$1-webkit-$2') + a;
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
|
-
return a;
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
function L(d, c) {
|
|
1018
|
-
var e = d.indexOf(1 === c ? ':' : '{'),
|
|
1019
|
-
h = d.substring(0, 3 !== c ? e : 10);
|
|
1020
|
-
e = d.substring(e + 1, d.length - 1);
|
|
1021
|
-
return R(2 !== c ? h : h.replace(na, '$1'), e, c);
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
function ea(d, c) {
|
|
1025
|
-
var e = P(c, c.charCodeAt(0), c.charCodeAt(1), c.charCodeAt(2));
|
|
1026
|
-
return e !== c + ';' ? e.replace(oa, ' or ($1)').substring(4) : '(' + c + ')';
|
|
1027
|
-
}
|
|
1028
|
-
|
|
1029
|
-
function H(d, c, e, h, a, m, b, v, n, q) {
|
|
1030
|
-
for (var g = 0, x = c, w; g < A; ++g) {
|
|
1031
|
-
switch (w = S[g].call(B, d, x, e, h, a, m, b, v, n, q)) {
|
|
1032
|
-
case void 0:
|
|
1033
|
-
case !1:
|
|
1034
|
-
case !0:
|
|
1035
|
-
case null:
|
|
1036
|
-
break;
|
|
1037
|
-
|
|
1038
|
-
default:
|
|
1039
|
-
x = w;
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
if (x !== c) return x;
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
function T(d) {
|
|
1047
|
-
switch (d) {
|
|
1048
|
-
case void 0:
|
|
1049
|
-
case null:
|
|
1050
|
-
A = S.length = 0;
|
|
1051
|
-
break;
|
|
1052
|
-
|
|
1053
|
-
default:
|
|
1054
|
-
if ('function' === typeof d) S[A++] = d;else if ('object' === typeof d) for (var c = 0, e = d.length; c < e; ++c) {
|
|
1055
|
-
T(d[c]);
|
|
1056
|
-
} else Y = !!d | 0;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
return T;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
function U(d) {
|
|
1063
|
-
d = d.prefix;
|
|
1064
|
-
void 0 !== d && (R = null, d ? 'function' !== typeof d ? w = 1 : (w = 2, R = d) : w = 0);
|
|
1065
|
-
return U;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
function B(d, c) {
|
|
1069
|
-
var e = d;
|
|
1070
|
-
33 > e.charCodeAt(0) && (e = e.trim());
|
|
1071
|
-
V = e;
|
|
1072
|
-
e = [V];
|
|
1073
|
-
|
|
1074
|
-
if (0 < A) {
|
|
1075
|
-
var h = H(-1, c, e, e, D, z, 0, 0, 0, 0);
|
|
1076
|
-
void 0 !== h && 'string' === typeof h && (c = h);
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
var a = M(O, e, c, 0, 0);
|
|
1080
|
-
0 < A && (h = H(-2, a, e, e, D, z, a.length, 0, 0, 0), void 0 !== h && (a = h));
|
|
1081
|
-
V = '';
|
|
1082
|
-
E = 0;
|
|
1083
|
-
z = D = 1;
|
|
1084
|
-
return a;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
var ca = /^\0+/g,
|
|
1088
|
-
N = /[\0\r\f]/g,
|
|
1089
|
-
aa = /: */g,
|
|
1090
|
-
ka = /zoo|gra/,
|
|
1091
|
-
ma = /([,: ])(transform)/g,
|
|
1092
|
-
ia = /,\r+?/g,
|
|
1093
|
-
F = /([\t\r\n ])*\f?&/g,
|
|
1094
|
-
fa = /@(k\w+)\s*(\S*)\s*/,
|
|
1095
|
-
Q = /::(place)/g,
|
|
1096
|
-
ha = /:(read-only)/g,
|
|
1097
|
-
G = /[svh]\w+-[tblr]{2}/,
|
|
1098
|
-
da = /\(\s*(.*)\s*\)/g,
|
|
1099
|
-
oa = /([\s\S]*?);/g,
|
|
1100
|
-
ba = /-self|flex-/g,
|
|
1101
|
-
na = /[^]*?(:[rp][el]a[\w-]+)[^]*/,
|
|
1102
|
-
la = /stretch|:\s*\w+\-(?:conte|avail)/,
|
|
1103
|
-
ja = /([^-])(image-set\()/,
|
|
1104
|
-
z = 1,
|
|
1105
|
-
D = 1,
|
|
1106
|
-
E = 0,
|
|
1107
|
-
w = 1,
|
|
1108
|
-
O = [],
|
|
1109
|
-
S = [],
|
|
1110
|
-
A = 0,
|
|
1111
|
-
R = null,
|
|
1112
|
-
Y = 0,
|
|
1113
|
-
V = '';
|
|
1114
|
-
B.use = T;
|
|
1115
|
-
B.set = U;
|
|
1116
|
-
void 0 !== W && U(W);
|
|
1117
|
-
return B;
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
var unitlessKeys = {
|
|
1121
|
-
animationIterationCount: 1,
|
|
1122
|
-
borderImageOutset: 1,
|
|
1123
|
-
borderImageSlice: 1,
|
|
1124
|
-
borderImageWidth: 1,
|
|
1125
|
-
boxFlex: 1,
|
|
1126
|
-
boxFlexGroup: 1,
|
|
1127
|
-
boxOrdinalGroup: 1,
|
|
1128
|
-
columnCount: 1,
|
|
1129
|
-
columns: 1,
|
|
1130
|
-
flex: 1,
|
|
1131
|
-
flexGrow: 1,
|
|
1132
|
-
flexPositive: 1,
|
|
1133
|
-
flexShrink: 1,
|
|
1134
|
-
flexNegative: 1,
|
|
1135
|
-
flexOrder: 1,
|
|
1136
|
-
gridRow: 1,
|
|
1137
|
-
gridRowEnd: 1,
|
|
1138
|
-
gridRowSpan: 1,
|
|
1139
|
-
gridRowStart: 1,
|
|
1140
|
-
gridColumn: 1,
|
|
1141
|
-
gridColumnEnd: 1,
|
|
1142
|
-
gridColumnSpan: 1,
|
|
1143
|
-
gridColumnStart: 1,
|
|
1144
|
-
msGridRow: 1,
|
|
1145
|
-
msGridRowSpan: 1,
|
|
1146
|
-
msGridColumn: 1,
|
|
1147
|
-
msGridColumnSpan: 1,
|
|
1148
|
-
fontWeight: 1,
|
|
1149
|
-
lineHeight: 1,
|
|
1150
|
-
opacity: 1,
|
|
1151
|
-
order: 1,
|
|
1152
|
-
orphans: 1,
|
|
1153
|
-
tabSize: 1,
|
|
1154
|
-
widows: 1,
|
|
1155
|
-
zIndex: 1,
|
|
1156
|
-
zoom: 1,
|
|
1157
|
-
WebkitLineClamp: 1,
|
|
1158
|
-
// SVG-related properties
|
|
1159
|
-
fillOpacity: 1,
|
|
1160
|
-
floodOpacity: 1,
|
|
1161
|
-
stopOpacity: 1,
|
|
1162
|
-
strokeDasharray: 1,
|
|
1163
|
-
strokeDashoffset: 1,
|
|
1164
|
-
strokeMiterlimit: 1,
|
|
1165
|
-
strokeOpacity: 1,
|
|
1166
|
-
strokeWidth: 1
|
|
1167
|
-
};
|
|
1168
|
-
|
|
1169
|
-
function memoize(fn) {
|
|
1170
|
-
var cache = Object.create(null);
|
|
1171
|
-
return function (arg) {
|
|
1172
|
-
if (cache[arg] === undefined) cache[arg] = fn(arg);
|
|
1173
|
-
return cache[arg];
|
|
1174
|
-
};
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1177
|
-
var reactPropsRegex = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/; // https://esbench.com/bench/5bfee68a4cd7e6009ef61d23
|
|
1178
|
-
|
|
1179
|
-
var isPropValid = /* #__PURE__ */memoize(function (prop) {
|
|
1180
|
-
return reactPropsRegex.test(prop) || prop.charCodeAt(0) === 111
|
|
1181
|
-
/* o */
|
|
1182
|
-
&& prop.charCodeAt(1) === 110
|
|
1183
|
-
/* n */
|
|
1184
|
-
&& prop.charCodeAt(2) < 91;
|
|
1185
|
-
}
|
|
1186
|
-
/* Z+1 */
|
|
1187
|
-
);
|
|
1188
|
-
|
|
1189
|
-
/**
|
|
1190
|
-
* Copyright 2015, Yahoo! Inc.
|
|
1191
|
-
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
|
|
1192
|
-
*/
|
|
1193
|
-
var REACT_STATICS = {
|
|
1194
|
-
childContextTypes: true,
|
|
1195
|
-
contextType: true,
|
|
1196
|
-
contextTypes: true,
|
|
1197
|
-
defaultProps: true,
|
|
1198
|
-
displayName: true,
|
|
1199
|
-
getDefaultProps: true,
|
|
1200
|
-
getDerivedStateFromError: true,
|
|
1201
|
-
getDerivedStateFromProps: true,
|
|
1202
|
-
mixins: true,
|
|
1203
|
-
propTypes: true,
|
|
1204
|
-
type: true
|
|
1205
|
-
};
|
|
1206
|
-
var KNOWN_STATICS = {
|
|
1207
|
-
name: true,
|
|
1208
|
-
length: true,
|
|
1209
|
-
prototype: true,
|
|
1210
|
-
caller: true,
|
|
1211
|
-
callee: true,
|
|
1212
|
-
arguments: true,
|
|
1213
|
-
arity: true
|
|
1214
|
-
};
|
|
1215
|
-
var FORWARD_REF_STATICS = {
|
|
1216
|
-
'$$typeof': true,
|
|
1217
|
-
render: true,
|
|
1218
|
-
defaultProps: true,
|
|
1219
|
-
displayName: true,
|
|
1220
|
-
propTypes: true
|
|
1221
|
-
};
|
|
1222
|
-
var MEMO_STATICS = {
|
|
1223
|
-
'$$typeof': true,
|
|
1224
|
-
compare: true,
|
|
1225
|
-
defaultProps: true,
|
|
1226
|
-
displayName: true,
|
|
1227
|
-
propTypes: true,
|
|
1228
|
-
type: true
|
|
1229
|
-
};
|
|
1230
|
-
var TYPE_STATICS = {};
|
|
1231
|
-
TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
|
|
1232
|
-
TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
|
|
1233
|
-
|
|
1234
|
-
function getStatics(component) {
|
|
1235
|
-
// React v16.11 and below
|
|
1236
|
-
if (reactIs.isMemo(component)) {
|
|
1237
|
-
return MEMO_STATICS;
|
|
1238
|
-
} // React v16.12 and above
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
var defineProperty = Object.defineProperty;
|
|
1245
|
-
var getOwnPropertyNames = Object.getOwnPropertyNames;
|
|
1246
|
-
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
1247
|
-
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1248
|
-
var getPrototypeOf = Object.getPrototypeOf;
|
|
1249
|
-
var objectPrototype = Object.prototype;
|
|
1250
|
-
function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
|
|
1251
|
-
if (typeof sourceComponent !== 'string') {
|
|
1252
|
-
// don't hoist over string (html) components
|
|
1253
|
-
if (objectPrototype) {
|
|
1254
|
-
var inheritedComponent = getPrototypeOf(sourceComponent);
|
|
1255
|
-
|
|
1256
|
-
if (inheritedComponent && inheritedComponent !== objectPrototype) {
|
|
1257
|
-
hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
|
|
1258
|
-
}
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
var keys = getOwnPropertyNames(sourceComponent);
|
|
1262
|
-
|
|
1263
|
-
if (getOwnPropertySymbols) {
|
|
1264
|
-
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
var targetStatics = getStatics(targetComponent);
|
|
1268
|
-
var sourceStatics = getStatics(sourceComponent);
|
|
1269
|
-
|
|
1270
|
-
for (var i = 0; i < keys.length; ++i) {
|
|
1271
|
-
var key = keys[i];
|
|
1272
|
-
|
|
1273
|
-
if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
|
|
1274
|
-
var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
|
|
1275
|
-
|
|
1276
|
-
try {
|
|
1277
|
-
// Avoid failures from read-only properties
|
|
1278
|
-
defineProperty(targetComponent, key, descriptor);
|
|
1279
|
-
} catch (e) {}
|
|
1280
|
-
}
|
|
1281
|
-
}
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
return targetComponent;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
var hoistNonReactStatics_cjs = hoistNonReactStatics;
|
|
1288
|
-
|
|
1289
|
-
function y$1(){return (y$1=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r]);}return e}).apply(this,arguments)}var v$1=function(e,t){for(var n=[e[0]],r=0,o=t.length;r<o;r+=1)n.push(t[r],e[r+1]);return n},g$1=function(t){return null!==t&&"object"==typeof t&&"[object Object]"===(t.toString?t.toString():Object.prototype.toString.call(t))&&!reactIs_28(t)},S=Object.freeze([]),w$1=Object.freeze({});function E(e){return "function"==typeof e}function b$1(e){return "production"!==process.env.NODE_ENV&&"string"==typeof e&&e||e.displayName||e.name||"Component"}function _(e){return e&&"string"==typeof e.styledComponentId}var N="undefined"!=typeof process&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",C="undefined"!=typeof window&&"HTMLElement"in window,I=Boolean("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY?"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY:"production"!==process.env.NODE_ENV),O="production"!==process.env.NODE_ENV?{1:"Cannot create styled-component for component: %s.\n\n",2:"Can't collect styles once you've consumed a `ServerStyleSheet`'s styles! `ServerStyleSheet` is a one off instance for each server-side render cycle.\n\n- Are you trying to reuse it across renders?\n- Are you accidentally calling collectStyles twice?\n\n",3:"Streaming SSR is only supported in a Node.js environment; Please do not try to call this method in the browser.\n\n",4:"The `StyleSheetManager` expects a valid target or sheet prop!\n\n- Does this error occur on the client and is your target falsy?\n- Does this error occur on the server and is the sheet falsy?\n\n",5:"The clone method cannot be used on the client!\n\n- Are you running in a client-like environment on the server?\n- Are you trying to run SSR on the client?\n\n",6:"Trying to insert a new style tag, but the given Node is unmounted!\n\n- Are you using a custom target that isn't mounted?\n- Does your document not have a valid head element?\n- Have you accidentally removed a style tag manually?\n\n",7:'ThemeProvider: Please return an object from your "theme" prop function, e.g.\n\n```js\ntheme={() => ({})}\n```\n\n',8:'ThemeProvider: Please make your "theme" prop an object.\n\n',9:"Missing document `<head>`\n\n",10:"Cannot find a StyleSheet instance. Usually this happens if there are multiple copies of styled-components loaded at once. Check out this issue for how to troubleshoot and fix the common cases where this situation can happen: https://github.com/styled-components/styled-components/issues/1941#issuecomment-417862021\n\n",11:"_This error was replaced with a dev-time warning, it will be deleted for v4 final._ [createGlobalStyle] received children which will not be rendered. Please use the component without passing children elements.\n\n",12:"It seems you are interpolating a keyframe declaration (%s) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\\`\\` helper which ensures the styles are injected correctly. See https://www.styled-components.com/docs/api#css\n\n",13:"%s is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.\n\n",14:'ThemeProvider: "theme" prop is required.\n\n',15:"A stylis plugin has been supplied that is not named. We need a name for each plugin to be able to prevent styling collisions between different stylis configurations within the same app. Before you pass your plugin to `<StyleSheetManager stylisPlugins={[]}>`, please make sure each plugin is uniquely-named, e.g.\n\n```js\nObject.defineProperty(importedPlugin, 'name', { value: 'some-unique-name' });\n```\n\n",16:"Reached the limit of how many styled components may be created at group %s.\nYou may only create up to 1,073,741,824 components. If you're creating components dynamically,\nas for instance in your render method then you may be running into this limitation.\n\n",17:"CSSStyleSheet could not be found on HTMLStyleElement.\nHas styled-components' style tag been unmounted or altered by another script?\n"}:{};function R(){for(var e=arguments.length<=0?void 0:arguments[0],t=[],n=1,r=arguments.length;n<r;n+=1)t.push(n<0||arguments.length<=n?void 0:arguments[n]);return t.forEach((function(t){e=e.replace(/%[a-z]/,t);})),e}function D(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];throw "production"===process.env.NODE_ENV?new Error("An error occurred. See https://git.io/JUIaE#"+e+" for more information."+(n.length>0?" Args: "+n.join(", "):"")):new Error(R.apply(void 0,[O[e]].concat(n)).trim())}var j=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e;}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,n=0;n<e;n++)t+=this.groupSizes[n];return t},t.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,o=r;e>=o;)(o<<=1)<0&&D(16,""+e);this.groupSizes=new Uint32Array(o),this.groupSizes.set(n),this.length=o;for(var s=r;s<o;s++)this.groupSizes[s]=0;}for(var i=this.indexOfGroup(e+1),a=0,c=t.length;a<c;a++)this.tag.insertRule(i,t[a])&&(this.groupSizes[e]++,i++);},t.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],n=this.indexOfGroup(e),r=n+t;this.groupSizes[e]=0;for(var o=n;o<r;o++)this.tag.deleteRule(n);}},t.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),o=r+n,s=r;s<o;s++)t+=this.tag.getRule(s)+"/*!sc*/\n";return t},e}(),T=new Map,x$1=new Map,k$1=1,V=function(e){if(T.has(e))return T.get(e);for(;x$1.has(k$1);)k$1++;var t=k$1++;return "production"!==process.env.NODE_ENV&&((0|t)<0||t>1<<30)&&D(16,""+t),T.set(e,t),x$1.set(t,e),t},z$1=function(e){return x$1.get(e)},B=function(e,t){t>=k$1&&(k$1=t+1),T.set(e,t),x$1.set(t,e);},M="style["+N+'][data-styled-version="5.3.5"]',G=new RegExp("^"+N+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),L=function(e,t,n){for(var r,o=n.split(","),s=0,i=o.length;s<i;s++)(r=o[s])&&e.registerName(t,r);},F=function(e,t){for(var n=(t.textContent||"").split("/*!sc*/\n"),r=[],o=0,s=n.length;o<s;o++){var i=n[o].trim();if(i){var a=i.match(G);if(a){var c=0|parseInt(a[1],10),u=a[2];0!==c&&(B(u,c),L(e,u,a[3]),e.getTag().insertRules(c,r)),r.length=0;}else r.push(i);}}},Y=function(){return "undefined"!=typeof window&&void 0!==window.__webpack_nonce__?window.__webpack_nonce__:null},q$1=function(e){var t=document.head,n=e||t,r=document.createElement("style"),o=function(e){for(var t=e.childNodes,n=t.length;n>=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(N))return r}}(n),s=void 0!==o?o.nextSibling:null;r.setAttribute(N,"active"),r.setAttribute("data-styled-version","5.3.5");var i=Y();return i&&r.setAttribute("nonce",i),n.insertBefore(r,s),r},H=function(){function e(e){var t=this.element=q$1(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n<r;n++){var o=t[n];if(o.ownerNode===e)return o}D(17);}(t),this.length=0;}var t=e.prototype;return t.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return !1}},t.deleteRule=function(e){this.sheet.deleteRule(e),this.length--;},t.getRule=function(e){var t=this.sheet.cssRules[e];return void 0!==t&&"string"==typeof t.cssText?t.cssText:""},e}(),$=function(){function e(e){var t=this.element=q$1(e);this.nodes=t.childNodes,this.length=0;}var t=e.prototype;return t.insertRule=function(e,t){if(e<=this.length&&e>=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return !1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--;},t.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),W=function(){function e(e){this.rules=[],this.length=0;}var t=e.prototype;return t.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},t.deleteRule=function(e){this.rules.splice(e,1),this.length--;},t.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),U=C,J={isServer:!C,useCSSOMInjection:!I},X=function(){function e(e,t,n){void 0===e&&(e=w$1),void 0===t&&(t={}),this.options=y$1({},J,{},e),this.gs=t,this.names=new Map(n),this.server=!!e.isServer,!this.server&&C&&U&&(U=!1,function(e){for(var t=document.querySelectorAll(M),n=0,r=t.length;n<r;n++){var o=t[n];o&&"active"!==o.getAttribute(N)&&(F(e,o),o.parentNode&&o.parentNode.removeChild(o));}}(this));}e.registerId=function(e){return V(e)};var t=e.prototype;return t.reconstructWithOptions=function(t,n){return void 0===n&&(n=!0),new e(y$1({},this.options,{},t),this.gs,n&&this.names||void 0)},t.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},t.getTag=function(){return this.tag||(this.tag=(n=(t=this.options).isServer,r=t.useCSSOMInjection,o=t.target,e=n?new W(o):r?new H(o):new $(o),new j(e)));var e,t,n,r,o;},t.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},t.registerName=function(e,t){if(V(e),this.names.has(e))this.names.get(e).add(t);else {var n=new Set;n.add(t),this.names.set(e,n);}},t.insertRules=function(e,t,n){this.registerName(e,t),this.getTag().insertRules(V(e),n);},t.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear();},t.clearRules=function(e){this.getTag().clearGroup(V(e)),this.clearNames(e);},t.clearTag=function(){this.tag=void 0;},t.toString=function(){return function(e){for(var t=e.getTag(),n=t.length,r="",o=0;o<n;o++){var s=z$1(o);if(void 0!==s){var i=e.names.get(s),a=t.getGroup(o);if(i&&a&&i.size){var c=N+".g"+o+'[id="'+s+'"]',u="";void 0!==i&&i.forEach((function(e){e.length>0&&(u+=e+",");})),r+=""+a+c+'{content:"'+u+'"}/*!sc*/\n';}}}return r}(this)},e}(),Z=/(a)(d)/gi,K=function(e){return String.fromCharCode(e+(e>25?39:97))};function Q(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=K(t%52)+n;return (K(t%52)+n).replace(Z,"$1-$2")}var ee=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},te=function(e){return ee(5381,e)};function ne(e){for(var t=0;t<e.length;t+=1){var n=e[t];if(E(n)&&!_(n))return !1}return !0}var re=te("5.3.5"),oe=function(){function e(e,t,n){this.rules=e,this.staticRulesId="",this.isStatic="production"===process.env.NODE_ENV&&(void 0===n||n.isStatic)&&ne(e),this.componentId=t,this.baseHash=ee(re,t),this.baseStyle=n,X.registerId(t);}return e.prototype.generateAndInjectStyles=function(e,t,n){var r=this.componentId,o=[];if(this.baseStyle&&o.push(this.baseStyle.generateAndInjectStyles(e,t,n)),this.isStatic&&!n.hash)if(this.staticRulesId&&t.hasNameForId(r,this.staticRulesId))o.push(this.staticRulesId);else {var s=_e(this.rules,e,t,n).join(""),i=Q(ee(this.baseHash,s)>>>0);if(!t.hasNameForId(r,i)){var a=n(s,"."+i,void 0,r);t.insertRules(r,i,a);}o.push(i),this.staticRulesId=i;}else {for(var c=this.rules.length,u=ee(this.baseHash,n.hash),l="",d=0;d<c;d++){var h=this.rules[d];if("string"==typeof h)l+=h,"production"!==process.env.NODE_ENV&&(u=ee(u,h+d));else if(h){var p=_e(h,e,t,n),f=Array.isArray(p)?p.join(""):p;u=ee(u,f+d),l+=f;}}if(l){var m=Q(u>>>0);if(!t.hasNameForId(r,m)){var y=n(l,"."+m,void 0,r);t.insertRules(r,m,y);}o.push(m);}}return o.join(" ")},e}(),se=/^\s*\/\/.*$/gm,ie=[":","[",".","#"];function ae(e){var t,n,r,o,s=void 0===e?w$1:e,i=s.options,a=void 0===i?w$1:i,c=s.plugins,u=void 0===c?S:c,l=new stylis_min(a),d=[],p=function(e){function t(t){if(t)try{e(t+"}");}catch(e){}}return function(n,r,o,s,i,a,c,u,l,d){switch(n){case 1:if(0===l&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===u)return r+"/*|*/";break;case 3:switch(u){case 102:case 112:return e(o[0]+r),"";default:return r+(0===d?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t);}}}((function(e){d.push(e);})),f=function(e,r,s){return 0===r&&-1!==ie.indexOf(s[n.length])||s.match(o)?e:"."+t};function m(e,s,i,a){void 0===a&&(a="&");var c=e.replace(se,""),u=s&&i?i+" "+s+" { "+c+" }":c;return t=a,n=s,r=new RegExp("\\"+n+"\\b","g"),o=new RegExp("(\\"+n+"\\b){2,}"),l(i||!s?"":s,u)}return l.use([].concat(u,[function(e,t,o){2===e&&o.length&&o[0].lastIndexOf(n)>0&&(o[0]=o[0].replace(r,f));},p,function(e){if(-2===e){var t=d;return d=[],t}}])),m.hash=u.length?u.reduce((function(e,t){return t.name||D(15),ee(e,t.name)}),5381).toString():"",m}var ce=React.createContext(),ue=ce.Consumer,le=React.createContext(),de=(le.Consumer,new X),he=ae();function pe(){return useContext(ce)||de}function fe(){return useContext(le)||he}var ye=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=he);var r=n.name+t.hash;e.hasNameForId(n.id,r)||e.insertRules(n.id,r,t(n.rules,r,"@keyframes"));},this.toString=function(){return D(12,String(n.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t;}return e.prototype.getName=function(e){return void 0===e&&(e=he),this.name+e.hash},e}(),ve=/([A-Z])/,ge=/([A-Z])/g,Se=/^ms-/,we=function(e){return "-"+e.toLowerCase()};function Ee(e){return ve.test(e)?e.replace(ge,we).replace(Se,"-ms-"):e}var be=function(e){return null==e||!1===e||""===e};function _e(e,n,r,o){if(Array.isArray(e)){for(var s,i=[],a=0,c=e.length;a<c;a+=1)""!==(s=_e(e[a],n,r,o))&&(Array.isArray(s)?i.push.apply(i,s):i.push(s));return i}if(be(e))return "";if(_(e))return "."+e.styledComponentId;if(E(e)){if("function"!=typeof(l=e)||l.prototype&&l.prototype.isReactComponent||!n)return e;var u=e(n);return "production"!==process.env.NODE_ENV&&reactIs_18(u)&&console.warn(b$1(e)+" is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details."),_e(u,n,r,o)}var l;return e instanceof ye?r?(e.inject(r,o),e.getName(o)):e:g$1(e)?function e(t,n){var r,o,s=[];for(var i in t)t.hasOwnProperty(i)&&!be(t[i])&&(Array.isArray(t[i])&&t[i].isCss||E(t[i])?s.push(Ee(i)+":",t[i],";"):g$1(t[i])?s.push.apply(s,e(t[i],i)):s.push(Ee(i)+": "+(r=i,null==(o=t[i])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||r in unitlessKeys?String(o).trim():o+"px")+";"));return n?[n+" {"].concat(s,["}"]):s}(e):e.toString()}var Ne=function(e){return Array.isArray(e)&&(e.isCss=!0),e};function Ae(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return E(e)||g$1(e)?Ne(_e(v$1(S,[e].concat(n)))):0===n.length&&1===e.length&&"string"==typeof e[0]?e:Ne(_e(v$1(e,n)))}var Ce=/invalid hook call/i,Ie=new Set,Pe=function(e,t){if("production"!==process.env.NODE_ENV){var n="The component "+e+(t?' with the id of "'+t+'"':"")+" has been created dynamically.\nYou may see this warning because you've called styled inside another component.\nTo resolve this only create new StyledComponents outside of any render method and function component.",r=console.error;try{var o=!0;console.error=function(e){if(Ce.test(e))o=!1,Ie.delete(n);else {for(var t=arguments.length,s=new Array(t>1?t-1:0),i=1;i<t;i++)s[i-1]=arguments[i];r.apply(void 0,[e].concat(s));}},useRef(),o&&!Ie.has(n)&&(console.warn(n),Ie.add(n));}catch(e){Ce.test(e.message)&&Ie.delete(n);}finally{console.error=r;}}},Oe=function(e,t,n){return void 0===n&&(n=w$1),e.theme!==n.theme&&e.theme||t||n.theme},Re=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,De=/(^-|-$)/g;function je(e){return e.replace(Re,"-").replace(De,"")}var Te=function(e){return Q(te(e)>>>0)};function xe(e){return "string"==typeof e&&("production"===process.env.NODE_ENV||e.charAt(0)===e.charAt(0).toLowerCase())}var ke=function(e){return "function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},Ve=function(e){return "__proto__"!==e&&"constructor"!==e&&"prototype"!==e};function ze(e,t,n){var r=e[n];ke(t)&&ke(r)?Be(r,t):e[n]=t;}function Be(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];for(var o=0,s=n;o<s.length;o++){var i=s[o];if(ke(i))for(var a in i)Ve(a)&&ze(e,i[a],a);}return e}var Me=React.createContext(),Ge=Me.Consumer;function Le(e){var t=useContext(Me),n=useMemo((function(){return function(e,t){if(!e)return D(14);if(E(e)){var n=e(t);return "production"===process.env.NODE_ENV||null!==n&&!Array.isArray(n)&&"object"==typeof n?n:D(7)}return Array.isArray(e)||"object"!=typeof e?D(8):t?y$1({},t,{},e):e}(e.theme,t)}),[e.theme,t]);return e.children?React.createElement(Me.Provider,{value:n},e.children):null}var Fe={};function Ye(e,t,n){var o=_(e),i=!xe(e),a=t.attrs,c=void 0===a?S:a,d=t.componentId,h=void 0===d?function(e,t){var n="string"!=typeof e?"sc":je(e);Fe[n]=(Fe[n]||0)+1;var r=n+"-"+Te("5.3.5"+n+Fe[n]);return t?t+"-"+r:r}(t.displayName,t.parentComponentId):d,p=t.displayName,v=void 0===p?function(e){return xe(e)?"styled."+e:"Styled("+b$1(e)+")"}(e):p,g=t.displayName&&t.componentId?je(t.displayName)+"-"+t.componentId:t.componentId||h,N=o&&e.attrs?Array.prototype.concat(e.attrs,c).filter(Boolean):c,A=t.shouldForwardProp;o&&e.shouldForwardProp&&(A=t.shouldForwardProp?function(n,r,o){return e.shouldForwardProp(n,r,o)&&t.shouldForwardProp(n,r,o)}:e.shouldForwardProp);var C,I=new oe(n,g,o?e.componentStyle:void 0),P=I.isStatic&&0===c.length,O=function(e,t){return function(e,t,n,r){var o=e.attrs,i=e.componentStyle,a=e.defaultProps,c=e.foldedComponentIds,d=e.shouldForwardProp,h=e.styledComponentId,p=e.target;"production"!==process.env.NODE_ENV&&useDebugValue(h);var m=function(e,t,n){void 0===e&&(e=w$1);var r=y$1({},t,{theme:e}),o={};return n.forEach((function(e){var t,n,s,i=e;for(t in E(i)&&(i=i(r)),i)r[t]=o[t]="className"===t?(n=o[t],s=i[t],n&&s?n+" "+s:n||s):i[t];})),[r,o]}(Oe(t,useContext(Me),a)||w$1,t,o),v=m[0],g=m[1],S=function(e,t,n,r){var o=pe(),s=fe(),i=t?e.generateAndInjectStyles(w$1,o,s):e.generateAndInjectStyles(n,o,s);return "production"!==process.env.NODE_ENV&&useDebugValue(i),"production"!==process.env.NODE_ENV&&!t&&r&&r(i),i}(i,r,v,"production"!==process.env.NODE_ENV?e.warnTooManyClasses:void 0),b=n,_=g.$as||t.$as||g.as||t.as||p,N=xe(_),A=g!==t?y$1({},t,{},g):t,C={};for(var I in A)"$"!==I[0]&&"as"!==I&&("forwardedAs"===I?C.as=A[I]:(d?d(I,isPropValid,_):!N||isPropValid(I))&&(C[I]=A[I]));return t.style&&g.style!==t.style&&(C.style=y$1({},t.style,{},g.style)),C.className=Array.prototype.concat(c,h,S!==h?S:null,t.className,g.className).filter(Boolean).join(" "),C.ref=b,createElement(_,C)}(C,e,t,P)};return O.displayName=v,(C=React.forwardRef(O)).attrs=N,C.componentStyle=I,C.displayName=v,C.shouldForwardProp=A,C.foldedComponentIds=o?Array.prototype.concat(e.foldedComponentIds,e.styledComponentId):S,C.styledComponentId=g,C.target=o?e.target:e,C.withComponent=function(e){var r=t.componentId,o=function(e,t){if(null==e)return {};var n,r,o={},s=Object.keys(e);for(r=0;r<s.length;r++)n=s[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(t,["componentId"]),s=r&&r+"-"+(xe(e)?e:je(b$1(e)));return Ye(e,y$1({},o,{attrs:N,componentId:s}),n)},Object.defineProperty(C,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(t){this._foldedDefaultProps=o?Be({},e.defaultProps,t):t;}}),"production"!==process.env.NODE_ENV&&(Pe(v,g),C.warnTooManyClasses=function(e,t){var n={},r=!1;return function(o){if(!r&&(n[o]=!0,Object.keys(n).length>=200)){var s=t?' with the id of "'+t+'"':"";console.warn("Over 200 classes were generated for component "+e+s+".\nConsider using the attrs method, together with a style object for frequently changed styles.\nExample:\n const Component = styled.div.attrs(props => ({\n style: {\n background: props.background,\n },\n }))`width: 100%;`\n\n <Component />"),r=!0,n={};}}}(v,g)),C.toString=function(){return "."+C.styledComponentId},i&&hoistNonReactStatics_cjs(C,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),C}var qe=function(e){return function e(t,r,o){if(void 0===o&&(o=w$1),!reactIs_27(r))return D(1,String(r));var s=function(){return t(r,o,Ae.apply(void 0,arguments))};return s.withConfig=function(n){return e(t,r,y$1({},o,{},n))},s.attrs=function(n){return e(t,r,y$1({},o,{attrs:Array.prototype.concat(o.attrs,n).filter(Boolean)}))},s}(Ye,e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach((function(e){qe[e]=qe(e);}));"production"!==process.env.NODE_ENV&&"undefined"!=typeof navigator&&"ReactNative"===navigator.product&&console.warn("It looks like you've imported 'styled-components' on React Native.\nPerhaps you're looking to import 'styled-components/native'?\nRead more about this at https://www.styled-components.com/docs/basics#react-native"),"production"!==process.env.NODE_ENV&&"test"!==process.env.NODE_ENV&&"undefined"!=typeof window&&(window["__styled-components-init__"]=window["__styled-components-init__"]||0,1===window["__styled-components-init__"]&&console.warn("It looks like there are several instances of 'styled-components' initialized in this application. This may cause dynamic styles to not render properly, errors during the rehydration process, a missing theme prop, and makes your application bigger without good reason.\n\nSee https://s-c.sh/2BAXzed for more info."),window["__styled-components-init__"]+=1);
|
|
1290
|
-
|
|
1291
217
|
/*! *****************************************************************************
|
|
1292
218
|
Copyright (c) Microsoft Corporation.
|
|
1293
219
|
|
|
@@ -1773,17 +699,17 @@ var FLOAT_32_SUPPORTED = typeof Float32Array !== 'undefined';
|
|
|
1773
699
|
var a = function (a1, a2) {
|
|
1774
700
|
return 1.0 - 3.0 * a2 + 3.0 * a1;
|
|
1775
701
|
};
|
|
1776
|
-
var b
|
|
702
|
+
var b = function (a1, a2) {
|
|
1777
703
|
return 3.0 * a2 - 6.0 * a1;
|
|
1778
704
|
};
|
|
1779
|
-
var c
|
|
705
|
+
var c = function (a1) {
|
|
1780
706
|
return 3.0 * a1;
|
|
1781
707
|
};
|
|
1782
708
|
var getSlope = function (t, a1, a2) {
|
|
1783
|
-
return 3.0 * a(a1, a2) * t * t + 2.0 * b
|
|
709
|
+
return 3.0 * a(a1, a2) * t * t + 2.0 * b(a1, a2) * t + c(a1);
|
|
1784
710
|
};
|
|
1785
711
|
var calcBezier = function (t, a1, a2) {
|
|
1786
|
-
return ((a(a1, a2) * t + b
|
|
712
|
+
return ((a(a1, a2) * t + b(a1, a2)) * t + c(a1)) * t;
|
|
1787
713
|
};
|
|
1788
714
|
function cubicBezier(mX1, mY1, mX2, mY2) {
|
|
1789
715
|
var sampleValues = FLOAT_32_SUPPORTED ? new Float32Array(K_SPLINE_TABLE_SIZE) : new Array(K_SPLINE_TABLE_SIZE);
|
|
@@ -5185,7 +4111,7 @@ var domPose$1 = function (element, config) {
|
|
|
5185
4111
|
return domPose(createPoseConfig(element, config));
|
|
5186
4112
|
};
|
|
5187
4113
|
|
|
5188
|
-
function memoize
|
|
4114
|
+
function memoize(fn) {
|
|
5189
4115
|
var cache = {};
|
|
5190
4116
|
return function (arg) {
|
|
5191
4117
|
if (cache[arg] === undefined) cache[arg] = fn(arg);
|
|
@@ -5193,10 +4119,10 @@ function memoize$1(fn) {
|
|
|
5193
4119
|
};
|
|
5194
4120
|
}
|
|
5195
4121
|
|
|
5196
|
-
var reactPropsRegex
|
|
4122
|
+
var reactPropsRegex = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|default|defer|dir|disabled|download|draggable|encType|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|itemProp|itemScope|itemType|itemID|itemRef|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/; // https://esbench.com/bench/5bfee68a4cd7e6009ef61d23
|
|
5197
4123
|
|
|
5198
|
-
var index$2 = memoize
|
|
5199
|
-
return reactPropsRegex
|
|
4124
|
+
var index$2 = memoize(function (prop) {
|
|
4125
|
+
return reactPropsRegex.test(prop) || prop.charCodeAt(0) === 111
|
|
5200
4126
|
/* o */
|
|
5201
4127
|
&& prop.charCodeAt(1) === 110
|
|
5202
4128
|
/* n */
|
|
@@ -5818,7 +4744,7 @@ var themeComponent = function themeComponent(component, componentThemeId, fallba
|
|
|
5818
4744
|
variant = _ref7$variant === void 0 ? defaultVariant : _ref7$variant,
|
|
5819
4745
|
props = _objectWithoutProperties(_ref7, _excluded);
|
|
5820
4746
|
|
|
5821
|
-
var themeContext = useContext(
|
|
4747
|
+
var themeContext = useContext(ThemeContext);
|
|
5822
4748
|
var metadata = (_themeContext$metadat = themeContext === null || themeContext === void 0 ? void 0 : themeContext.metadata) !== null && _themeContext$metadat !== void 0 ? _themeContext$metadat : {};
|
|
5823
4749
|
var themeValues = themeContext ? createThemeValues(themeContext, fallbackValues, componentThemeId, variant) : fallbackValues;
|
|
5824
4750
|
return component(_objectSpread2(_objectSpread2({}, props), {}, {
|
|
@@ -6068,7 +4994,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
6068
4994
|
ERROR_COLOR: ERROR_COLOR
|
|
6069
4995
|
});
|
|
6070
4996
|
|
|
6071
|
-
var TextSpan =
|
|
4997
|
+
var TextSpan = styled.span.withConfig({
|
|
6072
4998
|
displayName: "Textstyled__TextSpan",
|
|
6073
4999
|
componentId: "sc-1oy97we-0"
|
|
6074
5000
|
})(["--font-size:", ";font-size:var(--font-size);line-height:calc(1.5 * var(--font-size));font-weight:", ";font-family:", ";color:", ";white-space:", ";&:hover{", "}&:focus{outline:3px solid ", ";outline-offset:2px;}", " ", ""], function (_ref) {
|
|
@@ -6088,16 +5014,22 @@ var TextSpan = qe.span.withConfig({
|
|
|
6088
5014
|
return $textWrap ? "initial" : "nowrap";
|
|
6089
5015
|
}, function (_ref6) {
|
|
6090
5016
|
var hoverStyles = _ref6.hoverStyles;
|
|
6091
|
-
return
|
|
5017
|
+
return css(["", ""], hoverStyles);
|
|
6092
5018
|
}, ROYAL_BLUE, function (_ref7) {
|
|
6093
5019
|
var disabled = _ref7.disabled,
|
|
6094
5020
|
disabledStyles = _ref7.disabledStyles;
|
|
6095
|
-
return disabled &&
|
|
5021
|
+
return disabled && css(["", ""], disabledStyles);
|
|
6096
5022
|
}, function (_ref8) {
|
|
6097
5023
|
var extraStyles = _ref8.extraStyles;
|
|
6098
5024
|
return extraStyles;
|
|
6099
5025
|
});
|
|
6100
5026
|
|
|
5027
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
5028
|
+
|
|
5029
|
+
function createCommonjsModule(fn, module) {
|
|
5030
|
+
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
|
5031
|
+
}
|
|
5032
|
+
|
|
6101
5033
|
var numeral = createCommonjsModule(function (module) {
|
|
6102
5034
|
/*! @preserve
|
|
6103
5035
|
* numeral.js
|
|
@@ -7138,7 +6070,7 @@ var safeChildren = function safeChildren(children) {
|
|
|
7138
6070
|
|
|
7139
6071
|
if (children && children instanceof Array) {
|
|
7140
6072
|
return children.map(function (child) {
|
|
7141
|
-
return unsafeValues.includes(child) ? /*#__PURE__*/React.createElement(Fragment
|
|
6073
|
+
return unsafeValues.includes(child) ? /*#__PURE__*/React.createElement(Fragment, {
|
|
7142
6074
|
key: createUniqueId()
|
|
7143
6075
|
}, replacement) : child;
|
|
7144
6076
|
});
|
|
@@ -7268,7 +6200,7 @@ var _excluded$2 = ["activeStyles", "hoverStyles", "disabledStyles", "extraStyles
|
|
|
7268
6200
|
|
|
7269
6201
|
/* eslint-disable no-unused-vars */
|
|
7270
6202
|
|
|
7271
|
-
var BoxWrapper =
|
|
6203
|
+
var BoxWrapper = styled(function (_ref) {
|
|
7272
6204
|
var activeStyles = _ref.activeStyles,
|
|
7273
6205
|
hoverStyles = _ref.hoverStyles,
|
|
7274
6206
|
disabledStyles = _ref.disabledStyles,
|
|
@@ -7336,27 +6268,27 @@ var BoxWrapper = qe(function (_ref) {
|
|
|
7336
6268
|
}, function (_ref14) {
|
|
7337
6269
|
var hoverStyles = _ref14.hoverStyles,
|
|
7338
6270
|
as = _ref14.as;
|
|
7339
|
-
return
|
|
6271
|
+
return css(["", " ", ""], hoverStyles, as === "button" ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
7340
6272
|
}, function (_ref15) {
|
|
7341
6273
|
var as = _ref15.as;
|
|
7342
|
-
return
|
|
6274
|
+
return css(["outline:3px solid ", ";outline-offset:2px;", ""], ROYAL_BLUE, as === "button" && "\n > * > span {\n border: none;\n outline: none;\n box-shadow: none;\n }");
|
|
7343
6275
|
}, function (_ref16) {
|
|
7344
6276
|
var activeStyles = _ref16.activeStyles,
|
|
7345
6277
|
as = _ref16.as;
|
|
7346
|
-
return
|
|
6278
|
+
return css(["", " ", ""], activeStyles, as === "button" ? " > * > span {\n ".concat(activeStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
7347
6279
|
}, function (_ref17) {
|
|
7348
6280
|
var disabledStyles = _ref17.disabledStyles,
|
|
7349
6281
|
as = _ref17.as;
|
|
7350
|
-
return
|
|
6282
|
+
return css(["", " ", ""], disabledStyles, as === "button" ? " > * > span {\n ".concat(disabledStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
7351
6283
|
}, function (_ref18) {
|
|
7352
6284
|
var color = _ref18.color;
|
|
7353
6285
|
return color;
|
|
7354
6286
|
}, function (_ref19) {
|
|
7355
6287
|
var hiddenStyles = _ref19.hiddenStyles;
|
|
7356
|
-
return hiddenStyles &&
|
|
6288
|
+
return hiddenStyles && css(["display:none;"]);
|
|
7357
6289
|
}, function (_ref20) {
|
|
7358
6290
|
var extraStyles = _ref20.extraStyles;
|
|
7359
|
-
return
|
|
6291
|
+
return css(["", ""], extraStyles);
|
|
7360
6292
|
});
|
|
7361
6293
|
/* eslint-enable no-unused-vars */
|
|
7362
6294
|
|
|
@@ -7440,10 +6372,10 @@ var Box = function Box(_ref) {
|
|
|
7440
6372
|
onFocus: onFocus,
|
|
7441
6373
|
onBlur: onBlur,
|
|
7442
6374
|
onTouchEnd: onTouchEnd
|
|
7443
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6375
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7444
6376
|
};
|
|
7445
6377
|
|
|
7446
|
-
var CenterWrapper =
|
|
6378
|
+
var CenterWrapper = styled.div.withConfig({
|
|
7447
6379
|
displayName: "Centerstyled__CenterWrapper",
|
|
7448
6380
|
componentId: "sc-vawqfc-0"
|
|
7449
6381
|
})(["box-sizing:content-box;margin-left:auto;margin-right:auto;max-width:", ";padding-left:", ";padding-right:", ";", ";"], function (_ref) {
|
|
@@ -7479,13 +6411,13 @@ var Center = function Center(_ref) {
|
|
|
7479
6411
|
maxWidth: maxWidth,
|
|
7480
6412
|
gutters: gutters,
|
|
7481
6413
|
intrinsic: intrinsic
|
|
7482
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6414
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7483
6415
|
};
|
|
7484
6416
|
|
|
7485
6417
|
var _excluded$5 = ["overflow"];
|
|
7486
6418
|
/* eslint-disable no-unused-vars */
|
|
7487
6419
|
|
|
7488
|
-
var ClusterWrapper =
|
|
6420
|
+
var ClusterWrapper = styled(function (_ref) {
|
|
7489
6421
|
var overflow = _ref.overflow,
|
|
7490
6422
|
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
7491
6423
|
|
|
@@ -7509,7 +6441,7 @@ var ClusterWrapper = qe(function (_ref) {
|
|
|
7509
6441
|
var $extraStyles = _ref6.$extraStyles;
|
|
7510
6442
|
return $extraStyles;
|
|
7511
6443
|
});
|
|
7512
|
-
var ClusterInnerWrapper =
|
|
6444
|
+
var ClusterInnerWrapper = styled.div.withConfig({
|
|
7513
6445
|
displayName: "Clusterstyled__ClusterInnerWrapper",
|
|
7514
6446
|
componentId: "sc-1dkqsm7-1"
|
|
7515
6447
|
})(["box-sizing:border-box;display:flex;flex-wrap:", ";justify-content:", ";align-items:", ";margin:calc(", " / 2 * -1);min-height:", ";min-width:", ";> *{margin:calc(", " / 2);}"], function (_ref7) {
|
|
@@ -7575,10 +6507,10 @@ var Cluster = function Cluster(_ref) {
|
|
|
7575
6507
|
minHeight: minHeight,
|
|
7576
6508
|
minWidth: minWidth,
|
|
7577
6509
|
$nowrap: nowrap
|
|
7578
|
-
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6510
|
+
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null))));
|
|
7579
6511
|
};
|
|
7580
6512
|
|
|
7581
|
-
var GridWrapper =
|
|
6513
|
+
var GridWrapper = styled.div.withConfig({
|
|
7582
6514
|
displayName: "Gridstyled__GridWrapper",
|
|
7583
6515
|
componentId: "sc-8iakdj-0"
|
|
7584
6516
|
})(["display:grid;grid-gap:", ";grid-template-columns:", ";@supports (width:min(", ",100%)){&{grid-template-columns:repeat( auto-fill,minmax( ", ",", " ) );}}"], function (_ref) {
|
|
@@ -7634,18 +6566,18 @@ var Grid = function Grid(_ref) {
|
|
|
7634
6566
|
aboveMin: aboveMin,
|
|
7635
6567
|
minColWidth: typeof minColWidth === "number" ? "".concat(minColWidth, "rem") : minColWidth,
|
|
7636
6568
|
maxColWidth: typeof maxColWidth === "number" ? "".concat(maxColWidth, "rem") : maxColWidth
|
|
7637
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6569
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7638
6570
|
};
|
|
7639
6571
|
|
|
7640
6572
|
var _excluded$8 = ["onRight", "childGap", "contentMinWidth", "minHeight", "fullHeight"];
|
|
7641
|
-
var SidebarWrapper =
|
|
6573
|
+
var SidebarWrapper = styled.div.withConfig({
|
|
7642
6574
|
displayName: "Sidebarstyled__SidebarWrapper",
|
|
7643
6575
|
componentId: "sc-1bbn2or-0"
|
|
7644
6576
|
})(["overflow:visible;box-sizing:border-box;", ""], function (_ref) {
|
|
7645
6577
|
var fullHeight = _ref.fullHeight;
|
|
7646
6578
|
return fullHeight ? "height: 100%;" : "";
|
|
7647
6579
|
});
|
|
7648
|
-
var SidebarInnerWrapper =
|
|
6580
|
+
var SidebarInnerWrapper = styled( // eslint-disable-next-line no-unused-vars
|
|
7649
6581
|
function (_ref2) {
|
|
7650
6582
|
var onRight = _ref2.onRight,
|
|
7651
6583
|
childGap = _ref2.childGap,
|
|
@@ -7718,10 +6650,10 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
7718
6650
|
contentMinWidth: contentMinWidth,
|
|
7719
6651
|
fullHeight: fullHeight,
|
|
7720
6652
|
minHeight: minHeight
|
|
7721
|
-
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6653
|
+
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null))));
|
|
7722
6654
|
};
|
|
7723
6655
|
|
|
7724
|
-
var StackWrapper =
|
|
6656
|
+
var StackWrapper = styled.div.withConfig({
|
|
7725
6657
|
displayName: "Stackstyled__StackWrapper",
|
|
7726
6658
|
componentId: "sc-ejhezz-0"
|
|
7727
6659
|
})(["box-sizing:border-box;display:flex;flex-direction:", ";justify-content:", ";height:", ";> *{margin-top:0;margin-bottom:0;}> * + *{", "}", ";"], function (_ref) {
|
|
@@ -7772,10 +6704,10 @@ var Stack = function Stack(_ref) {
|
|
|
7772
6704
|
fullHeight: fullHeight,
|
|
7773
6705
|
direction: direction,
|
|
7774
6706
|
justify: justify
|
|
7775
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6707
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7776
6708
|
};
|
|
7777
6709
|
|
|
7778
|
-
var CoverOuterContainer =
|
|
6710
|
+
var CoverOuterContainer = styled.div.withConfig({
|
|
7779
6711
|
displayName: "Coverstyled__CoverOuterContainer",
|
|
7780
6712
|
componentId: "sc-1jhq379-0"
|
|
7781
6713
|
})(["box-sizing:border-box;display:flex;flex-direction:column;min-height:", ";padding:", ";min-width:", ";> *{margin-top:", ";margin-bottom:", ";}> :first-child{margin-top:0;}", " ", " > :last-child{margin-bottom:0;}"], function (_ref) {
|
|
@@ -7839,10 +6771,10 @@ var Cover = function Cover(_ref) {
|
|
|
7839
6771
|
childGap: childGap,
|
|
7840
6772
|
centerOverride: centerOverride,
|
|
7841
6773
|
fillCenter: fillCenter
|
|
7842
|
-
}, rest), singleChild ? /*#__PURE__*/React.createElement("div", null) : /*#__PURE__*/React.createElement(Fragment
|
|
6774
|
+
}, rest), singleChild ? /*#__PURE__*/React.createElement("div", null) : /*#__PURE__*/React.createElement(Fragment, null), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)), singleChild ? /*#__PURE__*/React.createElement("div", null) : /*#__PURE__*/React.createElement(Fragment, null));
|
|
7843
6775
|
};
|
|
7844
6776
|
|
|
7845
|
-
var FrameOuterContainer =
|
|
6777
|
+
var FrameOuterContainer = styled.div.withConfig({
|
|
7846
6778
|
displayName: "Framestyled__FrameOuterContainer",
|
|
7847
6779
|
componentId: "sc-1syfnuv-0"
|
|
7848
6780
|
})(["box-sizing:border-box;padding-bottom:", ";position:relative;> *{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;}> img,> video{width:100%;height:100%;object-fit:cover;}"], function (_ref) {
|
|
@@ -7876,14 +6808,14 @@ var Frame = function Frame(_ref) {
|
|
|
7876
6808
|
return /*#__PURE__*/React.createElement(FrameOuterContainer, _extends({
|
|
7877
6809
|
numerator: numerator,
|
|
7878
6810
|
denominator: denominator
|
|
7879
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6811
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7880
6812
|
};
|
|
7881
6813
|
|
|
7882
|
-
var SwitcherOuterContainer =
|
|
6814
|
+
var SwitcherOuterContainer = styled.div.withConfig({
|
|
7883
6815
|
displayName: "Switcherstyled__SwitcherOuterContainer",
|
|
7884
6816
|
componentId: "sc-1ym61kc-0"
|
|
7885
6817
|
})(["box-sizing:border-box;display:block;"]);
|
|
7886
|
-
var SwitcherInnerContainer =
|
|
6818
|
+
var SwitcherInnerContainer = styled.div.withConfig({
|
|
7887
6819
|
displayName: "Switcherstyled__SwitcherInnerContainer",
|
|
7888
6820
|
componentId: "sc-1ym61kc-1"
|
|
7889
6821
|
})(["box-sizing:border-box;display:flex;flex-wrap:wrap;overflow:hidden;padding:", ";margin:", ";", " > *{flex-grow:1;", ";", " ", "}", " ", " ", ""], function (_ref) {
|
|
@@ -7915,7 +6847,7 @@ var SwitcherInnerContainer = qe.div.withConfig({
|
|
|
7915
6847
|
return maxChildren ? "> :nth-last-child(".concat(maxChildren + 1, "), > :nth-last-child(").concat(maxChildren + 1, ") ~ * {\n flex-basis: 100%;\n }") : "";
|
|
7916
6848
|
}, function (_ref9) {
|
|
7917
6849
|
var extraStyles = _ref9.extraStyles;
|
|
7918
|
-
return
|
|
6850
|
+
return css(["", ""], extraStyles);
|
|
7919
6851
|
});
|
|
7920
6852
|
|
|
7921
6853
|
var _excluded$d = ["breakpoint", "childGap", "largeChild", "largeChildSize", "maxChildren", "maxChildrenOnly", "padding", "children", "extraStyles", "constrainMobile"];
|
|
@@ -7979,10 +6911,10 @@ var Switcher = function Switcher(_ref) {
|
|
|
7979
6911
|
padding: padding,
|
|
7980
6912
|
extraStyles: extraStyles,
|
|
7981
6913
|
constrainMobile: constrainMobile
|
|
7982
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6914
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null))));
|
|
7983
6915
|
};
|
|
7984
6916
|
|
|
7985
|
-
var ImposterWrapper =
|
|
6917
|
+
var ImposterWrapper = styled.div.withConfig({
|
|
7986
6918
|
displayName: "Imposterstyled__ImposterWrapper",
|
|
7987
6919
|
componentId: "sc-1q0gj35-0"
|
|
7988
6920
|
})(["position:", ";top:", ";left:", ";display:", ";", " ", " ", ";"], function (_ref) {
|
|
@@ -8060,7 +6992,7 @@ var Imposter = function Imposter(_ref) {
|
|
|
8060
6992
|
left: left,
|
|
8061
6993
|
centered: centered,
|
|
8062
6994
|
visible: visible
|
|
8063
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
6995
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
8064
6996
|
};
|
|
8065
6997
|
|
|
8066
6998
|
var Observer$1 = /*#__PURE__*/function () {
|
|
@@ -10509,9 +9441,9 @@ var createMotionComponent = function (_a) {
|
|
|
10509
9441
|
? null
|
|
10510
9442
|
: loadFunctionalityComponents(ref, values, props, parentContext, controls, shouldInheritVariant);
|
|
10511
9443
|
var renderedComponent = renderComponent(ref, style, values, props, isStatic);
|
|
10512
|
-
return (createElement(Fragment
|
|
9444
|
+
return (createElement(Fragment, null,
|
|
10513
9445
|
createElement(MotionContext.Provider, { value: context }, renderedComponent),
|
|
10514
|
-
createElement(Fragment
|
|
9446
|
+
createElement(Fragment, null,
|
|
10515
9447
|
createElement(Mount, { innerRef: ref, values: values, isStatic: isStatic }),
|
|
10516
9448
|
functionality)));
|
|
10517
9449
|
}
|
|
@@ -12722,7 +11654,7 @@ var Exit = {
|
|
|
12722
11654
|
}),
|
|
12723
11655
|
};
|
|
12724
11656
|
|
|
12725
|
-
var isPropValid
|
|
11657
|
+
var isPropValid = function (key) { return !isValidMotionProp(key); };
|
|
12726
11658
|
/**
|
|
12727
11659
|
* Emotion and Styled Components both allow users to pass through arbitrary props to their components
|
|
12728
11660
|
* to dynamically generate CSS. They both use the `@emotion/is-prop-valid` package to determine which
|
|
@@ -12738,7 +11670,7 @@ var isPropValid$1 = function (key) { return !isValidMotionProp(key); };
|
|
|
12738
11670
|
*/
|
|
12739
11671
|
try {
|
|
12740
11672
|
var emotionIsPropValid_1 = require("@emotion/is-prop-valid").default;
|
|
12741
|
-
isPropValid
|
|
11673
|
+
isPropValid = function (key) {
|
|
12742
11674
|
// Handle events explicitly as Emotion validates them all as true
|
|
12743
11675
|
if (key.startsWith("on")) {
|
|
12744
11676
|
return !isValidMotionProp(key);
|
|
@@ -12754,7 +11686,7 @@ catch (_a) {
|
|
|
12754
11686
|
function filterValidProps(props) {
|
|
12755
11687
|
var domProps = {};
|
|
12756
11688
|
for (var key in props) {
|
|
12757
|
-
if (isPropValid
|
|
11689
|
+
if (isPropValid(key)) {
|
|
12758
11690
|
domProps[key] = props[key];
|
|
12759
11691
|
}
|
|
12760
11692
|
}
|
|
@@ -13043,7 +11975,7 @@ var AnimatePresence = function (_a) {
|
|
|
13043
11975
|
// we play onMount animations or not.
|
|
13044
11976
|
if (isInitialRender.current) {
|
|
13045
11977
|
isInitialRender.current = false;
|
|
13046
|
-
return (createElement(Fragment
|
|
11978
|
+
return (createElement(Fragment, null, filteredChildren.map(function (child) { return (createElement(PresenceChild, { key: getChildKey(child), isPresent: true, initial: initial ? undefined : false }, child)); })));
|
|
13047
11979
|
}
|
|
13048
11980
|
// If this is a subsequent render, deal with entering and exiting children
|
|
13049
11981
|
var childrenToRender = __spreadArrays(filteredChildren);
|
|
@@ -13104,7 +12036,7 @@ var AnimatePresence = function (_a) {
|
|
|
13104
12036
|
childrenToRender.length > 1) {
|
|
13105
12037
|
console.warn("You're attempting to animate multiple children within AnimatePresence, but its exitBeforeEnter prop is set to true. This will lead to odd visual behaviour.");
|
|
13106
12038
|
}
|
|
13107
|
-
return (createElement(Fragment
|
|
12039
|
+
return (createElement(Fragment, null, exiting.size
|
|
13108
12040
|
? childrenToRender
|
|
13109
12041
|
: childrenToRender.map(function (child) { return cloneElement(child); })));
|
|
13110
12042
|
};
|
|
@@ -13125,7 +12057,7 @@ if (typeof window !== "undefined") {
|
|
|
13125
12057
|
}
|
|
13126
12058
|
}
|
|
13127
12059
|
|
|
13128
|
-
var MotionWrapper =
|
|
12060
|
+
var MotionWrapper = styled(motion.div).withConfig({
|
|
13129
12061
|
displayName: "Motionstyled__MotionWrapper",
|
|
13130
12062
|
componentId: "sc-1m6r1io-0"
|
|
13131
12063
|
})(["position:", ";display:", ";box-sizing:border-box;padding:", ";border:", ";border-color:", ";border-size:", ";border-style:", ";border-width:", ";border-radius:", ";background-color:", ";box-shadow:", ";min-height:", ";min-width:", ";height:", ";width:", ";text-align:", ";margin:", ";&:hover,&:focus{", ";}&:active{", ";}&:disabled{", ";}", ";"], function (_ref) {
|
|
@@ -13240,10 +12172,10 @@ var Motion = function Motion(_ref) {
|
|
|
13240
12172
|
return /*#__PURE__*/React.createElement(MotionWrapper, _extends({
|
|
13241
12173
|
position: position,
|
|
13242
12174
|
padding: padding
|
|
13243
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
12175
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
13244
12176
|
};
|
|
13245
12177
|
|
|
13246
|
-
var ReelStyled =
|
|
12178
|
+
var ReelStyled = styled.div.withConfig({
|
|
13247
12179
|
displayName: "Reelstyled__ReelStyled",
|
|
13248
12180
|
componentId: "sc-bhf05j-0"
|
|
13249
12181
|
})(["display:flex;overflow-x:", ";padding:", ";height:", ";justify-content:", ";> * + *{margin-left:", ";}> *{flex:0 0 ", ";}", ""], function (_ref) {
|
|
@@ -13310,7 +12242,7 @@ var Reel = function Reel(_ref) {
|
|
|
13310
12242
|
useUnorderedList: useUnorderedList
|
|
13311
12243
|
}, rest, {
|
|
13312
12244
|
role: useOrderedList || useUnorderedList ? "list" : "section"
|
|
13313
|
-
}), safeChildren(children, /*#__PURE__*/React.createElement(Fragment
|
|
12245
|
+
}), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
13314
12246
|
};
|
|
13315
12247
|
|
|
13316
12248
|
/*
|
|
@@ -13531,11 +12463,11 @@ var rotate = posed.div({
|
|
|
13531
12463
|
}
|
|
13532
12464
|
}
|
|
13533
12465
|
});
|
|
13534
|
-
var SpinnerContainer =
|
|
12466
|
+
var SpinnerContainer = styled.div.withConfig({
|
|
13535
12467
|
displayName: "Spinner__SpinnerContainer",
|
|
13536
12468
|
componentId: "sc-jphte-0"
|
|
13537
12469
|
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;"]);
|
|
13538
|
-
var SpinnerIconWrapper =
|
|
12470
|
+
var SpinnerIconWrapper = styled(rotate).withConfig({
|
|
13539
12471
|
displayName: "Spinner__SpinnerIconWrapper",
|
|
13540
12472
|
componentId: "sc-jphte-1"
|
|
13541
12473
|
})(["width:", "px;height:", "px;"], function (_ref) {
|
|
@@ -13597,11 +12529,11 @@ var rotate$1 = posed.div({
|
|
|
13597
12529
|
}
|
|
13598
12530
|
}
|
|
13599
12531
|
});
|
|
13600
|
-
var SpinnerContainer$1 =
|
|
12532
|
+
var SpinnerContainer$1 = styled.div.withConfig({
|
|
13601
12533
|
displayName: "ButtonWithAction__SpinnerContainer",
|
|
13602
12534
|
componentId: "sc-1ffs4ga-0"
|
|
13603
12535
|
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;"]);
|
|
13604
|
-
var SpinnerIconWrapper$1 =
|
|
12536
|
+
var SpinnerIconWrapper$1 = styled(rotate$1).withConfig({
|
|
13605
12537
|
displayName: "ButtonWithAction__SpinnerIconWrapper",
|
|
13606
12538
|
componentId: "sc-1ffs4ga-1"
|
|
13607
12539
|
})([""]);
|
|
@@ -13653,7 +12585,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
13653
12585
|
children = _ref2.children,
|
|
13654
12586
|
rest = _objectWithoutProperties(_ref2, _excluded$h);
|
|
13655
12587
|
|
|
13656
|
-
var themeContext = useContext(
|
|
12588
|
+
var themeContext = useContext(ThemeContext);
|
|
13657
12589
|
var themeValues = createThemeValues(themeContext, fallbackValues$1, "Button", variant);
|
|
13658
12590
|
var isMobile = themeContext.isMobile;
|
|
13659
12591
|
var hoverStyles = "\n outline: none;\n background-color: ".concat(themeValues.hoverBackgroundColor, ";\n border-color: ").concat(themeValues.hoverBorderColor, ";\n color: ").concat(themeValues.hoverColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n cursor: pointer;\n ");
|
|
@@ -14628,11 +13560,11 @@ var GenericCard = function GenericCard() {
|
|
|
14628
13560
|
})))));
|
|
14629
13561
|
};
|
|
14630
13562
|
|
|
14631
|
-
var BankItemWrapper =
|
|
13563
|
+
var BankItemWrapper = styled.div.withConfig({
|
|
14632
13564
|
displayName: "PaymentIcon__BankItemWrapper",
|
|
14633
13565
|
componentId: "sc-1k0jl35-0"
|
|
14634
13566
|
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
14635
|
-
var BankAccountText =
|
|
13567
|
+
var BankAccountText = styled.h4.withConfig({
|
|
14636
13568
|
displayName: "PaymentIcon__BankAccountText",
|
|
14637
13569
|
componentId: "sc-1k0jl35-1"
|
|
14638
13570
|
})(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], CHARADE_GREY);
|
|
@@ -16928,7 +15860,7 @@ var Alert = function Alert(_ref) {
|
|
|
16928
15860
|
|
|
16929
15861
|
var Alert$1 = themeComponent(Alert, "Alert", fallbackValues$4, "info");
|
|
16930
15862
|
|
|
16931
|
-
var TitleText =
|
|
15863
|
+
var TitleText = styled.h1.withConfig({
|
|
16932
15864
|
displayName: "Titlestyled__TitleText",
|
|
16933
15865
|
componentId: "sc-11lhluq-0"
|
|
16934
15866
|
})(["font-size:", ";line-height:1.5;color:", ";font-weight:", ";margin:", ";text-align:", ";font-family:", ";", ";"], function (_ref) {
|
|
@@ -17960,7 +16892,7 @@ var _excluded$k = ["hoverColor", "activeColor", "extrastyles"];
|
|
|
17960
16892
|
|
|
17961
16893
|
/* eslint-disable no-unused-vars */
|
|
17962
16894
|
|
|
17963
|
-
var StyledExternalLink =
|
|
16895
|
+
var StyledExternalLink = styled(function (_ref) {
|
|
17964
16896
|
var hoverColor = _ref.hoverColor,
|
|
17965
16897
|
activeColor = _ref.activeColor,
|
|
17966
16898
|
extrastyles = _ref.extrastyles,
|
|
@@ -18016,7 +16948,7 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
18016
16948
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
18017
16949
|
dataQa = _ref.dataQa,
|
|
18018
16950
|
children = _ref.children;
|
|
18019
|
-
var themeContext = useContext(
|
|
16951
|
+
var themeContext = useContext(ThemeContext);
|
|
18020
16952
|
var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
|
|
18021
16953
|
return /*#__PURE__*/React.createElement(StyledExternalLink, {
|
|
18022
16954
|
href: href,
|
|
@@ -18043,7 +16975,7 @@ var _excluded$l = ["hoverColor", "activeColor", "active", "color", "extrastyles"
|
|
|
18043
16975
|
|
|
18044
16976
|
/* eslint-disable no-unused-vars */
|
|
18045
16977
|
|
|
18046
|
-
var StyledInternalLink =
|
|
16978
|
+
var StyledInternalLink = styled(function (_ref) {
|
|
18047
16979
|
var hoverColor = _ref.hoverColor,
|
|
18048
16980
|
activeColor = _ref.activeColor,
|
|
18049
16981
|
active = _ref.active,
|
|
@@ -18104,7 +17036,7 @@ var InternalLink = function InternalLink(_ref) {
|
|
|
18104
17036
|
dataQa = _ref.dataQa,
|
|
18105
17037
|
_ref$extraStyles = _ref.extraStyles,
|
|
18106
17038
|
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
|
|
18107
|
-
var themeContext = useContext(
|
|
17039
|
+
var themeContext = useContext(ThemeContext);
|
|
18108
17040
|
var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
|
|
18109
17041
|
return /*#__PURE__*/React.createElement(StyledInternalLink, {
|
|
18110
17042
|
to: to,
|
|
@@ -18126,7 +17058,7 @@ var InternalLink = function InternalLink(_ref) {
|
|
|
18126
17058
|
var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
18127
17059
|
var _ref$breadcrumbsList = _ref.breadcrumbsList,
|
|
18128
17060
|
breadcrumbsList = _ref$breadcrumbsList === void 0 ? [] : _ref$breadcrumbsList;
|
|
18129
|
-
var themeContext = useContext(
|
|
17061
|
+
var themeContext = useContext(ThemeContext);
|
|
18130
17062
|
var themeValues = createThemeValues(themeContext, fallbackValues$8, "Breadcrumb");
|
|
18131
17063
|
return /*#__PURE__*/React.createElement(Box, {
|
|
18132
17064
|
padding: "0",
|
|
@@ -18139,7 +17071,7 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
|
18139
17071
|
var linkText = _ref2.linkText,
|
|
18140
17072
|
linkDestination = _ref2.linkDestination,
|
|
18141
17073
|
isActive = _ref2.isActive;
|
|
18142
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
17074
|
+
return /*#__PURE__*/React.createElement(Fragment, {
|
|
18143
17075
|
key: "breadcrumb-".concat(linkText)
|
|
18144
17076
|
}, /*#__PURE__*/React.createElement(InternalLink, {
|
|
18145
17077
|
"aria-current": index === breadcrumbsList.length - 1 ? "location" : "",
|
|
@@ -18151,7 +17083,7 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
|
18151
17083
|
fontWeight: themeValues.fontWeight,
|
|
18152
17084
|
margin: themeValues.margin,
|
|
18153
17085
|
extraStyles: "\n text-transform: uppercase;\n ".concat(isActive.toString() === "true" && "pointer-events: none;\n color: ".concat(themeValues.activeBreadcrumbColor, ";\n "), "\n &:first-child {\n margin-left: 0;\n }\n &:active {\n color: ").concat(themeValues.activeColor, "; \n }")
|
|
18154
|
-
}, linkText), index < breadcrumbsList.length - 1 ? /*#__PURE__*/React.createElement(IconChevron, null) : /*#__PURE__*/React.createElement(Fragment
|
|
17086
|
+
}, linkText), index < breadcrumbsList.length - 1 ? /*#__PURE__*/React.createElement(IconChevron, null) : /*#__PURE__*/React.createElement(Fragment, null));
|
|
18155
17087
|
})));
|
|
18156
17088
|
};
|
|
18157
17089
|
|
|
@@ -19813,7 +18745,7 @@ var fallbackValues$a = {
|
|
|
19813
18745
|
fontSize: fontSize$3
|
|
19814
18746
|
};
|
|
19815
18747
|
|
|
19816
|
-
var ParagraphText =
|
|
18748
|
+
var ParagraphText = styled.p.withConfig({
|
|
19817
18749
|
displayName: "Paragraphstyled__ParagraphText",
|
|
19818
18750
|
componentId: "sc-17g98kx-0"
|
|
19819
18751
|
})(["--font-size:", ";font-size:var(--font-size);line-height:calc(1.5 * var(--font-size));font-weight:", ";font-family:", ";color:", ";margin:", ";", ""], function (_ref) {
|
|
@@ -19923,7 +18855,7 @@ var withWindowSize = function withWindowSize(Child) {
|
|
|
19923
18855
|
window.removeEventListener("resize", onResize);
|
|
19924
18856
|
};
|
|
19925
18857
|
}, []);
|
|
19926
|
-
return /*#__PURE__*/React.createElement(
|
|
18858
|
+
return /*#__PURE__*/React.createElement(ThemeProvider, {
|
|
19927
18859
|
theme: state
|
|
19928
18860
|
}, /*#__PURE__*/React.createElement(Child, props));
|
|
19929
18861
|
};
|
|
@@ -19932,7 +18864,7 @@ var withWindowSize = function withWindowSize(Child) {
|
|
|
19932
18864
|
var CardVariantSwitcher = function CardVariantSwitcher(_ref) {
|
|
19933
18865
|
var variant = _ref.variant,
|
|
19934
18866
|
children = _ref.children;
|
|
19935
|
-
return variant === "vertical" ? /*#__PURE__*/React.createElement(Fragment
|
|
18867
|
+
return variant === "vertical" ? /*#__PURE__*/React.createElement(Fragment, null, children) : /*#__PURE__*/React.createElement(Box, {
|
|
19936
18868
|
padding: "0",
|
|
19937
18869
|
extraStyles: "width: 100%"
|
|
19938
18870
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
@@ -19953,7 +18885,7 @@ var Card = function Card(_ref2) {
|
|
|
19953
18885
|
_ref2$variant = _ref2.variant,
|
|
19954
18886
|
variant = _ref2$variant === void 0 ? "vertical" : _ref2$variant;
|
|
19955
18887
|
|
|
19956
|
-
var _useContext = useContext(
|
|
18888
|
+
var _useContext = useContext(ThemeContext),
|
|
19957
18889
|
isMobile = _useContext.isMobile;
|
|
19958
18890
|
|
|
19959
18891
|
var navigate = useNavigate();
|
|
@@ -20115,30 +19047,30 @@ var fallbackValues$c = {
|
|
|
20115
19047
|
disabledCheckedStyles: disabledCheckedStyles
|
|
20116
19048
|
};
|
|
20117
19049
|
|
|
20118
|
-
var CheckboxContainer =
|
|
19050
|
+
var CheckboxContainer = styled.div.withConfig({
|
|
20119
19051
|
displayName: "Checkbox__CheckboxContainer",
|
|
20120
19052
|
componentId: "sc-36kqbv-0"
|
|
20121
19053
|
})(["display:inline-block;vertical-align:middle;"]);
|
|
20122
|
-
var CheckboxLabelContainer =
|
|
19054
|
+
var CheckboxLabelContainer = styled.label.withConfig({
|
|
20123
19055
|
displayName: "Checkbox__CheckboxLabelContainer",
|
|
20124
19056
|
componentId: "sc-36kqbv-1"
|
|
20125
19057
|
})(["display:flex;align-items:center;"]);
|
|
20126
|
-
var CheckboxIcon =
|
|
19058
|
+
var CheckboxIcon = styled.svg.withConfig({
|
|
20127
19059
|
displayName: "Checkbox__CheckboxIcon",
|
|
20128
19060
|
componentId: "sc-36kqbv-2"
|
|
20129
19061
|
})(["fill:none;stroke-width:2px;stroke:", ";"], function (_ref) {
|
|
20130
19062
|
var disabled = _ref.disabled,
|
|
20131
19063
|
disabledCheckColor = _ref.disabledCheckColor,
|
|
20132
19064
|
checkColor = _ref.checkColor;
|
|
20133
|
-
return disabled ?
|
|
19065
|
+
return disabled ? css(["", ""], disabledCheckColor) : css(["", ""], checkColor);
|
|
20134
19066
|
});
|
|
20135
|
-
var HiddenCheckbox =
|
|
19067
|
+
var HiddenCheckbox = styled.input.attrs({
|
|
20136
19068
|
type: "checkbox"
|
|
20137
19069
|
}).withConfig({
|
|
20138
19070
|
displayName: "Checkbox__HiddenCheckbox",
|
|
20139
19071
|
componentId: "sc-36kqbv-3"
|
|
20140
19072
|
})(["border:0;clip:rect(0 0 0 0);clippath:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px;"]);
|
|
20141
|
-
var StyledCheckbox =
|
|
19073
|
+
var StyledCheckbox = styled.div.withConfig({
|
|
20142
19074
|
displayName: "Checkbox__StyledCheckbox",
|
|
20143
19075
|
componentId: "sc-36kqbv-4"
|
|
20144
19076
|
})(["display:inline-block;margin-right:16px;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
|
|
@@ -20155,7 +19087,7 @@ var StyledCheckbox = qe.div.withConfig({
|
|
|
20155
19087
|
errorStyles = _ref3.errorStyles,
|
|
20156
19088
|
disabledStyles = _ref3.disabledStyles,
|
|
20157
19089
|
disabledCheckedStyles = _ref3.disabledCheckedStyles;
|
|
20158
|
-
return error ?
|
|
19090
|
+
return error ? css(["", " ", ""], errorStyles, focused && focusedStyles) : disabled ? css(["", ""], checked ? disabledCheckedStyles : disabledStyles) : checked ? css(["", " ", ""], checkedStyles, focused && focusedStyles) : css(["", " ", ""], defaultStyles, focused && focusedStyles);
|
|
20159
19091
|
});
|
|
20160
19092
|
|
|
20161
19093
|
var Checkbox = function Checkbox(_ref4) {
|
|
@@ -20286,7 +19218,7 @@ var defaultTheme = {
|
|
|
20286
19218
|
inactiveColor: PEWTER_GREY$1
|
|
20287
19219
|
}
|
|
20288
19220
|
};
|
|
20289
|
-
var RadioButtonBorder =
|
|
19221
|
+
var RadioButtonBorder = styled.div.withConfig({
|
|
20290
19222
|
displayName: "radio-button__RadioButtonBorder",
|
|
20291
19223
|
componentId: "sc-8odgi0-0"
|
|
20292
19224
|
})(["height:24px;width:24px;border:1px solid ", ";border-radius:12px;display:flex;justify-content:center;align-items:center;margin:10px;min-width:24px;min-height:24px;"], function (_ref) {
|
|
@@ -20295,7 +19227,7 @@ var RadioButtonBorder = qe.div.withConfig({
|
|
|
20295
19227
|
return isSelected ? theme.accentColor : theme.inactiveColor;
|
|
20296
19228
|
});
|
|
20297
19229
|
RadioButtonBorder.defaultProps = defaultTheme;
|
|
20298
|
-
var RadioButtonCenter =
|
|
19230
|
+
var RadioButtonCenter = styled.div.withConfig({
|
|
20299
19231
|
displayName: "radio-button__RadioButtonCenter",
|
|
20300
19232
|
componentId: "sc-8odgi0-1"
|
|
20301
19233
|
})(["height:16px;width:16px;background-color:", ";border-radius:8px;"], function (_ref2) {
|
|
@@ -20314,15 +19246,15 @@ var RadioButton = function RadioButton(_ref3) {
|
|
|
20314
19246
|
}, isSelected && /*#__PURE__*/React.createElement(RadioButtonCenter, null));
|
|
20315
19247
|
};
|
|
20316
19248
|
|
|
20317
|
-
var CheckboxItemIcon =
|
|
19249
|
+
var CheckboxItemIcon = styled.img.withConfig({
|
|
20318
19250
|
displayName: "CheckboxList__CheckboxItemIcon",
|
|
20319
19251
|
componentId: "sc-1yakme1-0"
|
|
20320
19252
|
})(["width:2rem;"]);
|
|
20321
|
-
var HiddenCheckboxInput =
|
|
19253
|
+
var HiddenCheckboxInput = styled.input.withConfig({
|
|
20322
19254
|
displayName: "CheckboxList__HiddenCheckboxInput",
|
|
20323
19255
|
componentId: "sc-1yakme1-1"
|
|
20324
19256
|
})(["opacity:0;position:absolute;z-index:-2;cursor:pointer;"]);
|
|
20325
|
-
var CheckboxLabel =
|
|
19257
|
+
var CheckboxLabel = styled.label.withConfig({
|
|
20326
19258
|
displayName: "CheckboxList__CheckboxLabel",
|
|
20327
19259
|
componentId: "sc-1yakme1-2"
|
|
20328
19260
|
})(["position:relative;z-index:5;&:focus{outline:none;}"]);
|
|
@@ -20366,7 +19298,7 @@ var CheckboxListItem = function CheckboxListItem(_ref) {
|
|
|
20366
19298
|
onClick: disabled ? noop : onSelect,
|
|
20367
19299
|
onKeyDown: disabled ? noop : onSelect,
|
|
20368
19300
|
tabIndex: 0
|
|
20369
|
-
}, /*#__PURE__*/React.createElement(
|
|
19301
|
+
}, /*#__PURE__*/React.createElement(ThemeProvider, {
|
|
20370
19302
|
theme: {
|
|
20371
19303
|
accentColor: radioButtonActive,
|
|
20372
19304
|
inactiveColor: radioButtonInactive
|
|
@@ -20465,14 +19397,14 @@ var fallbackValues$e = {
|
|
|
20465
19397
|
hoverColor: hoverColor$3
|
|
20466
19398
|
};
|
|
20467
19399
|
|
|
20468
|
-
var IconWrapper =
|
|
19400
|
+
var IconWrapper = styled.div.withConfig({
|
|
20469
19401
|
displayName: "Dropdown__IconWrapper",
|
|
20470
19402
|
componentId: "sc-pn6m0h-0"
|
|
20471
19403
|
})(["display:flex;flex-direction:column;justify-content:center;transition:transform 0.3s ease;", ""], function (_ref) {
|
|
20472
19404
|
var open = _ref.open;
|
|
20473
19405
|
return open ? "transform: rotate(-180deg)" : "";
|
|
20474
19406
|
});
|
|
20475
|
-
var DropdownContentWrapper =
|
|
19407
|
+
var DropdownContentWrapper = styled.div.withConfig({
|
|
20476
19408
|
displayName: "Dropdown__DropdownContentWrapper",
|
|
20477
19409
|
componentId: "sc-pn6m0h-1"
|
|
20478
19410
|
})(["transform-origin:0 0;border:1px solid ", ";border-radius:2px;background-color:", ";padding:8px 0 8px;position:absolute;width:", ";min-width:100%;max-height:", ";overflow-y:scroll;z-index:1;box-sizing:border-box;&:focus{outline:none;}"], GREY_CHATEAU, WHITE, function (_ref2) {
|
|
@@ -20482,7 +19414,7 @@ var DropdownContentWrapper = qe.div.withConfig({
|
|
|
20482
19414
|
var maxHeight = _ref3.maxHeight;
|
|
20483
19415
|
return maxHeight || "400px";
|
|
20484
19416
|
});
|
|
20485
|
-
var DropdownItemWrapper =
|
|
19417
|
+
var DropdownItemWrapper = styled.div.withConfig({
|
|
20486
19418
|
displayName: "Dropdown__DropdownItemWrapper",
|
|
20487
19419
|
componentId: "sc-pn6m0h-2"
|
|
20488
19420
|
})(["background-color:", ";text-align:start;border-width:0px;border-color:transparent;box-shadow:none;padding:1rem;box-sizing:border-box;width:100%;cursor:", ";&:hover{background-color:", ";}&:focus{background-color:", ";outline:none;}"], function (_ref4) {
|
|
@@ -20503,7 +19435,7 @@ var DropdownItemWrapper = qe.div.withConfig({
|
|
|
20503
19435
|
themeValues = _ref7.themeValues;
|
|
20504
19436
|
return selected ? themeValues.selectedColor : disabled ? WHITE : themeValues.hoverColor;
|
|
20505
19437
|
});
|
|
20506
|
-
var SearchInput =
|
|
19438
|
+
var SearchInput = styled.input.withConfig({
|
|
20507
19439
|
displayName: "Dropdown__SearchInput",
|
|
20508
19440
|
componentId: "sc-pn6m0h-3"
|
|
20509
19441
|
})(["border:none;background-color:", ";font-size:16px;height:24px;"], function (_ref8) {
|
|
@@ -20729,16 +19661,16 @@ var Dropdown = function Dropdown(_ref9) {
|
|
|
20729
19661
|
color: choice.value === value ? WHITE : disabledValues.includes(choice.value) ? STORM_GREY : MINESHAFT_GREY,
|
|
20730
19662
|
extraStyles: "padding-left: 16px; \n cursor: ".concat(disabledValues.includes(choice.value) ? "default" : "pointer", "; \n white-space: nowrap; \n overflow: hidden; \n text-overflow: ellipsis;")
|
|
20731
19663
|
}, choice.text));
|
|
20732
|
-
}))) : /*#__PURE__*/React.createElement(Fragment
|
|
19664
|
+
}))) : /*#__PURE__*/React.createElement(Fragment, null));
|
|
20733
19665
|
};
|
|
20734
19666
|
|
|
20735
19667
|
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$e);
|
|
20736
19668
|
|
|
20737
|
-
var SelectContainer =
|
|
19669
|
+
var SelectContainer = styled.div.withConfig({
|
|
20738
19670
|
displayName: "FormSelectstyled__SelectContainer",
|
|
20739
19671
|
componentId: "sc-hkrqrv-0"
|
|
20740
19672
|
})(["width:100%;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;> * + *{margin-top:0.25rem;}"]);
|
|
20741
|
-
var SelectField =
|
|
19673
|
+
var SelectField = styled.select.withConfig({
|
|
20742
19674
|
displayName: "FormSelectstyled__SelectField",
|
|
20743
19675
|
componentId: "sc-hkrqrv-1"
|
|
20744
19676
|
})(["border:1px solid ", ";border-radius:2px;height:48px;width:100%;padding:0.75rem 1rem;min-width:100px;margin:0;box-sizing:border-box;position:relative;font-size:1.1rem;font-family:Public Sans;line-height:2rem;font-weight:", ";background-color:", ";color:", ";box-shadow:none;&:focus{border:1px solid ", ";}"], function (_ref) {
|
|
@@ -20752,7 +19684,7 @@ var SelectField = qe.select.withConfig({
|
|
|
20752
19684
|
var themeValues = _ref3.themeValues;
|
|
20753
19685
|
return themeValues.color && themeValues.color;
|
|
20754
19686
|
}, MATISSE_BLUE);
|
|
20755
|
-
var SelectOption =
|
|
19687
|
+
var SelectOption = styled.option.withConfig({
|
|
20756
19688
|
displayName: "FormSelectstyled__SelectOption",
|
|
20757
19689
|
componentId: "sc-hkrqrv-2"
|
|
20758
19690
|
})([""]);
|
|
@@ -21662,7 +20594,7 @@ var CountryDropdown = function CountryDropdown(_ref) {
|
|
|
21662
20594
|
});
|
|
21663
20595
|
};
|
|
21664
20596
|
|
|
21665
|
-
var DetailText =
|
|
20597
|
+
var DetailText = styled.p.withConfig({
|
|
21666
20598
|
displayName: "Detailstyled__DetailText",
|
|
21667
20599
|
componentId: "sc-vn1h4n-0"
|
|
21668
20600
|
})(["font-size:", ";line-height:1.5;color:", ";font-weight:", ";margin:", ";text-align:", ";font-family:", ";", ";"], function (_ref) {
|
|
@@ -21863,7 +20795,7 @@ var DisplayCard = function DisplayCard(_ref) {
|
|
|
21863
20795
|
variant: "smallGhost",
|
|
21864
20796
|
dataQa: buttonText,
|
|
21865
20797
|
extraStyles: "min-width: 0;"
|
|
21866
|
-
}) : /*#__PURE__*/React.createElement(Fragment
|
|
20798
|
+
}) : /*#__PURE__*/React.createElement(Fragment, null))))));
|
|
21867
20799
|
};
|
|
21868
20800
|
|
|
21869
20801
|
function _extends$2() {
|
|
@@ -22210,7 +21142,7 @@ var fallbackValues$i = {
|
|
|
22210
21142
|
|
|
22211
21143
|
var _excluded$p = ["showErrors", "themeValues"],
|
|
22212
21144
|
_excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "extraStyles"];
|
|
22213
|
-
var InputField =
|
|
21145
|
+
var InputField = styled.input.withConfig({
|
|
22214
21146
|
displayName: "FormInput__InputField",
|
|
22215
21147
|
componentId: "sc-l094r1-0"
|
|
22216
21148
|
})(["border:1px solid ", ";border-radius:2px;height:", ";width:100%;padding:1rem;min-width:100px;margin:0;box-sizing:border-box;position:relative;font-size:1.1rem;font-family:Public Sans;line-height:2rem;font-weight:", ";background-color:", ";color:", ";box-shadow:none;", " transition:background 0.3s ease;&:focus{outline:3px solid ", ";outline-offset:2px;}", " ", ""], function (_ref) {
|
|
@@ -22233,13 +21165,13 @@ var InputField = qe.input.withConfig({
|
|
|
22233
21165
|
return background && "background: ".concat(themeValues.inputBackgroundColor, " url(").concat(background, ") no-repeat right 0.5rem center;");
|
|
22234
21166
|
}, ROYAL_BLUE, function (_ref6) {
|
|
22235
21167
|
var disabled = _ref6.disabled;
|
|
22236
|
-
return disabled &&
|
|
21168
|
+
return disabled && css(["color:#6e727e;background-color:#f7f7f7;"]);
|
|
22237
21169
|
}, function (_ref7) {
|
|
22238
21170
|
var $extraStyles = _ref7.$extraStyles;
|
|
22239
|
-
return
|
|
21171
|
+
return css(["", ""], $extraStyles);
|
|
22240
21172
|
}); // eslint-disable-next-line no-unused-vars
|
|
22241
21173
|
|
|
22242
|
-
var FormattedInputField =
|
|
21174
|
+
var FormattedInputField = styled(function (_ref8) {
|
|
22243
21175
|
var showErrors = _ref8.showErrors,
|
|
22244
21176
|
themeValues = _ref8.themeValues,
|
|
22245
21177
|
props = _objectWithoutProperties(_ref8, _excluded$p);
|
|
@@ -22264,10 +21196,10 @@ var FormattedInputField = qe(function (_ref8) {
|
|
|
22264
21196
|
return themeValues.color && themeValues.color;
|
|
22265
21197
|
}, ROYAL_BLUE, function (_ref13) {
|
|
22266
21198
|
var disabled = _ref13.disabled;
|
|
22267
|
-
return disabled &&
|
|
21199
|
+
return disabled && css(["color:#6e727e;background-color:#f7f7f7;"]);
|
|
22268
21200
|
}, function (_ref14) {
|
|
22269
21201
|
var extraStyles = _ref14.extraStyles;
|
|
22270
|
-
return
|
|
21202
|
+
return css(["", ""], extraStyles);
|
|
22271
21203
|
});
|
|
22272
21204
|
|
|
22273
21205
|
var FormInput = function FormInput(_ref15) {
|
|
@@ -22299,7 +21231,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
22299
21231
|
showPassword = _useState2[0],
|
|
22300
21232
|
setShowPassword = _useState2[1];
|
|
22301
21233
|
|
|
22302
|
-
var _useContext = useContext(
|
|
21234
|
+
var _useContext = useContext(ThemeContext),
|
|
22303
21235
|
isMobile = _useContext.isMobile;
|
|
22304
21236
|
|
|
22305
21237
|
return /*#__PURE__*/React.createElement(Stack, {
|
|
@@ -22444,7 +21376,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
22444
21376
|
children = _ref.children,
|
|
22445
21377
|
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
22446
21378
|
|
|
22447
|
-
var _useContext = useContext(
|
|
21379
|
+
var _useContext = useContext(ThemeContext),
|
|
22448
21380
|
isMobile = _useContext.isMobile;
|
|
22449
21381
|
|
|
22450
21382
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
@@ -22461,7 +21393,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
22461
21393
|
link = _ref.link,
|
|
22462
21394
|
linkText = _ref.linkText;
|
|
22463
21395
|
|
|
22464
|
-
var _useContext = useContext(
|
|
21396
|
+
var _useContext = useContext(ThemeContext),
|
|
22465
21397
|
isMobile = _useContext.isMobile;
|
|
22466
21398
|
|
|
22467
21399
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -22547,11 +21479,11 @@ var fallbackValues$k = {
|
|
|
22547
21479
|
var ACTIVE = "ACTIVE";
|
|
22548
21480
|
var EXPIRING_SOON = "EXPIRING_SOON";
|
|
22549
21481
|
var EXPIRED = "EXPIRED";
|
|
22550
|
-
var CreditCardWrapper =
|
|
21482
|
+
var CreditCardWrapper = styled.div.withConfig({
|
|
22551
21483
|
displayName: "FormattedCreditCard__CreditCardWrapper",
|
|
22552
21484
|
componentId: "sc-s0ta5l-0"
|
|
22553
21485
|
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
22554
|
-
var CCIconWrapper =
|
|
21486
|
+
var CCIconWrapper = styled.div.withConfig({
|
|
22555
21487
|
displayName: "FormattedCreditCard__CCIconWrapper",
|
|
22556
21488
|
componentId: "sc-s0ta5l-1"
|
|
22557
21489
|
})(["margin-right:16px;width:30px;height:auto;display:flex;"]);
|
|
@@ -22598,7 +21530,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
22598
21530
|
color: themeValues.textColor,
|
|
22599
21531
|
textAlign: "left",
|
|
22600
21532
|
extraStyles: "display: inline-block;"
|
|
22601
|
-
}, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment
|
|
21533
|
+
}, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment, null, renderCardStatus())), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
22602
21534
|
variant: "p",
|
|
22603
21535
|
color: themeValues.autopayTextColor,
|
|
22604
21536
|
extraStyles: "font-style: italic;"
|
|
@@ -22607,15 +21539,15 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
22607
21539
|
|
|
22608
21540
|
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$k);
|
|
22609
21541
|
|
|
22610
|
-
var Hamburger =
|
|
21542
|
+
var Hamburger = styled.button.withConfig({
|
|
22611
21543
|
displayName: "HamburgerButton__Hamburger",
|
|
22612
21544
|
componentId: "sc-4wlnwv-0"
|
|
22613
21545
|
})(["padding:8px;display:inline-block;cursor:pointer;transition-property:opacity;transition-duration:0.15s;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible;&:focus{outline:none;}"]);
|
|
22614
|
-
var HamburgerBox =
|
|
21546
|
+
var HamburgerBox = styled.span.withConfig({
|
|
22615
21547
|
displayName: "HamburgerButton__HamburgerBox",
|
|
22616
21548
|
componentId: "sc-4wlnwv-1"
|
|
22617
21549
|
})(["width:34px;height:34px;display:inline-block;position:relative;"]);
|
|
22618
|
-
var HamburgerInner =
|
|
21550
|
+
var HamburgerInner = styled.span.withConfig({
|
|
22619
21551
|
displayName: "HamburgerButton__HamburgerInner",
|
|
22620
21552
|
componentId: "sc-4wlnwv-2"
|
|
22621
21553
|
})(["display:block;top:auto;bottom:6px;left:2px;transition-duration:0.13s;transition-delay:0.13s;transition-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);margin-top:12px;background-color:", ";&,&::before,&::after{background-color:", ";width:30px;height:3px;position:absolute;transition-property:transform;transition-duration:0.15s;transition-timing-function:ease;}&::before,&::after{content:\"\";display:block;}&::before{top:-10px;transition:top 0.12s 0.2s cubic-bezier(0.33333,0.66667,0.66667,1),transform 0.13s cubic-bezier(0.55,0.055,0.675,0.19);}&::after{bottom:-10px;top:-20px;transition:top 0.2s 0.2s cubic-bezier(0.33333,0.66667,0.66667,1),opacity 0.1s linear;}&.active,&.active::before,&.active::after{background-color:", ";}&.active{transform:translate3d(0,-10px,0) rotate(-45deg);transition-delay:0.22s;transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);}&.active::after{top:0;opacity:0;transition:top 0.2s cubic-bezier(0.33333,0,0.66667,0.33333),opacity:0.1s 0.22s linear;}&.active::before{top:0;transform:rotate(-90deg);transition:top 0.1s 0.16s cubic-bezier(0.33333,0,0.66667,0.33333),transform 0.13s 0.25s cubic-bezier(0.215,0.61,0.355,1);}"], function (_ref) {
|
|
@@ -22649,7 +21581,7 @@ var HamburgerButton = function HamburgerButton(_ref4) {
|
|
|
22649
21581
|
})));
|
|
22650
21582
|
};
|
|
22651
21583
|
|
|
22652
|
-
var HeadingText =
|
|
21584
|
+
var HeadingText = styled.h1.withConfig({
|
|
22653
21585
|
displayName: "Headingstyled__HeadingText",
|
|
22654
21586
|
componentId: "sc-1a3jd28-0"
|
|
22655
21587
|
})(["--font-size:", ";font-size:var(--font-size);line-height:calc(1.5 * var(--font-size));color:", ";font-weight:", ";margin:", ";text-align:", ";font-family:", ";", ";"], function (_ref) {
|
|
@@ -22749,7 +21681,7 @@ var Jumbo = function Jumbo(_ref) {
|
|
|
22749
21681
|
showCartStatus = _ref$showCartStatus === void 0 ? false : _ref$showCartStatus,
|
|
22750
21682
|
openCartSlider = _ref.openCartSlider;
|
|
22751
21683
|
|
|
22752
|
-
var _useContext = useContext(
|
|
21684
|
+
var _useContext = useContext(ThemeContext),
|
|
22753
21685
|
isMobile = _useContext.isMobile;
|
|
22754
21686
|
|
|
22755
21687
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -22877,7 +21809,7 @@ var fallbackValues$o = {
|
|
|
22877
21809
|
color: color$8
|
|
22878
21810
|
};
|
|
22879
21811
|
|
|
22880
|
-
var SpinnerSvgAnimation =
|
|
21812
|
+
var SpinnerSvgAnimation = styled.svg.withConfig({
|
|
22881
21813
|
displayName: "Spinner__SpinnerSvgAnimation",
|
|
22882
21814
|
componentId: "sc-vhupl9-0"
|
|
22883
21815
|
})(["animation:rotate 2s linear infinite;margin:-25px 0 0 -25px;width:", "px;height:", "px;& .path{stroke:", ";stroke-linecap:round;animation:dash 1.5s ease-in-out infinite;}@keyframes rotate{100%{transform:rotate(360deg);}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0;}50%{stroke-dasharray:90,150;stroke-dashoffset:-35;}100%{stroke-dasharray:90,150;stroke-dashoffset:-124;}}"], function (_ref) {
|
|
@@ -22890,7 +21822,7 @@ var SpinnerSvgAnimation = qe.svg.withConfig({
|
|
|
22890
21822
|
var color = _ref3.color;
|
|
22891
21823
|
return color;
|
|
22892
21824
|
});
|
|
22893
|
-
var SpinnerContainer$2 =
|
|
21825
|
+
var SpinnerContainer$2 = styled.div.withConfig({
|
|
22894
21826
|
displayName: "Spinner__SpinnerContainer",
|
|
22895
21827
|
componentId: "sc-vhupl9-1"
|
|
22896
21828
|
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;"]);
|
|
@@ -23313,7 +22245,7 @@ var fallbackValues$r = {
|
|
|
23313
22245
|
inactiveColor: inactiveColor
|
|
23314
22246
|
};
|
|
23315
22247
|
|
|
23316
|
-
var HiddenRadioButton =
|
|
22248
|
+
var HiddenRadioButton = styled.input.withConfig({
|
|
23317
22249
|
displayName: "RadioButton__HiddenRadioButton",
|
|
23318
22250
|
componentId: "sc-v6hie9-0"
|
|
23319
22251
|
})(["opacity:0;position:absolute;cursor:", ";"], function (_ref) {
|
|
@@ -34094,7 +33026,7 @@ var fallbackValues$u = {
|
|
|
34094
33026
|
leftLabelStyles: leftLabelStyles
|
|
34095
33027
|
};
|
|
34096
33028
|
|
|
34097
|
-
var HiddenToggleSwitchBox =
|
|
33029
|
+
var HiddenToggleSwitchBox = styled.input.withConfig({
|
|
34098
33030
|
displayName: "ToggleSwitch__HiddenToggleSwitchBox",
|
|
34099
33031
|
componentId: "sc-1t51u6v-0"
|
|
34100
33032
|
})(["opacity:0;position:absolute;cursor:", ";height:24px;width:50px;", ""], function (_ref) {
|
|
@@ -34104,7 +33036,7 @@ var HiddenToggleSwitchBox = qe.input.withConfig({
|
|
|
34104
33036
|
var isMobile = _ref2.isMobile;
|
|
34105
33037
|
return isMobile ? "transform: scale(0.75)" : "";
|
|
34106
33038
|
});
|
|
34107
|
-
var VisibleSwitchComponent =
|
|
33039
|
+
var VisibleSwitchComponent = styled.label.withConfig({
|
|
34108
33040
|
displayName: "ToggleSwitch__VisibleSwitchComponent",
|
|
34109
33041
|
componentId: "sc-1t51u6v-1"
|
|
34110
33042
|
})(["width:48px;height:24px;border-radius:48px;border:none;position:relative;box-sizing:border-box;cursor:", ";display:inline-block;&:hover{box-shadow:", ";}&:focus{box-shadow:0px 2px 5px 0px rgba(0,0,0,0.5);}", ""], function (_ref3) {
|
|
@@ -34117,11 +33049,11 @@ var VisibleSwitchComponent = qe.label.withConfig({
|
|
|
34117
33049
|
var isMobile = _ref5.isMobile;
|
|
34118
33050
|
return isMobile ? "transform: scale(0.75)" : "";
|
|
34119
33051
|
});
|
|
34120
|
-
var ToggleSwitchMiddleRingComponent =
|
|
33052
|
+
var ToggleSwitchMiddleRingComponent = styled.div.withConfig({
|
|
34121
33053
|
displayName: "ToggleSwitch__ToggleSwitchMiddleRingComponent",
|
|
34122
33054
|
componentId: "sc-1t51u6v-2"
|
|
34123
33055
|
})(["position:absolute;width:20px;height:20px;border:none;border-radius:50%;box-sizing:border-box;"]);
|
|
34124
|
-
var ToggleSwitchInnerRingComponent =
|
|
33056
|
+
var ToggleSwitchInnerRingComponent = styled.div.withConfig({
|
|
34125
33057
|
displayName: "ToggleSwitch__ToggleSwitchInnerRingComponent",
|
|
34126
33058
|
componentId: "sc-1t51u6v-3"
|
|
34127
33059
|
})(["position:absolute;width:14px;height:14px;top:3px;left:3px;right:3px;bottom:3px;border-radius:50%;box-sizing:border-box;"]);
|
|
@@ -34273,7 +33205,7 @@ var themeValues = {
|
|
|
34273
33205
|
focusBorder: focusBorder
|
|
34274
33206
|
};
|
|
34275
33207
|
|
|
34276
|
-
var TypeaheadInputWrapper =
|
|
33208
|
+
var TypeaheadInputWrapper = styled.div.withConfig({
|
|
34277
33209
|
displayName: "TypeaheadInput__TypeaheadInputWrapper",
|
|
34278
33210
|
componentId: "sc-cumjdb-0"
|
|
34279
33211
|
})(["display:flex;align-content:center;align-items:center;background:", ";input{border:0;height:72px;width:100%;padding:1.5rem;padding-left:1rem;min-width:100px;margin:0;box-sizing:border-box;position:relative;font-size:1.1rem;line-height:2rem;font-weight:400;background-color:", ";color:", ";box-shadow:none;border:1px solid transparent;&:focus{border:1px solid ", ";}}"], themeValues.background, themeValues.background, themeValues.black, themeValues.focusBorder);
|
|
@@ -35237,7 +34169,7 @@ var objectTraps = {
|
|
|
35237
34169
|
|
|
35238
34170
|
set: set$1$1,
|
|
35239
34171
|
deleteProperty: deleteProperty,
|
|
35240
|
-
getOwnPropertyDescriptor: getOwnPropertyDescriptor
|
|
34172
|
+
getOwnPropertyDescriptor: getOwnPropertyDescriptor,
|
|
35241
34173
|
|
|
35242
34174
|
defineProperty: function defineProperty() {
|
|
35243
34175
|
throw new Error("Object.defineProperty() cannot be used on an Immer draft"); // prettier-ignore
|
|
@@ -35345,7 +34277,7 @@ function deleteProperty(state, prop) {
|
|
|
35345
34277
|
// the same guarantee in ES5 mode.
|
|
35346
34278
|
|
|
35347
34279
|
|
|
35348
|
-
function getOwnPropertyDescriptor
|
|
34280
|
+
function getOwnPropertyDescriptor(state, prop) {
|
|
35349
34281
|
var owner = source$1(state);
|
|
35350
34282
|
var desc = Reflect.getOwnPropertyDescriptor(owner, prop);
|
|
35351
34283
|
|
|
@@ -36421,7 +35353,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
36421
35353
|
hoverStyles: "outline: none;",
|
|
36422
35354
|
animate: isOpen ? "open" : "closed",
|
|
36423
35355
|
positionTransition: true
|
|
36424
|
-
}, stackTitle && /*#__PURE__*/React.createElement(Fragment
|
|
35356
|
+
}, stackTitle && /*#__PURE__*/React.createElement(Fragment, null, stackTitleContent), /*#__PURE__*/React.createElement(Stack, {
|
|
36425
35357
|
childGap: isOpen && !isMobile ? sectionGap : "0rem"
|
|
36426
35358
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
36427
35359
|
padding: "0",
|
|
@@ -36537,7 +35469,7 @@ EditNameForm.reducer = reducer$2;
|
|
|
36537
35469
|
EditNameForm.mapStateToProps = mapStateToProps$3;
|
|
36538
35470
|
EditNameForm.mapDispatchToProps = mapDispatchToProps$2;
|
|
36539
35471
|
|
|
36540
|
-
var EditableListItem =
|
|
35472
|
+
var EditableListItem = styled.div.withConfig({
|
|
36541
35473
|
displayName: "EditableListstyled__EditableListItem",
|
|
36542
35474
|
componentId: "sc-10ehkz7-0"
|
|
36543
35475
|
})(["box-sizing:border-box;background:", ";border-color:", ";height:", ";display:flex;justify-content:space-between;align-items:center;padding:1.5rem;:not(:last-child),:not(:first-child){box-shadow:inset 0px -1px 0px 0px rgb(202,206,216);}:first-child{border-top-left-radius:3px;border-top-right-radius:3px;}:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;box-shadow:none;}"], function (_ref) {
|
|
@@ -36547,7 +35479,7 @@ var EditableListItem = qe.div.withConfig({
|
|
|
36547
35479
|
var listItemSize = _ref2.listItemSize;
|
|
36548
35480
|
return listItemSize === "big" ? "120px" : "72px";
|
|
36549
35481
|
});
|
|
36550
|
-
var EditableListItemControls =
|
|
35482
|
+
var EditableListItemControls = styled.div.withConfig({
|
|
36551
35483
|
displayName: "EditableListstyled__EditableListItemControls",
|
|
36552
35484
|
componentId: "sc-10ehkz7-1"
|
|
36553
35485
|
})(["display:flex;justify-content:space-evenly;align-items:center;"]);
|
|
@@ -36668,14 +35600,14 @@ var EditableList = function EditableList(_ref) {
|
|
|
36668
35600
|
}))));
|
|
36669
35601
|
};
|
|
36670
35602
|
|
|
36671
|
-
var EditableTableContainer =
|
|
35603
|
+
var EditableTableContainer = styled.div.withConfig({
|
|
36672
35604
|
displayName: "EditableTablestyled__EditableTableContainer",
|
|
36673
35605
|
componentId: "sc-fd3i2a-0"
|
|
36674
35606
|
})(["display:", ";flex-direction:column;flex:1;"], function (_ref) {
|
|
36675
35607
|
var hide = _ref.hide;
|
|
36676
35608
|
return hide ? "none" : "flex";
|
|
36677
35609
|
});
|
|
36678
|
-
var EditableTableListItem =
|
|
35610
|
+
var EditableTableListItem = styled.div.withConfig({
|
|
36679
35611
|
displayName: "EditableTablestyled__EditableTableListItem",
|
|
36680
35612
|
componentId: "sc-fd3i2a-1"
|
|
36681
35613
|
})(["width:100%;display:flex;", ";align-items:", ";flex-direction:", ";flex:1;", ";"], function (_ref2) {
|
|
@@ -36691,29 +35623,29 @@ var EditableTableListItem = qe.div.withConfig({
|
|
|
36691
35623
|
var isMobile = _ref5.isMobile;
|
|
36692
35624
|
return isMobile ? "padding: 1rem 0.5rem" : "padding: 0 0.5rem";
|
|
36693
35625
|
});
|
|
36694
|
-
var EditableListItemControls$1 =
|
|
35626
|
+
var EditableListItemControls$1 = styled.div.withConfig({
|
|
36695
35627
|
displayName: "EditableTablestyled__EditableListItemControls",
|
|
36696
35628
|
componentId: "sc-fd3i2a-2"
|
|
36697
35629
|
})(["display:flex;justify-content:space-evenly;align-items:center;"]);
|
|
36698
|
-
var EditableListAction =
|
|
35630
|
+
var EditableListAction = styled.div.withConfig({
|
|
36699
35631
|
displayName: "EditableTablestyled__EditableListAction",
|
|
36700
35632
|
componentId: "sc-fd3i2a-3"
|
|
36701
35633
|
})(["color:", ";align-items:center;font-size:1rem;padding-right:1rem;cursor:pointer;display:", ";"], MATISSE_BLUE, function (_ref6) {
|
|
36702
35634
|
var hide = _ref6.hide;
|
|
36703
35635
|
return hide ? "none" : "flex";
|
|
36704
35636
|
});
|
|
36705
|
-
var ItemWrapper =
|
|
35637
|
+
var ItemWrapper = styled.div.withConfig({
|
|
36706
35638
|
displayName: "EditableTablestyled__ItemWrapper",
|
|
36707
35639
|
componentId: "sc-fd3i2a-4"
|
|
36708
35640
|
})(["display:flex;flex-direction:row;flex:1;width:100%;border-bottom:1px solid ", ";"], GHOST_GREY);
|
|
36709
|
-
var ActionWrapper =
|
|
35641
|
+
var ActionWrapper = styled.div.withConfig({
|
|
36710
35642
|
displayName: "EditableTablestyled__ActionWrapper",
|
|
36711
35643
|
componentId: "sc-fd3i2a-5"
|
|
36712
35644
|
})(["display:flex;align-self:center;justify-content:flex-end;", ";flex:1;"], function (_ref7) {
|
|
36713
35645
|
var isMobile = _ref7.isMobile;
|
|
36714
35646
|
return isMobile && "display: none";
|
|
36715
35647
|
});
|
|
36716
|
-
var TableItemKey =
|
|
35648
|
+
var TableItemKey = styled.div.withConfig({
|
|
36717
35649
|
displayName: "EditableTablestyled__TableItemKey",
|
|
36718
35650
|
componentId: "sc-fd3i2a-6"
|
|
36719
35651
|
})(["display:flex;", ";", ";", ";font-size:", ";color:", ";"], function (_ref8) {
|
|
@@ -36729,7 +35661,7 @@ var TableItemKey = qe.div.withConfig({
|
|
|
36729
35661
|
var isMobile = _ref11.isMobile;
|
|
36730
35662
|
return isMobile ? "1rem" : "1.125rem";
|
|
36731
35663
|
}, STORM_GREY);
|
|
36732
|
-
var TableItemValue =
|
|
35664
|
+
var TableItemValue = styled.div.withConfig({
|
|
36733
35665
|
displayName: "EditableTablestyled__TableItemValue",
|
|
36734
35666
|
componentId: "sc-fd3i2a-7"
|
|
36735
35667
|
})(["display:flex;", ";", ";", ";font-size:", ";color:", ";"], function (_ref12) {
|
|
@@ -36745,7 +35677,7 @@ var TableItemValue = qe.div.withConfig({
|
|
|
36745
35677
|
var isMobile = _ref15.isMobile;
|
|
36746
35678
|
return isMobile ? "1.125rem" : "1.0625rem";
|
|
36747
35679
|
}, BRIGHT_GREY);
|
|
36748
|
-
var TableWrapper =
|
|
35680
|
+
var TableWrapper = styled.div.withConfig({
|
|
36749
35681
|
displayName: "EditableTablestyled__TableWrapper",
|
|
36750
35682
|
componentId: "sc-fd3i2a-8"
|
|
36751
35683
|
})(["display:flex;flex-direction:row;flex:1;width:100%;"]);
|
|
@@ -36766,7 +35698,7 @@ var EditableTable = function EditableTable(_ref) {
|
|
|
36766
35698
|
}, title));
|
|
36767
35699
|
return /*#__PURE__*/React.createElement(EditableTableContainer, {
|
|
36768
35700
|
isMobile: isMobile
|
|
36769
|
-
}, safeChildren(titleChild, /*#__PURE__*/React.createElement(Fragment
|
|
35701
|
+
}, safeChildren(titleChild, /*#__PURE__*/React.createElement(Fragment, null)), /*#__PURE__*/React.createElement(TableWrapper, null, renderItem(items)));
|
|
36770
35702
|
};
|
|
36771
35703
|
|
|
36772
35704
|
var TableListItem = function TableListItem(_ref) {
|
|
@@ -36805,7 +35737,7 @@ var TableListItem = function TableListItem(_ref) {
|
|
|
36805
35737
|
onClick: function onClick() {
|
|
36806
35738
|
return console.log("Edit Item Coming Soon...");
|
|
36807
35739
|
}
|
|
36808
|
-
}, "Edit")) : /*#__PURE__*/React.createElement(Fragment
|
|
35740
|
+
}, "Edit")) : /*#__PURE__*/React.createElement(Fragment, null))));
|
|
36809
35741
|
};
|
|
36810
35742
|
|
|
36811
35743
|
var EmailForm = function EmailForm(_ref) {
|
|
@@ -39949,10 +38881,10 @@ var Modal$1 = function Modal(_ref) {
|
|
|
39949
38881
|
buttonExtraStyles = _ref.buttonExtraStyles,
|
|
39950
38882
|
children = _ref.children;
|
|
39951
38883
|
|
|
39952
|
-
var _useContext = useContext(
|
|
38884
|
+
var _useContext = useContext(ThemeContext),
|
|
39953
38885
|
isMobile = _useContext.isMobile;
|
|
39954
38886
|
|
|
39955
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
38887
|
+
return /*#__PURE__*/React.createElement(Fragment, null, modalOpen && /*#__PURE__*/React.createElement(reactAriaModal, {
|
|
39956
38888
|
onExit: hideModal,
|
|
39957
38889
|
getApplicationNode: getApplicationNode,
|
|
39958
38890
|
titleText: modalHeaderText,
|
|
@@ -40000,7 +38932,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
40000
38932
|
justify: "flex-end",
|
|
40001
38933
|
align: "center",
|
|
40002
38934
|
childGap: "0rem"
|
|
40003
|
-
}, !onlyCloseButton ? /*#__PURE__*/React.createElement(Fragment
|
|
38935
|
+
}, !onlyCloseButton ? /*#__PURE__*/React.createElement(Fragment, null, isMobile ? /*#__PURE__*/React.createElement(Stack, {
|
|
40004
38936
|
childGap: "1rem",
|
|
40005
38937
|
direction: "row"
|
|
40006
38938
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
@@ -40147,7 +39079,7 @@ var Module = function Module(_ref) {
|
|
|
40147
39079
|
var computedFontSize = fontSize || themedFontSize;
|
|
40148
39080
|
var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
|
|
40149
39081
|
var computedElemType = as || themedElemType;
|
|
40150
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
39082
|
+
return /*#__PURE__*/React.createElement(Fragment, null, heading && /*#__PURE__*/React.createElement(Title$1, {
|
|
40151
39083
|
weight: themeValues.fontWeight,
|
|
40152
39084
|
color: themeValues.fontColor,
|
|
40153
39085
|
margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
|
|
@@ -40247,7 +39179,7 @@ var menu = posed.div({
|
|
|
40247
39179
|
}
|
|
40248
39180
|
}
|
|
40249
39181
|
});
|
|
40250
|
-
var ImposterMenu =
|
|
39182
|
+
var ImposterMenu = styled(menu).withConfig({
|
|
40251
39183
|
displayName: "NavMenuMobile__ImposterMenu",
|
|
40252
39184
|
componentId: "sc-1pf0qp7-0"
|
|
40253
39185
|
})(["position:fixed;top:72px;"]);
|
|
@@ -40578,7 +39510,7 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
40578
39510
|
variant: "tertiary",
|
|
40579
39511
|
text: "Set Up ".concat(planType),
|
|
40580
39512
|
action: function action() {
|
|
40581
|
-
setDetailedObligation(obligations, config);
|
|
39513
|
+
setDetailedObligation(obligations, config, obligationAssocID);
|
|
40582
39514
|
handleAutopayAction();
|
|
40583
39515
|
},
|
|
40584
39516
|
dataQa: "Set Up Autopay",
|
|
@@ -41196,7 +40128,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
41196
40128
|
_ref$hideForwardButto = _ref.hideForwardButton,
|
|
41197
40129
|
hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto;
|
|
41198
40130
|
|
|
41199
|
-
var _useContext = useContext(
|
|
40131
|
+
var _useContext = useContext(ThemeContext),
|
|
41200
40132
|
isMobile = _useContext.isMobile;
|
|
41201
40133
|
|
|
41202
40134
|
var backButton = !!cancelURL && !!cancelText ? /*#__PURE__*/React.createElement(ButtonWithLink, {
|
|
@@ -41226,14 +40158,14 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
41226
40158
|
extraStyles: isMobile && "flex-grow: 1",
|
|
41227
40159
|
dataQa: forwardButtonText
|
|
41228
40160
|
});
|
|
41229
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
40161
|
+
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Box, {
|
|
41230
40162
|
padding: "1.25rem 0"
|
|
41231
40163
|
}), /*#__PURE__*/React.createElement(SolidDivider$1, null), /*#__PURE__*/React.createElement(Box, {
|
|
41232
40164
|
padding: "2.5rem 0 3.125rem 0"
|
|
41233
40165
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
41234
40166
|
justify: buttonFlexOverride ? buttonFlexOverride : !!backButton ? "space-between" : "flex-end",
|
|
41235
40167
|
align: "center"
|
|
41236
|
-
}, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment
|
|
40168
|
+
}, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment, null, forwardButton))));
|
|
41237
40169
|
};
|
|
41238
40170
|
|
|
41239
40171
|
var backgroundColor$8 = {
|
|
@@ -41272,7 +40204,8 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
41272
40204
|
hasVoidablePaymentsSection = _ref.hasVoidablePaymentsSection,
|
|
41273
40205
|
voidableTransactionDetails = _ref.voidableTransactionDetails,
|
|
41274
40206
|
voidableAmountPaid = _ref.voidableAmountPaid,
|
|
41275
|
-
partialVoidAction = _ref.partialVoidAction
|
|
40207
|
+
partialVoidAction = _ref.partialVoidAction,
|
|
40208
|
+
remainingBalance = _ref.remainingBalance;
|
|
41276
40209
|
return /*#__PURE__*/React.createElement(Stack, {
|
|
41277
40210
|
childGap: "16px"
|
|
41278
40211
|
}, lineItemElems, hasVoidablePaymentsSection && /*#__PURE__*/React.createElement(Box, {
|
|
@@ -41280,7 +40213,8 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
41280
40213
|
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
41281
40214
|
variant: "p",
|
|
41282
40215
|
color: themeValues.text,
|
|
41283
|
-
weight: "400"
|
|
40216
|
+
weight: "400",
|
|
40217
|
+
fontSize: "0.875rem"
|
|
41284
40218
|
}, "Paid"), voidableTransactionDetails.map(function (t) {
|
|
41285
40219
|
return /*#__PURE__*/React.createElement(Cluster, {
|
|
41286
40220
|
key: t.id,
|
|
@@ -41297,30 +40231,31 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
41297
40231
|
return partialVoidAction(t);
|
|
41298
40232
|
},
|
|
41299
40233
|
text: "Void",
|
|
41300
|
-
|
|
40234
|
+
padding: "0",
|
|
40235
|
+
extraStyles: "\n min-width: 75px; \n margin: 0px;\n min-height: 0px;\n ",
|
|
41301
40236
|
textExtraStyles: "font-weight: ".concat(FONT_WEIGHT_REGULAR, "; font-size: 16px;")
|
|
41302
40237
|
})), /*#__PURE__*/React.createElement(Box, {
|
|
41303
40238
|
padding: "0",
|
|
41304
40239
|
key: t.id
|
|
41305
|
-
}, displayCurrency(t.
|
|
40240
|
+
}, displayCurrency(t.amount_processed)));
|
|
41306
40241
|
}), /*#__PURE__*/React.createElement(Box, {
|
|
41307
|
-
padding: "
|
|
40242
|
+
padding: "16px 0px"
|
|
41308
40243
|
}, /*#__PURE__*/React.createElement(SolidDivider$1, null)), /*#__PURE__*/React.createElement(LabeledAmount$1, {
|
|
41309
|
-
|
|
40244
|
+
extraStyles: "font-weight: ".concat(FONT_WEIGHT_REGULAR, ";"),
|
|
41310
40245
|
label: "Amount paid",
|
|
41311
40246
|
amount: displayCurrency(voidableAmountPaid)
|
|
41312
40247
|
})), !hasVoidablePaymentsSection && !!lineItemElems.length && /*#__PURE__*/React.createElement(SolidDivider$1, null) // avoids duplicate dividers -> case of voidable payment section, that acts as divider
|
|
41313
|
-
, /*#__PURE__*/React.createElement(Box, {
|
|
40248
|
+
, subtotal && /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Box, {
|
|
41314
40249
|
padding: "0.5rem 0"
|
|
41315
40250
|
}, /*#__PURE__*/React.createElement(LabeledAmount$1, {
|
|
41316
40251
|
variant: themeValues.labeledAmountSubtotal,
|
|
41317
40252
|
label: "Subtotal",
|
|
41318
40253
|
amount: displayCurrency(subtotal)
|
|
41319
|
-
}), feeElems), /*#__PURE__*/React.createElement(SolidDivider$1, null), /*#__PURE__*/React.createElement(LabeledAmount$1, {
|
|
40254
|
+
}), feeElems), /*#__PURE__*/React.createElement(SolidDivider$1, null)), /*#__PURE__*/React.createElement(LabeledAmount$1, {
|
|
41320
40255
|
as: "p",
|
|
41321
40256
|
variant: themeValues.labeledAmountTotal,
|
|
41322
40257
|
label: hasVoidablePaymentsSection ? "Remaining amount due" : "Total",
|
|
41323
|
-
amount: displayCurrency(total),
|
|
40258
|
+
amount: displayCurrency(typeof remainingBalance === "number" ? remainingBalance : total),
|
|
41324
40259
|
extraStyles: variant === "small" && "font-weight: ".concat(FONT_WEIGHT_BOLD, ";")
|
|
41325
40260
|
}));
|
|
41326
40261
|
};
|
|
@@ -41387,7 +40322,9 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
41387
40322
|
_ref4$partialVoidActi = _ref4.partialVoidAction,
|
|
41388
40323
|
partialVoidAction = _ref4$partialVoidActi === void 0 ? noop : _ref4$partialVoidActi,
|
|
41389
40324
|
_ref4$voidableAmountP = _ref4.voidableAmountPaid,
|
|
41390
|
-
voidableAmountPaid = _ref4$voidableAmountP === void 0 ? 0 : _ref4$voidableAmountP
|
|
40325
|
+
voidableAmountPaid = _ref4$voidableAmountP === void 0 ? 0 : _ref4$voidableAmountP,
|
|
40326
|
+
_ref4$remainingBalanc = _ref4.remainingBalance,
|
|
40327
|
+
remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc;
|
|
41391
40328
|
|
|
41392
40329
|
var _useState = useState(initiallyOpen),
|
|
41393
40330
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -41422,7 +40359,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
41422
40359
|
}, item));
|
|
41423
40360
|
});
|
|
41424
40361
|
var feeElems = fees.map(function (fee) {
|
|
41425
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
40362
|
+
return /*#__PURE__*/React.createElement(Fragment, {
|
|
41426
40363
|
key: fee.label
|
|
41427
40364
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
41428
40365
|
padding: "4px 0"
|
|
@@ -41447,7 +40384,8 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
41447
40384
|
hasVoidablePaymentsSection: hasVoidablePaymentsSection,
|
|
41448
40385
|
voidableTransactionDetails: voidableTransactionDetails,
|
|
41449
40386
|
voidableAmountPaid: voidableAmountPaid,
|
|
41450
|
-
partialVoidAction: partialVoidAction
|
|
40387
|
+
partialVoidAction: partialVoidAction,
|
|
40388
|
+
remainingBalance: remainingBalance
|
|
41451
40389
|
})) : /*#__PURE__*/React.createElement(PaymentDetailsContent, {
|
|
41452
40390
|
lineItemElems: lineItemElems,
|
|
41453
40391
|
feeElems: feeElems,
|
|
@@ -41458,9 +40396,10 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
41458
40396
|
hasVoidablePaymentsSection: hasVoidablePaymentsSection,
|
|
41459
40397
|
voidableTransactionDetails: voidableTransactionDetails,
|
|
41460
40398
|
voidableAmountPaid: voidableAmountPaid,
|
|
41461
|
-
partialVoidAction: partialVoidAction
|
|
40399
|
+
partialVoidAction: partialVoidAction,
|
|
40400
|
+
remainingBalance: remainingBalance
|
|
41462
40401
|
});
|
|
41463
|
-
var title = hideTitle ? /*#__PURE__*/React.createElement(Fragment
|
|
40402
|
+
var title = hideTitle ? /*#__PURE__*/React.createElement(Fragment, null) : isCollapsible ? /*#__PURE__*/React.createElement(Box, {
|
|
41464
40403
|
width: "100%",
|
|
41465
40404
|
padding: "none"
|
|
41466
40405
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
@@ -41547,7 +40486,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
41547
40486
|
intrinsic: true
|
|
41548
40487
|
}, /*#__PURE__*/React.createElement(AccountNumberImage, null)) : imageType === "Routing" ? /*#__PURE__*/React.createElement(Center, {
|
|
41549
40488
|
intrinsic: true
|
|
41550
|
-
}, /*#__PURE__*/React.createElement(RoutingNumberImage, null)) : /*#__PURE__*/React.createElement(Fragment
|
|
40489
|
+
}, /*#__PURE__*/React.createElement(RoutingNumberImage, null)) : /*#__PURE__*/React.createElement(Fragment, null))),
|
|
41551
40490
|
defaultWrapper: false,
|
|
41552
40491
|
onlyCloseButton: !acceptText,
|
|
41553
40492
|
continueButtonText: acceptText,
|
|
@@ -41779,7 +40718,7 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
41779
40718
|
walletCheckboxMarked = _ref.walletCheckboxMarked,
|
|
41780
40719
|
deniedCards = _ref.deniedCards;
|
|
41781
40720
|
|
|
41782
|
-
var _useContext = useContext(
|
|
40721
|
+
var _useContext = useContext(ThemeContext),
|
|
41783
40722
|
isMobile = _useContext.isMobile;
|
|
41784
40723
|
|
|
41785
40724
|
useEffect$1(function () {
|
|
@@ -42102,7 +41041,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
42102
41041
|
}
|
|
42103
41042
|
};
|
|
42104
41043
|
var borderStyles = "\n border-width: 0 0 1px 0;\n border-color: ".concat(themeValues.borderColor, ";\n border-style: solid;\n border-radius: 0px;\n transform-origin: 100% 0;\n\n &:last-child {\n border-width: 0;\n }\n ");
|
|
42105
|
-
var RightIcon =
|
|
41044
|
+
var RightIcon = styled.img.withConfig({
|
|
42106
41045
|
displayName: "RadioSection__RightIcon",
|
|
42107
41046
|
componentId: "sc-uema02-0"
|
|
42108
41047
|
})(["height:", ";width:", ";", " transition:opacity 0.3s ease;"], function (_ref2) {
|
|
@@ -42199,7 +41138,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
42199
41138
|
isMobile: isMobile,
|
|
42200
41139
|
alt: icon.altText
|
|
42201
41140
|
});
|
|
42202
|
-
})), section.shouldDisplayCardExpiration && /*#__PURE__*/React.createElement(Fragment
|
|
41141
|
+
})), section.shouldDisplayCardExpiration && /*#__PURE__*/React.createElement(Fragment, null, renderCardStatus(section)))), /*#__PURE__*/React.createElement(AnimatePresence, {
|
|
42203
41142
|
initial: false
|
|
42204
41143
|
}, openSection === section.id && /*#__PURE__*/React.createElement(Motion, {
|
|
42205
41144
|
key: "content-".concat(section.id),
|
|
@@ -42333,7 +41272,7 @@ RegistrationForm.mapStateToProps = mapStateToProps$b;
|
|
|
42333
41272
|
RegistrationForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
42334
41273
|
|
|
42335
41274
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
42336
|
-
var _useContext = useContext(
|
|
41275
|
+
var _useContext = useContext(ThemeContext),
|
|
42337
41276
|
isMobile = _useContext.isMobile;
|
|
42338
41277
|
|
|
42339
41278
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -42454,7 +41393,7 @@ ResetPasswordForm.mapStateToProps = mapStateToProps$c;
|
|
|
42454
41393
|
ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$b;
|
|
42455
41394
|
|
|
42456
41395
|
var ResetConfirmationForm$2 = function ResetConfirmationForm() {
|
|
42457
|
-
var _useContext = useContext(
|
|
41396
|
+
var _useContext = useContext(ThemeContext),
|
|
42458
41397
|
isMobile = _useContext.isMobile;
|
|
42459
41398
|
|
|
42460
41399
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -42578,7 +41517,7 @@ var Tabs = function Tabs(_ref) {
|
|
|
42578
41517
|
className: "tab-content"
|
|
42579
41518
|
}, /*#__PURE__*/React.createElement(Box, null, tabsConfig.tabs.map(function (tab, idx) {
|
|
42580
41519
|
if (tab.label !== activeTab) return undefined;
|
|
42581
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
41520
|
+
return /*#__PURE__*/React.createElement(Fragment, {
|
|
42582
41521
|
key: idx
|
|
42583
41522
|
}, tab.content);
|
|
42584
41523
|
}))));
|
|
@@ -42773,7 +41712,7 @@ var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
|
42773
41712
|
var Timeout = function Timeout(_ref) {
|
|
42774
41713
|
var onLogout = _ref.onLogout;
|
|
42775
41714
|
|
|
42776
|
-
var _useContext = useContext(
|
|
41715
|
+
var _useContext = useContext(ThemeContext),
|
|
42777
41716
|
isMobile = _useContext.isMobile;
|
|
42778
41717
|
|
|
42779
41718
|
return /*#__PURE__*/React.createElement(Cover, null, /*#__PURE__*/React.createElement(Center, {
|
|
@@ -42820,7 +41759,7 @@ var fallbackValues$G = {
|
|
|
42820
41759
|
imageBackgroundColor: imageBackgroundColor
|
|
42821
41760
|
};
|
|
42822
41761
|
|
|
42823
|
-
var WelcomeImage =
|
|
41762
|
+
var WelcomeImage = styled.img.withConfig({
|
|
42824
41763
|
displayName: "WelcomeModule__WelcomeImage",
|
|
42825
41764
|
componentId: "sc-1d9znh4-0"
|
|
42826
41765
|
})(["width:auto;height:215px;"]);
|
|
@@ -42830,7 +41769,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
42830
41769
|
isMobile = _ref.isMobile,
|
|
42831
41770
|
themeValues = _ref.themeValues;
|
|
42832
41771
|
var welcomeImage = "https://cb-public-assets.s3-us-west-2.amazonaws.com/profile-assets/profile-welcome-image.png";
|
|
42833
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
41772
|
+
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Box, {
|
|
42834
41773
|
padding: "0"
|
|
42835
41774
|
}, isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
42836
41775
|
padding: "0",
|
|
@@ -42908,7 +41847,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
42908
41847
|
}))));
|
|
42909
41848
|
};
|
|
42910
41849
|
|
|
42911
|
-
var DashboardIframe =
|
|
41850
|
+
var DashboardIframe = styled.iframe.withConfig({
|
|
42912
41851
|
displayName: "PeriscopeDashboardIframestyled__DashboardIframe",
|
|
42913
41852
|
componentId: "sc-j0cucj-0"
|
|
42914
41853
|
})(["border:none;box-shadow:0 0 5px 0 ", ";display:none;"], ALTO_GREY);
|
|
@@ -42988,7 +41927,7 @@ var PeriscopeDashboardIframe = function PeriscopeDashboardIframe(_ref) {
|
|
|
42988
41927
|
return window.removeEventListener("message", validatePeriscope);
|
|
42989
41928
|
};
|
|
42990
41929
|
}, [requestDashboardUrl]);
|
|
42991
|
-
return /*#__PURE__*/React.createElement(Fragment
|
|
41930
|
+
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(BoxWithShadow$1, {
|
|
42992
41931
|
padding: "0",
|
|
42993
41932
|
minWidth: "100%",
|
|
42994
41933
|
minHeight: "592px",
|
|
@@ -43040,7 +41979,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
43040
41979
|
centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
|
|
43041
41980
|
content = _ref.content,
|
|
43042
41981
|
themeValues = _ref.themeValues;
|
|
43043
|
-
var themeContext = useContext(
|
|
41982
|
+
var themeContext = useContext(ThemeContext);
|
|
43044
41983
|
var isMobile = themeContext.isMobile;
|
|
43045
41984
|
return /*#__PURE__*/React.createElement(Box, {
|
|
43046
41985
|
padding: "0",
|
|
@@ -43056,7 +41995,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
43056
41995
|
minWidth: "100%",
|
|
43057
41996
|
extraStyles: "z-index: 1;",
|
|
43058
41997
|
role: "main"
|
|
43059
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment
|
|
41998
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Center, {
|
|
43060
41999
|
maxWidth: isMobile && fullWidthMobile ? "100%" : maxContentWidth,
|
|
43061
42000
|
intrinsic: !isMobile
|
|
43062
42001
|
}, centeredMobileContent ? /*#__PURE__*/React.createElement(Cover, {
|
|
@@ -43085,7 +42024,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
43085
42024
|
fullWidthMobile = _ref$fullWidthMobile === void 0 ? true : _ref$fullWidthMobile,
|
|
43086
42025
|
content = _ref.content,
|
|
43087
42026
|
themeValues = _ref.themeValues;
|
|
43088
|
-
var themeContext = useContext(
|
|
42027
|
+
var themeContext = useContext(ThemeContext);
|
|
43089
42028
|
var isMobile = themeContext.isMobile;
|
|
43090
42029
|
return /*#__PURE__*/React.createElement(Box, {
|
|
43091
42030
|
padding: "0",
|
|
@@ -43098,7 +42037,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
43098
42037
|
padding: "0",
|
|
43099
42038
|
minWidth: "100%",
|
|
43100
42039
|
role: "main"
|
|
43101
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment
|
|
42040
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Center, {
|
|
43102
42041
|
maxWidth: isMobile && fullWidthMobile ? "100%" : maxContentWidth,
|
|
43103
42042
|
intrinsic: !isMobile
|
|
43104
42043
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
@@ -43125,7 +42064,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
43125
42064
|
maxWidth = _ref$maxWidth === void 0 ? "75rem" : _ref$maxWidth,
|
|
43126
42065
|
_ref$gutters = _ref.gutters,
|
|
43127
42066
|
gutters = _ref$gutters === void 0 ? "2rem" : _ref$gutters;
|
|
43128
|
-
var themeContext = useContext(
|
|
42067
|
+
var themeContext = useContext(ThemeContext);
|
|
43129
42068
|
var isMobile = themeContext.isMobile;
|
|
43130
42069
|
return /*#__PURE__*/React.createElement(Box, {
|
|
43131
42070
|
padding: "0",
|
|
@@ -43143,7 +42082,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
43143
42082
|
minHeight: "100%",
|
|
43144
42083
|
extraStyles: "z-index: 1;",
|
|
43145
42084
|
role: "main"
|
|
43146
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment
|
|
42085
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Center, {
|
|
43147
42086
|
maxWidth: maxWidth,
|
|
43148
42087
|
gutters: gutters
|
|
43149
42088
|
}, content)), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
@@ -43176,7 +42115,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
43176
42115
|
_ref$sidebarVerticalC = _ref.sidebarVerticalCenter,
|
|
43177
42116
|
sidebarVerticalCenter = _ref$sidebarVerticalC === void 0 ? false : _ref$sidebarVerticalC,
|
|
43178
42117
|
themeValues = _ref.themeValues;
|
|
43179
|
-
var themeContext = useContext(
|
|
42118
|
+
var themeContext = useContext(ThemeContext);
|
|
43180
42119
|
var isMobile = themeContext.isMobile;
|
|
43181
42120
|
return /*#__PURE__*/React.createElement(Box, {
|
|
43182
42121
|
padding: "0",
|
|
@@ -43191,7 +42130,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
43191
42130
|
padding: "0",
|
|
43192
42131
|
minWidth: "100%",
|
|
43193
42132
|
role: "main"
|
|
43194
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment
|
|
42133
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Box, {
|
|
43195
42134
|
padding: sidebarWrapperPadding
|
|
43196
42135
|
}, /*#__PURE__*/React.createElement(Center, {
|
|
43197
42136
|
maxWidth: sidebarWrapperMaxWidth
|
|
@@ -43200,7 +42139,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
43200
42139
|
childGap: sidebarContentGap,
|
|
43201
42140
|
sidebarOnRight: sidebarOnRight,
|
|
43202
42141
|
contentMinWidth: mainContentMinWidth
|
|
43203
|
-
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment
|
|
42142
|
+
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment, null) : sidebarContent, mainContent, sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment, null))))), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
43204
42143
|
padding: "0"
|
|
43205
42144
|
})));
|
|
43206
42145
|
};
|
|
@@ -43232,7 +42171,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
43232
42171
|
_ref$sidebarVerticalC = _ref.sidebarVerticalCenter,
|
|
43233
42172
|
sidebarVerticalCenter = _ref$sidebarVerticalC === void 0 ? false : _ref$sidebarVerticalC,
|
|
43234
42173
|
themeValues = _ref.themeValues;
|
|
43235
|
-
var themeContext = useContext(
|
|
42174
|
+
var themeContext = useContext(ThemeContext);
|
|
43236
42175
|
var isMobile = themeContext.isMobile;
|
|
43237
42176
|
return /*#__PURE__*/React.createElement(Box, {
|
|
43238
42177
|
padding: "0",
|
|
@@ -43251,7 +42190,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
43251
42190
|
minWidth: "100%",
|
|
43252
42191
|
key: "content-box",
|
|
43253
42192
|
role: "main"
|
|
43254
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment
|
|
42193
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Box, {
|
|
43255
42194
|
padding: sidebarWrapperPadding,
|
|
43256
42195
|
key: "content-wrapper"
|
|
43257
42196
|
}, /*#__PURE__*/React.createElement(Center, {
|
|
@@ -43263,12 +42202,12 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
43263
42202
|
sidebarOnRight: sidebarOnRight,
|
|
43264
42203
|
contentMinWidth: mainContentMinWidth,
|
|
43265
42204
|
key: "content-sidebar"
|
|
43266
|
-
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment
|
|
42205
|
+
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment, {
|
|
43267
42206
|
key: "sidebar-fragment"
|
|
43268
42207
|
}) : sidebarContent, /*#__PURE__*/React.createElement(Stack, {
|
|
43269
42208
|
key: "content-stack",
|
|
43270
42209
|
childGap: contentStackGap
|
|
43271
|
-
}, mainContent), sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment
|
|
42210
|
+
}, mainContent), sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment, {
|
|
43272
42211
|
key: "sidebar-fragment"
|
|
43273
42212
|
}))))), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
43274
42213
|
padding: "0",
|