@thecb/components 5.9.0-beta.7 → 5.9.1
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 +1348 -419
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1395 -465
- package/dist/index.esm.js.map +1 -1
- package/package.json +3 -4
- package/src/components/atoms/amount-callout/AmountCallout.theme.js +1 -1
- package/src/components/atoms/button-with-action/ButtonWithAction.js +0 -2
- package/src/components/atoms/button-with-link/ButtonWithLink.js +1 -10
- package/src/components/atoms/icons/AutopayOnIcon.js +10 -4
- package/src/components/atoms/layouts/Box.styled.js +5 -3
- package/src/components/atoms/layouts/Cluster.js +1 -1
- package/src/components/atoms/layouts/Cluster.styled.js +1 -1
- package/src/components/atoms/link/ExternalLink.js +0 -2
- package/src/components/atoms/link/InternalLink.js +0 -2
- package/src/components/atoms/placeholder/Placeholder.js +1 -1
- package/src/components/atoms/text/Text.js +0 -2
- package/src/components/atoms/text/Text.styled.js +0 -1
- package/src/components/molecules/obligation/Obligation.js +16 -46
- package/src/components/molecules/obligation/modules/AmountModule.js +0 -1
- package/src/components/molecules/obligation/modules/AutopayModalModule.js +47 -80
- package/src/components/molecules/obligation/modules/InactiveControlsModule.js +10 -20
- package/src/components/molecules/obligation/modules/InactiveTitleModule.js +2 -2
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +9 -8
- package/src/components/molecules/obligation/modules/index.js +1 -3
- package/src/components/molecules/tab-sidebar/TabSidebar.js +2 -3
- package/src/components/molecules/workflow-tile/WorkflowTile.js +0 -1
- package/src/components/templates/center-single/CenterSingle.js +1 -2
- package/src/components/templates/center-stack/CenterStack.js +1 -2
- package/src/components/templates/default-page-template/DefaultPageTemplate.js +1 -2
- package/src/components/templates/sidebar-single-content/SidebarSingleContent.js +1 -2
- package/src/components/templates/sidebar-stack-content/SidebarStackContent.js +1 -2
- package/src/components/templates/templates.theme.js +1 -1
- package/src/constants/colors.js +8 -10
- package/src/.DS_Store +0 -0
- package/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +0 -62
package/dist/index.esm.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import React, {
|
|
2
|
-
import styled, { ThemeContext, css, ThemeProvider } from 'styled-components';
|
|
1
|
+
import React, { useContext, useMemo, useRef, useDebugValue, createElement, createContext, PureComponent, forwardRef, Component, cloneElement, Children, Fragment as Fragment$1, useState, useLayoutEffect, memo, useEffect as useEffect$1, useCallback, isValidElement, createRef } from 'react';
|
|
3
2
|
import theme from 'styled-theming';
|
|
4
3
|
import { Link, useNavigate } from 'react-router-dom';
|
|
5
4
|
import reactDom from 'react-dom';
|
|
@@ -214,6 +213,1081 @@ function _nonIterableRest() {
|
|
|
214
213
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
215
214
|
}
|
|
216
215
|
|
|
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
|
+
|
|
217
1291
|
/*! *****************************************************************************
|
|
218
1292
|
Copyright (c) Microsoft Corporation.
|
|
219
1293
|
|
|
@@ -699,17 +1773,17 @@ var FLOAT_32_SUPPORTED = typeof Float32Array !== 'undefined';
|
|
|
699
1773
|
var a = function (a1, a2) {
|
|
700
1774
|
return 1.0 - 3.0 * a2 + 3.0 * a1;
|
|
701
1775
|
};
|
|
702
|
-
var b = function (a1, a2) {
|
|
1776
|
+
var b$2 = function (a1, a2) {
|
|
703
1777
|
return 3.0 * a2 - 6.0 * a1;
|
|
704
1778
|
};
|
|
705
|
-
var c = function (a1) {
|
|
1779
|
+
var c$1 = function (a1) {
|
|
706
1780
|
return 3.0 * a1;
|
|
707
1781
|
};
|
|
708
1782
|
var getSlope = function (t, a1, a2) {
|
|
709
|
-
return 3.0 * a(a1, a2) * t * t + 2.0 * b(a1, a2) * t + c(a1);
|
|
1783
|
+
return 3.0 * a(a1, a2) * t * t + 2.0 * b$2(a1, a2) * t + c$1(a1);
|
|
710
1784
|
};
|
|
711
1785
|
var calcBezier = function (t, a1, a2) {
|
|
712
|
-
return ((a(a1, a2) * t + b(a1, a2)) * t + c(a1)) * t;
|
|
1786
|
+
return ((a(a1, a2) * t + b$2(a1, a2)) * t + c$1(a1)) * t;
|
|
713
1787
|
};
|
|
714
1788
|
function cubicBezier(mX1, mY1, mX2, mY2) {
|
|
715
1789
|
var sampleValues = FLOAT_32_SUPPORTED ? new Float32Array(K_SPLINE_TABLE_SIZE) : new Array(K_SPLINE_TABLE_SIZE);
|
|
@@ -4111,7 +5185,7 @@ var domPose$1 = function (element, config) {
|
|
|
4111
5185
|
return domPose(createPoseConfig(element, config));
|
|
4112
5186
|
};
|
|
4113
5187
|
|
|
4114
|
-
function memoize(fn) {
|
|
5188
|
+
function memoize$1(fn) {
|
|
4115
5189
|
var cache = {};
|
|
4116
5190
|
return function (arg) {
|
|
4117
5191
|
if (cache[arg] === undefined) cache[arg] = fn(arg);
|
|
@@ -4119,10 +5193,10 @@ function memoize(fn) {
|
|
|
4119
5193
|
};
|
|
4120
5194
|
}
|
|
4121
5195
|
|
|
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
|
|
5196
|
+
var reactPropsRegex$1 = /^((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
|
|
4123
5197
|
|
|
4124
|
-
var index$2 = memoize(function (prop) {
|
|
4125
|
-
return reactPropsRegex.test(prop) || prop.charCodeAt(0) === 111
|
|
5198
|
+
var index$2 = memoize$1(function (prop) {
|
|
5199
|
+
return reactPropsRegex$1.test(prop) || prop.charCodeAt(0) === 111
|
|
4126
5200
|
/* o */
|
|
4127
5201
|
&& prop.charCodeAt(1) === 110
|
|
4128
5202
|
/* n */
|
|
@@ -4744,7 +5818,7 @@ var themeComponent = function themeComponent(component, componentThemeId, fallba
|
|
|
4744
5818
|
variant = _ref7$variant === void 0 ? defaultVariant : _ref7$variant,
|
|
4745
5819
|
props = _objectWithoutProperties(_ref7, _excluded);
|
|
4746
5820
|
|
|
4747
|
-
var themeContext = useContext(
|
|
5821
|
+
var themeContext = useContext(Me);
|
|
4748
5822
|
var metadata = (_themeContext$metadat = themeContext === null || themeContext === void 0 ? void 0 : themeContext.metadata) !== null && _themeContext$metadat !== void 0 ? _themeContext$metadat : {};
|
|
4749
5823
|
var themeValues = themeContext ? createThemeValues(themeContext, fallbackValues, componentThemeId, variant) : fallbackValues;
|
|
4750
5824
|
return component(_objectSpread2(_objectSpread2({}, props), {}, {
|
|
@@ -4818,34 +5892,25 @@ var AQUA_HAZE_WHITE = "#F7F9FA";
|
|
|
4818
5892
|
var BLEACH_WHITE = "#FEF4d7";
|
|
4819
5893
|
var CATSKILL_WHITE = "#EAF2F6"; // GREY
|
|
4820
5894
|
|
|
4821
|
-
var ATHENS_GREY = "#F6F6F9";
|
|
4822
|
-
|
|
5895
|
+
var ATHENS_GREY = "#F6F6F9";
|
|
4823
5896
|
var ALTO_GREY = "#d1d1d1";
|
|
4824
5897
|
var SILVER_GREY = "#cdcdcd";
|
|
4825
5898
|
var PEWTER_GREY = "#DFE1E4";
|
|
4826
5899
|
var ASH_GREY = "#979797";
|
|
4827
5900
|
var IRON_GREY = "#d5d8dc";
|
|
4828
|
-
var GHOST_GREY = "#CACED8";
|
|
4829
|
-
|
|
5901
|
+
var GHOST_GREY = "#CACED8";
|
|
4830
5902
|
var DUSTY_GREY = "#9B9B9B";
|
|
4831
5903
|
var REGENT_GREY = "#959EA7";
|
|
4832
|
-
var STORM_GREY = "#6D717E";
|
|
4833
|
-
|
|
5904
|
+
var STORM_GREY = "#6D717E";
|
|
4834
5905
|
var TROUT_GREY = "#515660";
|
|
4835
5906
|
var MINESHAFT_GREY = "#333333";
|
|
4836
5907
|
var SOOT_GREY = "#999999";
|
|
4837
5908
|
var FIREFLY_GREY = "#091325";
|
|
4838
|
-
var BRIGHT_GREY = "#3B414D";
|
|
4839
|
-
|
|
4840
|
-
var
|
|
4841
|
-
|
|
4842
|
-
var GRECIAN_GREY = "#E5E7EC"; // CBS-200
|
|
4843
|
-
|
|
5909
|
+
var BRIGHT_GREY = "#3B414D";
|
|
5910
|
+
var CHARADE_GREY = "#292A33";
|
|
5911
|
+
var GRECIAN_GREY = "#E5E7EC";
|
|
4844
5912
|
var BLACK_SQUEEZE = "#EAF2F7";
|
|
4845
|
-
var GREY_CHATEAU = "#959CA8"; //
|
|
4846
|
-
|
|
4847
|
-
var COOL_GREY_05 = "#fbfcfd"; // CBS-050
|
|
4848
|
-
// BLUE
|
|
5913
|
+
var GREY_CHATEAU = "#959CA8"; // BLUE
|
|
4849
5914
|
|
|
4850
5915
|
var CLOUDBURST_BLUE = "#26395c";
|
|
4851
5916
|
var ZODIAC_BLUE = "#14284b";
|
|
@@ -4879,7 +5944,7 @@ var MUSTARD_YELLOW = "#FFD459";
|
|
|
4879
5944
|
var FIRE_YELLOW = "#B34A00"; // ORANGE
|
|
4880
5945
|
|
|
4881
5946
|
var CARROT_ORANGE = "#ED9620";
|
|
4882
|
-
var ZEST_ORANGE = "#
|
|
5947
|
+
var ZEST_ORANGE = "#F47820";
|
|
4883
5948
|
var APRICOT_ORANGE = "#FFE8D8"; // RED
|
|
4884
5949
|
|
|
4885
5950
|
var RED = "#FF0000";
|
|
@@ -4949,7 +6014,6 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
4949
6014
|
BRIGHT_GREY: BRIGHT_GREY,
|
|
4950
6015
|
CHARADE_GREY: CHARADE_GREY,
|
|
4951
6016
|
GRECIAN_GREY: GRECIAN_GREY,
|
|
4952
|
-
COOL_GREY_05: COOL_GREY_05,
|
|
4953
6017
|
BLACK_SQUEEZE: BLACK_SQUEEZE,
|
|
4954
6018
|
GREY_CHATEAU: GREY_CHATEAU,
|
|
4955
6019
|
CLOUDBURST_BLUE: CLOUDBURST_BLUE,
|
|
@@ -4994,10 +6058,10 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
4994
6058
|
ERROR_COLOR: ERROR_COLOR
|
|
4995
6059
|
});
|
|
4996
6060
|
|
|
4997
|
-
var TextSpan =
|
|
6061
|
+
var TextSpan = qe.span.withConfig({
|
|
4998
6062
|
displayName: "Textstyled__TextSpan",
|
|
4999
6063
|
componentId: "sc-1oy97we-0"
|
|
5000
|
-
})(["--font-size:", ";font-size:var(--font-size);line-height:calc(1.5 * var(--font-size));font-weight:", ";font-family:", ";color:", "
|
|
6064
|
+
})(["--font-size:", ";font-size:var(--font-size);line-height:calc(1.5 * var(--font-size));font-weight:", ";font-family:", ";color:", ";&:hover{", "}&:focus{outline:3px solid ", ";outline-offset:2px;}", " ", ""], function (_ref) {
|
|
5001
6065
|
var fontSize = _ref.fontSize;
|
|
5002
6066
|
return fontSize;
|
|
5003
6067
|
}, function (_ref2) {
|
|
@@ -5010,26 +6074,17 @@ var TextSpan = styled.span.withConfig({
|
|
|
5010
6074
|
var color = _ref4.color;
|
|
5011
6075
|
return color;
|
|
5012
6076
|
}, function (_ref5) {
|
|
5013
|
-
var
|
|
5014
|
-
return
|
|
5015
|
-
}, function (_ref6) {
|
|
5016
|
-
var
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
return disabled && css(["", ""], disabledStyles);
|
|
5022
|
-
}, function (_ref8) {
|
|
5023
|
-
var extraStyles = _ref8.extraStyles;
|
|
6077
|
+
var hoverStyles = _ref5.hoverStyles;
|
|
6078
|
+
return Ae(["", ""], hoverStyles);
|
|
6079
|
+
}, ROYAL_BLUE, function (_ref6) {
|
|
6080
|
+
var disabled = _ref6.disabled,
|
|
6081
|
+
disabledStyles = _ref6.disabledStyles;
|
|
6082
|
+
return disabled && Ae(["", ""], disabledStyles);
|
|
6083
|
+
}, function (_ref7) {
|
|
6084
|
+
var extraStyles = _ref7.extraStyles;
|
|
5024
6085
|
return extraStyles;
|
|
5025
6086
|
});
|
|
5026
6087
|
|
|
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
|
-
|
|
5033
6088
|
var numeral = createCommonjsModule(function (module) {
|
|
5034
6089
|
/*! @preserve
|
|
5035
6090
|
* numeral.js
|
|
@@ -6070,7 +7125,7 @@ var safeChildren = function safeChildren(children) {
|
|
|
6070
7125
|
|
|
6071
7126
|
if (children && children instanceof Array) {
|
|
6072
7127
|
return children.map(function (child) {
|
|
6073
|
-
return unsafeValues.includes(child) ? /*#__PURE__*/React.createElement(Fragment, {
|
|
7128
|
+
return unsafeValues.includes(child) ? /*#__PURE__*/React.createElement(Fragment$1, {
|
|
6074
7129
|
key: createUniqueId()
|
|
6075
7130
|
}, replacement) : child;
|
|
6076
7131
|
});
|
|
@@ -6152,7 +7207,7 @@ var general = /*#__PURE__*/Object.freeze({
|
|
|
6152
7207
|
screenReaderOnlyStyle: screenReaderOnlyStyle
|
|
6153
7208
|
});
|
|
6154
7209
|
|
|
6155
|
-
var _excluded$1 = ["themeValues", "weight", "color", "
|
|
7210
|
+
var _excluded$1 = ["themeValues", "weight", "color", "extraStyles", "hoverStyles", "onClick", "onKeyPress", "as", "dataQa", "children"];
|
|
6156
7211
|
|
|
6157
7212
|
var Text = function Text(_ref) {
|
|
6158
7213
|
var themeValues = _ref.themeValues,
|
|
@@ -6160,8 +7215,6 @@ var Text = function Text(_ref) {
|
|
|
6160
7215
|
weight = _ref$weight === void 0 ? FONT_WEIGHT_REGULAR : _ref$weight,
|
|
6161
7216
|
_ref$color = _ref.color,
|
|
6162
7217
|
color = _ref$color === void 0 ? FIREFLY_GREY : _ref$color,
|
|
6163
|
-
_ref$textWrap = _ref.textWrap,
|
|
6164
|
-
textWrap = _ref$textWrap === void 0 ? true : _ref$textWrap,
|
|
6165
7218
|
_ref$extraStyles = _ref.extraStyles,
|
|
6166
7219
|
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
6167
7220
|
hoverStyles = _ref.hoverStyles,
|
|
@@ -6182,8 +7235,7 @@ var Text = function Text(_ref) {
|
|
|
6182
7235
|
hoverStyles: hoverStyles,
|
|
6183
7236
|
onClick: onClick,
|
|
6184
7237
|
onKeyPress: onKeyPress,
|
|
6185
|
-
"data-qa": dataQa
|
|
6186
|
-
$textWrap: textWrap
|
|
7238
|
+
"data-qa": dataQa
|
|
6187
7239
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
6188
7240
|
};
|
|
6189
7241
|
|
|
@@ -6200,7 +7252,7 @@ var _excluded$2 = ["activeStyles", "hoverStyles", "disabledStyles", "extraStyles
|
|
|
6200
7252
|
|
|
6201
7253
|
/* eslint-disable no-unused-vars */
|
|
6202
7254
|
|
|
6203
|
-
var BoxWrapper =
|
|
7255
|
+
var BoxWrapper = qe(function (_ref) {
|
|
6204
7256
|
var activeStyles = _ref.activeStyles,
|
|
6205
7257
|
hoverStyles = _ref.hoverStyles,
|
|
6206
7258
|
disabledStyles = _ref.disabledStyles,
|
|
@@ -6227,14 +7279,13 @@ var BoxWrapper = styled(function (_ref) {
|
|
|
6227
7279
|
}).withConfig({
|
|
6228
7280
|
displayName: "Boxstyled__BoxWrapper",
|
|
6229
7281
|
componentId: "sc-1f9ij0d-0"
|
|
6230
|
-
})(["position:relative;box-sizing:border-box;padding:", ";border:", ";box-shadow:", ";background-color:", ";min-height:", ";", " min-width:", ";max-width:", ";color:", ";border-radius:", ";border-width:", ";text-align:", ";&:hover{", "}&:focus{", "}&:active{", "}&:disabled{", "}& *{color:", ";}", " ", ""], function (_ref2) {
|
|
7282
|
+
})(["position:relative;box-sizing:border-box;padding:", ";border:", ";box-shadow:", ";background-color:", ";min-height:", ";", " min-width:", ";max-width:", ";color:", ";border-radius:", ";border-width:", ";border:", ";text-align:", ";&:hover{", "}&:focus{", "}&:active{", "}&:disabled{", "}& *{color:", ";}", " ", ""], function (_ref2) {
|
|
6231
7283
|
var padding = _ref2.padding;
|
|
6232
7284
|
return padding;
|
|
6233
7285
|
}, function (_ref3) {
|
|
6234
|
-
var
|
|
6235
|
-
borderSize = _ref3.borderSize,
|
|
7286
|
+
var borderSize = _ref3.borderSize,
|
|
6236
7287
|
borderColor = _ref3.borderColor;
|
|
6237
|
-
return
|
|
7288
|
+
return "".concat(borderSize, " solid ").concat(borderColor);
|
|
6238
7289
|
}, function (_ref4) {
|
|
6239
7290
|
var boxShadow = _ref4.boxShadow;
|
|
6240
7291
|
return boxShadow;
|
|
@@ -6260,35 +7311,39 @@ var BoxWrapper = styled(function (_ref) {
|
|
|
6260
7311
|
var borderRadius = _ref11.borderRadius;
|
|
6261
7312
|
return borderRadius;
|
|
6262
7313
|
}, function (_ref12) {
|
|
6263
|
-
var borderWidthOverride = _ref12.borderWidthOverride
|
|
6264
|
-
|
|
7314
|
+
var borderWidthOverride = _ref12.borderWidthOverride,
|
|
7315
|
+
borderSize = _ref12.borderSize;
|
|
7316
|
+
return borderWidthOverride ? borderWidthOverride : borderSize;
|
|
6265
7317
|
}, function (_ref13) {
|
|
6266
|
-
var
|
|
6267
|
-
return
|
|
7318
|
+
var border = _ref13.border;
|
|
7319
|
+
return border;
|
|
6268
7320
|
}, function (_ref14) {
|
|
6269
|
-
var
|
|
6270
|
-
|
|
6271
|
-
return css(["", " ", ""], hoverStyles, as === "button" ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
7321
|
+
var textAlign = _ref14.textAlign;
|
|
7322
|
+
return textAlign;
|
|
6272
7323
|
}, function (_ref15) {
|
|
6273
|
-
var
|
|
6274
|
-
|
|
7324
|
+
var hoverStyles = _ref15.hoverStyles,
|
|
7325
|
+
as = _ref15.as;
|
|
7326
|
+
return Ae(["", " ", ""], hoverStyles, as === "button" ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
6275
7327
|
}, function (_ref16) {
|
|
6276
|
-
var
|
|
6277
|
-
|
|
6278
|
-
return css(["", " ", ""], activeStyles, as === "button" ? " > * > span {\n ".concat(activeStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
7328
|
+
var as = _ref16.as;
|
|
7329
|
+
return Ae(["outline:3px solid ", ";outline-offset:2px;", ""], ROYAL_BLUE, as === "button" && "\n > * > span {\n border: none;\n outline: none;\n box-shadow: none;\n }");
|
|
6279
7330
|
}, function (_ref17) {
|
|
6280
|
-
var
|
|
7331
|
+
var activeStyles = _ref17.activeStyles,
|
|
6281
7332
|
as = _ref17.as;
|
|
6282
|
-
return
|
|
7333
|
+
return Ae(["", " ", ""], activeStyles, as === "button" ? " > * > span {\n ".concat(activeStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
6283
7334
|
}, function (_ref18) {
|
|
6284
|
-
var
|
|
6285
|
-
|
|
7335
|
+
var disabledStyles = _ref18.disabledStyles,
|
|
7336
|
+
as = _ref18.as;
|
|
7337
|
+
return Ae(["", " ", ""], disabledStyles, as === "button" ? " > * > span {\n ".concat(disabledStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
6286
7338
|
}, function (_ref19) {
|
|
6287
|
-
var
|
|
6288
|
-
return
|
|
7339
|
+
var color = _ref19.color;
|
|
7340
|
+
return color;
|
|
6289
7341
|
}, function (_ref20) {
|
|
6290
|
-
var
|
|
6291
|
-
return
|
|
7342
|
+
var hiddenStyles = _ref20.hiddenStyles;
|
|
7343
|
+
return hiddenStyles && Ae(["display:none;"]);
|
|
7344
|
+
}, function (_ref21) {
|
|
7345
|
+
var extraStyles = _ref21.extraStyles;
|
|
7346
|
+
return Ae(["", ""], extraStyles);
|
|
6292
7347
|
});
|
|
6293
7348
|
/* eslint-enable no-unused-vars */
|
|
6294
7349
|
|
|
@@ -6372,10 +7427,10 @@ var Box = function Box(_ref) {
|
|
|
6372
7427
|
onFocus: onFocus,
|
|
6373
7428
|
onBlur: onBlur,
|
|
6374
7429
|
onTouchEnd: onTouchEnd
|
|
6375
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7430
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
6376
7431
|
};
|
|
6377
7432
|
|
|
6378
|
-
var CenterWrapper =
|
|
7433
|
+
var CenterWrapper = qe.div.withConfig({
|
|
6379
7434
|
displayName: "Centerstyled__CenterWrapper",
|
|
6380
7435
|
componentId: "sc-vawqfc-0"
|
|
6381
7436
|
})(["box-sizing:content-box;margin-left:auto;margin-right:auto;max-width:", ";padding-left:", ";padding-right:", ";", ";"], function (_ref) {
|
|
@@ -6411,13 +7466,13 @@ var Center = function Center(_ref) {
|
|
|
6411
7466
|
maxWidth: maxWidth,
|
|
6412
7467
|
gutters: gutters,
|
|
6413
7468
|
intrinsic: intrinsic
|
|
6414
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7469
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
6415
7470
|
};
|
|
6416
7471
|
|
|
6417
7472
|
var _excluded$5 = ["overflow"];
|
|
6418
7473
|
/* eslint-disable no-unused-vars */
|
|
6419
7474
|
|
|
6420
|
-
var ClusterWrapper =
|
|
7475
|
+
var ClusterWrapper = qe(function (_ref) {
|
|
6421
7476
|
var overflow = _ref.overflow,
|
|
6422
7477
|
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
6423
7478
|
|
|
@@ -6441,12 +7496,12 @@ var ClusterWrapper = styled(function (_ref) {
|
|
|
6441
7496
|
var $extraStyles = _ref6.$extraStyles;
|
|
6442
7497
|
return $extraStyles;
|
|
6443
7498
|
});
|
|
6444
|
-
var ClusterInnerWrapper =
|
|
7499
|
+
var ClusterInnerWrapper = qe.div.withConfig({
|
|
6445
7500
|
displayName: "Clusterstyled__ClusterInnerWrapper",
|
|
6446
7501
|
componentId: "sc-1dkqsm7-1"
|
|
6447
7502
|
})(["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) {
|
|
6448
|
-
var
|
|
6449
|
-
return
|
|
7503
|
+
var nowrap = _ref7.nowrap;
|
|
7504
|
+
return nowrap ? "nowrap" : "wrap";
|
|
6450
7505
|
}, function (_ref8) {
|
|
6451
7506
|
var justify = _ref8.justify;
|
|
6452
7507
|
return justify;
|
|
@@ -6506,11 +7561,11 @@ var Cluster = function Cluster(_ref) {
|
|
|
6506
7561
|
childGap: childGap,
|
|
6507
7562
|
minHeight: minHeight,
|
|
6508
7563
|
minWidth: minWidth,
|
|
6509
|
-
|
|
6510
|
-
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null))));
|
|
7564
|
+
nowrap: nowrap
|
|
7565
|
+
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null))));
|
|
6511
7566
|
};
|
|
6512
7567
|
|
|
6513
|
-
var GridWrapper =
|
|
7568
|
+
var GridWrapper = qe.div.withConfig({
|
|
6514
7569
|
displayName: "Gridstyled__GridWrapper",
|
|
6515
7570
|
componentId: "sc-8iakdj-0"
|
|
6516
7571
|
})(["display:grid;grid-gap:", ";grid-template-columns:", ";@supports (width:min(", ",100%)){&{grid-template-columns:repeat( auto-fill,minmax( ", ",", " ) );}}"], function (_ref) {
|
|
@@ -6566,18 +7621,18 @@ var Grid = function Grid(_ref) {
|
|
|
6566
7621
|
aboveMin: aboveMin,
|
|
6567
7622
|
minColWidth: typeof minColWidth === "number" ? "".concat(minColWidth, "rem") : minColWidth,
|
|
6568
7623
|
maxColWidth: typeof maxColWidth === "number" ? "".concat(maxColWidth, "rem") : maxColWidth
|
|
6569
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7624
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
6570
7625
|
};
|
|
6571
7626
|
|
|
6572
7627
|
var _excluded$8 = ["onRight", "childGap", "contentMinWidth", "minHeight", "fullHeight"];
|
|
6573
|
-
var SidebarWrapper =
|
|
7628
|
+
var SidebarWrapper = qe.div.withConfig({
|
|
6574
7629
|
displayName: "Sidebarstyled__SidebarWrapper",
|
|
6575
7630
|
componentId: "sc-1bbn2or-0"
|
|
6576
7631
|
})(["overflow:visible;box-sizing:border-box;", ""], function (_ref) {
|
|
6577
7632
|
var fullHeight = _ref.fullHeight;
|
|
6578
7633
|
return fullHeight ? "height: 100%;" : "";
|
|
6579
7634
|
});
|
|
6580
|
-
var SidebarInnerWrapper =
|
|
7635
|
+
var SidebarInnerWrapper = qe( // eslint-disable-next-line no-unused-vars
|
|
6581
7636
|
function (_ref2) {
|
|
6582
7637
|
var onRight = _ref2.onRight,
|
|
6583
7638
|
childGap = _ref2.childGap,
|
|
@@ -6650,10 +7705,10 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
6650
7705
|
contentMinWidth: contentMinWidth,
|
|
6651
7706
|
fullHeight: fullHeight,
|
|
6652
7707
|
minHeight: minHeight
|
|
6653
|
-
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null))));
|
|
7708
|
+
}, safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null))));
|
|
6654
7709
|
};
|
|
6655
7710
|
|
|
6656
|
-
var StackWrapper =
|
|
7711
|
+
var StackWrapper = qe.div.withConfig({
|
|
6657
7712
|
displayName: "Stackstyled__StackWrapper",
|
|
6658
7713
|
componentId: "sc-ejhezz-0"
|
|
6659
7714
|
})(["box-sizing:border-box;display:flex;flex-direction:", ";justify-content:", ";height:", ";> *{margin-top:0;margin-bottom:0;}> * + *{", "}", ";"], function (_ref) {
|
|
@@ -6704,13 +7759,13 @@ var Stack = function Stack(_ref) {
|
|
|
6704
7759
|
fullHeight: fullHeight,
|
|
6705
7760
|
direction: direction,
|
|
6706
7761
|
justify: justify
|
|
6707
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7762
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
6708
7763
|
};
|
|
6709
7764
|
|
|
6710
|
-
var CoverOuterContainer =
|
|
7765
|
+
var CoverOuterContainer = qe.div.withConfig({
|
|
6711
7766
|
displayName: "Coverstyled__CoverOuterContainer",
|
|
6712
7767
|
componentId: "sc-1jhq379-0"
|
|
6713
|
-
})(["box-sizing:border-box;display:flex;flex-direction:column;min-height:", ";padding:", ";min-width:", ";> *{margin-top:", ";margin-bottom:", ";}
|
|
7768
|
+
})(["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) {
|
|
6714
7769
|
var minHeight = _ref.minHeight;
|
|
6715
7770
|
return minHeight;
|
|
6716
7771
|
}, function (_ref2) {
|
|
@@ -6771,10 +7826,10 @@ var Cover = function Cover(_ref) {
|
|
|
6771
7826
|
childGap: childGap,
|
|
6772
7827
|
centerOverride: centerOverride,
|
|
6773
7828
|
fillCenter: fillCenter
|
|
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));
|
|
7829
|
+
}, rest), singleChild ? /*#__PURE__*/React.createElement("div", null) : /*#__PURE__*/React.createElement(Fragment$1, null), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)), singleChild ? /*#__PURE__*/React.createElement("div", null) : /*#__PURE__*/React.createElement(Fragment$1, null));
|
|
6775
7830
|
};
|
|
6776
7831
|
|
|
6777
|
-
var FrameOuterContainer =
|
|
7832
|
+
var FrameOuterContainer = qe.div.withConfig({
|
|
6778
7833
|
displayName: "Framestyled__FrameOuterContainer",
|
|
6779
7834
|
componentId: "sc-1syfnuv-0"
|
|
6780
7835
|
})(["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) {
|
|
@@ -6808,14 +7863,14 @@ var Frame = function Frame(_ref) {
|
|
|
6808
7863
|
return /*#__PURE__*/React.createElement(FrameOuterContainer, _extends({
|
|
6809
7864
|
numerator: numerator,
|
|
6810
7865
|
denominator: denominator
|
|
6811
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
7866
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
6812
7867
|
};
|
|
6813
7868
|
|
|
6814
|
-
var SwitcherOuterContainer =
|
|
7869
|
+
var SwitcherOuterContainer = qe.div.withConfig({
|
|
6815
7870
|
displayName: "Switcherstyled__SwitcherOuterContainer",
|
|
6816
7871
|
componentId: "sc-1ym61kc-0"
|
|
6817
7872
|
})(["box-sizing:border-box;display:block;"]);
|
|
6818
|
-
var SwitcherInnerContainer =
|
|
7873
|
+
var SwitcherInnerContainer = qe.div.withConfig({
|
|
6819
7874
|
displayName: "Switcherstyled__SwitcherInnerContainer",
|
|
6820
7875
|
componentId: "sc-1ym61kc-1"
|
|
6821
7876
|
})(["box-sizing:border-box;display:flex;flex-wrap:wrap;overflow:hidden;padding:", ";margin:", ";", " > *{flex-grow:1;", ";", " ", "}", " ", " ", ""], function (_ref) {
|
|
@@ -6847,7 +7902,7 @@ var SwitcherInnerContainer = styled.div.withConfig({
|
|
|
6847
7902
|
return maxChildren ? "> :nth-last-child(".concat(maxChildren + 1, "), > :nth-last-child(").concat(maxChildren + 1, ") ~ * {\n flex-basis: 100%;\n }") : "";
|
|
6848
7903
|
}, function (_ref9) {
|
|
6849
7904
|
var extraStyles = _ref9.extraStyles;
|
|
6850
|
-
return
|
|
7905
|
+
return Ae(["", ""], extraStyles);
|
|
6851
7906
|
});
|
|
6852
7907
|
|
|
6853
7908
|
var _excluded$d = ["breakpoint", "childGap", "largeChild", "largeChildSize", "maxChildren", "maxChildrenOnly", "padding", "children", "extraStyles", "constrainMobile"];
|
|
@@ -6911,10 +7966,10 @@ var Switcher = function Switcher(_ref) {
|
|
|
6911
7966
|
padding: padding,
|
|
6912
7967
|
extraStyles: extraStyles,
|
|
6913
7968
|
constrainMobile: constrainMobile
|
|
6914
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null))));
|
|
7969
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null))));
|
|
6915
7970
|
};
|
|
6916
7971
|
|
|
6917
|
-
var ImposterWrapper =
|
|
7972
|
+
var ImposterWrapper = qe.div.withConfig({
|
|
6918
7973
|
displayName: "Imposterstyled__ImposterWrapper",
|
|
6919
7974
|
componentId: "sc-1q0gj35-0"
|
|
6920
7975
|
})(["position:", ";top:", ";left:", ";display:", ";", " ", " ", ";"], function (_ref) {
|
|
@@ -6992,7 +8047,7 @@ var Imposter = function Imposter(_ref) {
|
|
|
6992
8047
|
left: left,
|
|
6993
8048
|
centered: centered,
|
|
6994
8049
|
visible: visible
|
|
6995
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
8050
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
6996
8051
|
};
|
|
6997
8052
|
|
|
6998
8053
|
var Observer$1 = /*#__PURE__*/function () {
|
|
@@ -9441,9 +10496,9 @@ var createMotionComponent = function (_a) {
|
|
|
9441
10496
|
? null
|
|
9442
10497
|
: loadFunctionalityComponents(ref, values, props, parentContext, controls, shouldInheritVariant);
|
|
9443
10498
|
var renderedComponent = renderComponent(ref, style, values, props, isStatic);
|
|
9444
|
-
return (createElement(Fragment, null,
|
|
10499
|
+
return (createElement(Fragment$1, null,
|
|
9445
10500
|
createElement(MotionContext.Provider, { value: context }, renderedComponent),
|
|
9446
|
-
createElement(Fragment, null,
|
|
10501
|
+
createElement(Fragment$1, null,
|
|
9447
10502
|
createElement(Mount, { innerRef: ref, values: values, isStatic: isStatic }),
|
|
9448
10503
|
functionality)));
|
|
9449
10504
|
}
|
|
@@ -11654,7 +12709,7 @@ var Exit = {
|
|
|
11654
12709
|
}),
|
|
11655
12710
|
};
|
|
11656
12711
|
|
|
11657
|
-
var isPropValid = function (key) { return !isValidMotionProp(key); };
|
|
12712
|
+
var isPropValid$1 = function (key) { return !isValidMotionProp(key); };
|
|
11658
12713
|
/**
|
|
11659
12714
|
* Emotion and Styled Components both allow users to pass through arbitrary props to their components
|
|
11660
12715
|
* to dynamically generate CSS. They both use the `@emotion/is-prop-valid` package to determine which
|
|
@@ -11670,7 +12725,7 @@ var isPropValid = function (key) { return !isValidMotionProp(key); };
|
|
|
11670
12725
|
*/
|
|
11671
12726
|
try {
|
|
11672
12727
|
var emotionIsPropValid_1 = require("@emotion/is-prop-valid").default;
|
|
11673
|
-
isPropValid = function (key) {
|
|
12728
|
+
isPropValid$1 = function (key) {
|
|
11674
12729
|
// Handle events explicitly as Emotion validates them all as true
|
|
11675
12730
|
if (key.startsWith("on")) {
|
|
11676
12731
|
return !isValidMotionProp(key);
|
|
@@ -11686,7 +12741,7 @@ catch (_a) {
|
|
|
11686
12741
|
function filterValidProps(props) {
|
|
11687
12742
|
var domProps = {};
|
|
11688
12743
|
for (var key in props) {
|
|
11689
|
-
if (isPropValid(key)) {
|
|
12744
|
+
if (isPropValid$1(key)) {
|
|
11690
12745
|
domProps[key] = props[key];
|
|
11691
12746
|
}
|
|
11692
12747
|
}
|
|
@@ -11975,7 +13030,7 @@ var AnimatePresence = function (_a) {
|
|
|
11975
13030
|
// we play onMount animations or not.
|
|
11976
13031
|
if (isInitialRender.current) {
|
|
11977
13032
|
isInitialRender.current = false;
|
|
11978
|
-
return (createElement(Fragment, null, filteredChildren.map(function (child) { return (createElement(PresenceChild, { key: getChildKey(child), isPresent: true, initial: initial ? undefined : false }, child)); })));
|
|
13033
|
+
return (createElement(Fragment$1, null, filteredChildren.map(function (child) { return (createElement(PresenceChild, { key: getChildKey(child), isPresent: true, initial: initial ? undefined : false }, child)); })));
|
|
11979
13034
|
}
|
|
11980
13035
|
// If this is a subsequent render, deal with entering and exiting children
|
|
11981
13036
|
var childrenToRender = __spreadArrays(filteredChildren);
|
|
@@ -12036,7 +13091,7 @@ var AnimatePresence = function (_a) {
|
|
|
12036
13091
|
childrenToRender.length > 1) {
|
|
12037
13092
|
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.");
|
|
12038
13093
|
}
|
|
12039
|
-
return (createElement(Fragment, null, exiting.size
|
|
13094
|
+
return (createElement(Fragment$1, null, exiting.size
|
|
12040
13095
|
? childrenToRender
|
|
12041
13096
|
: childrenToRender.map(function (child) { return cloneElement(child); })));
|
|
12042
13097
|
};
|
|
@@ -12057,7 +13112,7 @@ if (typeof window !== "undefined") {
|
|
|
12057
13112
|
}
|
|
12058
13113
|
}
|
|
12059
13114
|
|
|
12060
|
-
var MotionWrapper =
|
|
13115
|
+
var MotionWrapper = qe(motion.div).withConfig({
|
|
12061
13116
|
displayName: "Motionstyled__MotionWrapper",
|
|
12062
13117
|
componentId: "sc-1m6r1io-0"
|
|
12063
13118
|
})(["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) {
|
|
@@ -12172,10 +13227,10 @@ var Motion = function Motion(_ref) {
|
|
|
12172
13227
|
return /*#__PURE__*/React.createElement(MotionWrapper, _extends({
|
|
12173
13228
|
position: position,
|
|
12174
13229
|
padding: padding
|
|
12175
|
-
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
13230
|
+
}, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
12176
13231
|
};
|
|
12177
13232
|
|
|
12178
|
-
var ReelStyled =
|
|
13233
|
+
var ReelStyled = qe.div.withConfig({
|
|
12179
13234
|
displayName: "Reelstyled__ReelStyled",
|
|
12180
13235
|
componentId: "sc-bhf05j-0"
|
|
12181
13236
|
})(["display:flex;overflow-x:", ";padding:", ";height:", ";justify-content:", ";> * + *{margin-left:", ";}> *{flex:0 0 ", ";}", ""], function (_ref) {
|
|
@@ -12242,7 +13297,7 @@ var Reel = function Reel(_ref) {
|
|
|
12242
13297
|
useUnorderedList: useUnorderedList
|
|
12243
13298
|
}, rest, {
|
|
12244
13299
|
role: useOrderedList || useUnorderedList ? "list" : "section"
|
|
12245
|
-
}), safeChildren(children, /*#__PURE__*/React.createElement(Fragment, null)));
|
|
13300
|
+
}), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
12246
13301
|
};
|
|
12247
13302
|
|
|
12248
13303
|
/*
|
|
@@ -12463,11 +13518,11 @@ var rotate = posed.div({
|
|
|
12463
13518
|
}
|
|
12464
13519
|
}
|
|
12465
13520
|
});
|
|
12466
|
-
var SpinnerContainer =
|
|
13521
|
+
var SpinnerContainer = qe.div.withConfig({
|
|
12467
13522
|
displayName: "Spinner__SpinnerContainer",
|
|
12468
13523
|
componentId: "sc-jphte-0"
|
|
12469
13524
|
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;"]);
|
|
12470
|
-
var SpinnerIconWrapper =
|
|
13525
|
+
var SpinnerIconWrapper = qe(rotate).withConfig({
|
|
12471
13526
|
displayName: "Spinner__SpinnerIconWrapper",
|
|
12472
13527
|
componentId: "sc-jphte-1"
|
|
12473
13528
|
})(["width:", "px;height:", "px;"], function (_ref) {
|
|
@@ -12513,7 +13568,7 @@ var SpinnerIcon = function SpinnerIcon(_ref3) {
|
|
|
12513
13568
|
}))))));
|
|
12514
13569
|
};
|
|
12515
13570
|
|
|
12516
|
-
var _excluded$h = ["action", "variant", "text", "
|
|
13571
|
+
var _excluded$h = ["action", "variant", "text", "isLoading", "dataQa", "textExtraStyles", "contentOverride", "extraStyles", "tabIndex", "children"];
|
|
12517
13572
|
var rotate$1 = posed.div({
|
|
12518
13573
|
fixed: {
|
|
12519
13574
|
rotate: "0deg"
|
|
@@ -12529,11 +13584,11 @@ var rotate$1 = posed.div({
|
|
|
12529
13584
|
}
|
|
12530
13585
|
}
|
|
12531
13586
|
});
|
|
12532
|
-
var SpinnerContainer$1 =
|
|
13587
|
+
var SpinnerContainer$1 = qe.div.withConfig({
|
|
12533
13588
|
displayName: "ButtonWithAction__SpinnerContainer",
|
|
12534
13589
|
componentId: "sc-1ffs4ga-0"
|
|
12535
13590
|
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;"]);
|
|
12536
|
-
var SpinnerIconWrapper$1 =
|
|
13591
|
+
var SpinnerIconWrapper$1 = qe(rotate$1).withConfig({
|
|
12537
13592
|
displayName: "ButtonWithAction__SpinnerIconWrapper",
|
|
12538
13593
|
componentId: "sc-1ffs4ga-1"
|
|
12539
13594
|
})([""]);
|
|
@@ -12570,8 +13625,6 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
12570
13625
|
_ref2$variant = _ref2.variant,
|
|
12571
13626
|
variant = _ref2$variant === void 0 ? "primary" : _ref2$variant,
|
|
12572
13627
|
text = _ref2.text,
|
|
12573
|
-
_ref2$textWrap = _ref2.textWrap,
|
|
12574
|
-
textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
|
|
12575
13628
|
_ref2$isLoading = _ref2.isLoading,
|
|
12576
13629
|
isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
|
|
12577
13630
|
_ref2$dataQa = _ref2.dataQa,
|
|
@@ -12585,7 +13638,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
12585
13638
|
children = _ref2.children,
|
|
12586
13639
|
rest = _objectWithoutProperties(_ref2, _excluded$h);
|
|
12587
13640
|
|
|
12588
|
-
var themeContext = useContext(
|
|
13641
|
+
var themeContext = useContext(Me);
|
|
12589
13642
|
var themeValues = createThemeValues(themeContext, fallbackValues$1, "Button", variant);
|
|
12590
13643
|
var isMobile = themeContext.isMobile;
|
|
12591
13644
|
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 ");
|
|
@@ -12616,7 +13669,6 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
12616
13669
|
weight: themeValues.fontWeight,
|
|
12617
13670
|
variant: themeValues.fontSizeVariant,
|
|
12618
13671
|
color: themeValues.color,
|
|
12619
|
-
textWrap: textWrap,
|
|
12620
13672
|
extraStyles: textExtraStyles
|
|
12621
13673
|
}, text)));
|
|
12622
13674
|
};
|
|
@@ -13560,11 +14612,11 @@ var GenericCard = function GenericCard() {
|
|
|
13560
14612
|
})))));
|
|
13561
14613
|
};
|
|
13562
14614
|
|
|
13563
|
-
var BankItemWrapper =
|
|
14615
|
+
var BankItemWrapper = qe.div.withConfig({
|
|
13564
14616
|
displayName: "PaymentIcon__BankItemWrapper",
|
|
13565
14617
|
componentId: "sc-1k0jl35-0"
|
|
13566
14618
|
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
13567
|
-
var BankAccountText =
|
|
14619
|
+
var BankAccountText = qe.h4.withConfig({
|
|
13568
14620
|
displayName: "PaymentIcon__BankAccountText",
|
|
13569
14621
|
componentId: "sc-1k0jl35-1"
|
|
13570
14622
|
})(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], CHARADE_GREY);
|
|
@@ -13797,7 +14849,8 @@ var TimeoutImage = function TimeoutImage() {
|
|
|
13797
14849
|
})))));
|
|
13798
14850
|
};
|
|
13799
14851
|
|
|
13800
|
-
var AutopayOnIcon = function AutopayOnIcon() {
|
|
14852
|
+
var AutopayOnIcon = function AutopayOnIcon(_ref) {
|
|
14853
|
+
var themeValues = _ref.themeValues;
|
|
13801
14854
|
return /*#__PURE__*/React.createElement("svg", {
|
|
13802
14855
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13803
14856
|
width: "12",
|
|
@@ -13810,12 +14863,14 @@ var AutopayOnIcon = function AutopayOnIcon() {
|
|
|
13810
14863
|
strokeWidth: "1"
|
|
13811
14864
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13812
14865
|
className: "autopayIcon",
|
|
13813
|
-
fill:
|
|
14866
|
+
fill: themeValues.primaryColor,
|
|
13814
14867
|
fillRule: "nonzero",
|
|
13815
14868
|
d: "M1.898 5.75c.079 0 .141-.02.188-.059a.281.281 0 00.094-.152 3.825 3.825 0 011.394-2.144A3.838 3.838 0 016 2.563c.5 0 .98.09 1.441.27.461.179.88.44 1.254.784l-.984.985A.542.542 0 007.547 5c0 .156.055.29.164.398.11.11.242.165.398.165h3.141c.156 0 .289-.055.398-.165A.542.542 0 0011.812 5V1.86a.542.542 0 00-.164-.399.542.542 0 00-.398-.164.542.542 0 00-.398.164l-.844.844A5.699 5.699 0 006 .688c-.938 0-1.809.207-2.613.62-.805.415-1.48.981-2.028 1.7A5.726 5.726 0 00.281 5.422a.265.265 0 00.059.223c.055.07.129.105.222.105h1.336zM6 12.312c.937 0 1.809-.207 2.613-.62a5.919 5.919 0 002.028-1.7 5.726 5.726 0 001.078-2.414.265.265 0 00-.059-.223.267.267 0 00-.223-.105h-1.335c-.079 0-.141.02-.188.059a.281.281 0 00-.094.152 3.825 3.825 0 01-1.394 2.144c-.711.555-1.52.833-2.426.833-.5 0-.98-.09-1.441-.27a3.985 3.985 0 01-1.254-.785l.984-.985A.542.542 0 004.453 8a.542.542 0 00-.164-.398.542.542 0 00-.398-.164H.75a.542.542 0 00-.398.164A.542.542 0 00.187 8v3.14c0 .157.055.29.165.4.109.108.242.163.398.163.156 0 .29-.055.398-.164l.844-.844A5.699 5.699 0 006 12.312z"
|
|
13816
14869
|
})));
|
|
13817
14870
|
};
|
|
13818
14871
|
|
|
14872
|
+
var AutopayOnIcon$1 = themeComponent(AutopayOnIcon, "Icons", fallbackValues$2, "primary");
|
|
14873
|
+
|
|
13819
14874
|
var NotFoundIcon = function NotFoundIcon() {
|
|
13820
14875
|
return /*#__PURE__*/React.createElement("svg", {
|
|
13821
14876
|
width: "548px",
|
|
@@ -15860,7 +16915,7 @@ var Alert = function Alert(_ref) {
|
|
|
15860
16915
|
|
|
15861
16916
|
var Alert$1 = themeComponent(Alert, "Alert", fallbackValues$4, "info");
|
|
15862
16917
|
|
|
15863
|
-
var TitleText =
|
|
16918
|
+
var TitleText = qe.h1.withConfig({
|
|
15864
16919
|
displayName: "Titlestyled__TitleText",
|
|
15865
16920
|
componentId: "sc-11lhluq-0"
|
|
15866
16921
|
})(["font-size:", ";line-height:1.5;color:", ";font-weight:", ";margin:", ";text-align:", ";font-family:", ";", ";"], function (_ref) {
|
|
@@ -15979,7 +17034,7 @@ var Title = function Title(_ref) {
|
|
|
15979
17034
|
|
|
15980
17035
|
var Title$1 = themeComponent(Title, "Title", fallbacks, "large");
|
|
15981
17036
|
|
|
15982
|
-
var color$3 = "#
|
|
17037
|
+
var color$3 = "#15749D";
|
|
15983
17038
|
var fallbackValues$6 = {
|
|
15984
17039
|
color: color$3
|
|
15985
17040
|
};
|
|
@@ -16892,7 +17947,7 @@ var _excluded$k = ["hoverColor", "activeColor", "extrastyles"];
|
|
|
16892
17947
|
|
|
16893
17948
|
/* eslint-disable no-unused-vars */
|
|
16894
17949
|
|
|
16895
|
-
var StyledExternalLink =
|
|
17950
|
+
var StyledExternalLink = qe(function (_ref) {
|
|
16896
17951
|
var hoverColor = _ref.hoverColor,
|
|
16897
17952
|
activeColor = _ref.activeColor,
|
|
16898
17953
|
extrastyles = _ref.extrastyles,
|
|
@@ -16946,9 +18001,8 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
16946
18001
|
variant = _ref$variant === void 0 ? "primary" : _ref$variant,
|
|
16947
18002
|
_ref$tabIndex = _ref.tabIndex,
|
|
16948
18003
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
16949
|
-
dataQa = _ref.dataQa,
|
|
16950
18004
|
children = _ref.children;
|
|
16951
|
-
var themeContext = useContext(
|
|
18005
|
+
var themeContext = useContext(Me);
|
|
16952
18006
|
var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
|
|
16953
18007
|
return /*#__PURE__*/React.createElement(StyledExternalLink, {
|
|
16954
18008
|
href: href,
|
|
@@ -16962,8 +18016,7 @@ var ExternalLink = function ExternalLink(_ref) {
|
|
|
16962
18016
|
fontFamily: themeValues.fontFamily,
|
|
16963
18017
|
tabIndex: tabIndex,
|
|
16964
18018
|
extrastyles: extraStyles,
|
|
16965
|
-
rel: newTab ? "noopener" : ""
|
|
16966
|
-
"data-qa": dataQa
|
|
18019
|
+
rel: newTab ? "noopener" : ""
|
|
16967
18020
|
}, safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
16968
18021
|
};
|
|
16969
18022
|
|
|
@@ -16975,7 +18028,7 @@ var _excluded$l = ["hoverColor", "activeColor", "active", "color", "extrastyles"
|
|
|
16975
18028
|
|
|
16976
18029
|
/* eslint-disable no-unused-vars */
|
|
16977
18030
|
|
|
16978
|
-
var StyledInternalLink =
|
|
18031
|
+
var StyledInternalLink = qe(function (_ref) {
|
|
16979
18032
|
var hoverColor = _ref.hoverColor,
|
|
16980
18033
|
activeColor = _ref.activeColor,
|
|
16981
18034
|
active = _ref.active,
|
|
@@ -17033,10 +18086,9 @@ var InternalLink = function InternalLink(_ref) {
|
|
|
17033
18086
|
margin = _ref.margin,
|
|
17034
18087
|
_ref$tabIndex = _ref.tabIndex,
|
|
17035
18088
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
17036
|
-
dataQa = _ref.dataQa,
|
|
17037
18089
|
_ref$extraStyles = _ref.extraStyles,
|
|
17038
18090
|
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
|
|
17039
|
-
var themeContext = useContext(
|
|
18091
|
+
var themeContext = useContext(Me);
|
|
17040
18092
|
var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
|
|
17041
18093
|
return /*#__PURE__*/React.createElement(StyledInternalLink, {
|
|
17042
18094
|
to: to,
|
|
@@ -17050,15 +18102,14 @@ var InternalLink = function InternalLink(_ref) {
|
|
|
17050
18102
|
hoverColor: themeValues.hoverColor,
|
|
17051
18103
|
activeColor: themeValues.activeColor,
|
|
17052
18104
|
tabIndex: tabIndex,
|
|
17053
|
-
extrastyles: extraStyles
|
|
17054
|
-
"data-qa": dataQa
|
|
18105
|
+
extrastyles: extraStyles
|
|
17055
18106
|
}, safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
17056
18107
|
};
|
|
17057
18108
|
|
|
17058
18109
|
var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
17059
18110
|
var _ref$breadcrumbsList = _ref.breadcrumbsList,
|
|
17060
18111
|
breadcrumbsList = _ref$breadcrumbsList === void 0 ? [] : _ref$breadcrumbsList;
|
|
17061
|
-
var themeContext = useContext(
|
|
18112
|
+
var themeContext = useContext(Me);
|
|
17062
18113
|
var themeValues = createThemeValues(themeContext, fallbackValues$8, "Breadcrumb");
|
|
17063
18114
|
return /*#__PURE__*/React.createElement(Box, {
|
|
17064
18115
|
padding: "0",
|
|
@@ -17071,7 +18122,7 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
|
17071
18122
|
var linkText = _ref2.linkText,
|
|
17072
18123
|
linkDestination = _ref2.linkDestination,
|
|
17073
18124
|
isActive = _ref2.isActive;
|
|
17074
|
-
return /*#__PURE__*/React.createElement(Fragment, {
|
|
18125
|
+
return /*#__PURE__*/React.createElement(Fragment$1, {
|
|
17075
18126
|
key: "breadcrumb-".concat(linkText)
|
|
17076
18127
|
}, /*#__PURE__*/React.createElement(InternalLink, {
|
|
17077
18128
|
"aria-current": index === breadcrumbsList.length - 1 ? "location" : "",
|
|
@@ -17083,7 +18134,7 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
|
17083
18134
|
fontWeight: themeValues.fontWeight,
|
|
17084
18135
|
margin: themeValues.margin,
|
|
17085
18136
|
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 }")
|
|
17086
|
-
}, linkText), index < breadcrumbsList.length - 1 ? /*#__PURE__*/React.createElement(IconChevron, null) : /*#__PURE__*/React.createElement(Fragment, null));
|
|
18137
|
+
}, linkText), index < breadcrumbsList.length - 1 ? /*#__PURE__*/React.createElement(IconChevron, null) : /*#__PURE__*/React.createElement(Fragment$1, null));
|
|
17087
18138
|
})));
|
|
17088
18139
|
};
|
|
17089
18140
|
|
|
@@ -18664,7 +19715,7 @@ _curry2(function test(pattern, str) {
|
|
|
18664
19715
|
|
|
18665
19716
|
var URL_TEST = /(([a-z]{3,6}:\/\/)|(^|\s))([a-zA-Z0-9\-]+\.)+[a-z]{2,13}[\.\?\=\&\%\/\w\-]*\b([^@]|$)/;
|
|
18666
19717
|
|
|
18667
|
-
var _excluded$m = ["url", "disabled", "fileLink", "extraStyles", "linkExtraStyles", "newTab"
|
|
19718
|
+
var _excluded$m = ["url", "disabled", "fileLink", "extraStyles", "linkExtraStyles", "newTab"];
|
|
18668
19719
|
|
|
18669
19720
|
var ButtonWithLink = function ButtonWithLink(_ref) {
|
|
18670
19721
|
var _ref$url = _ref.url,
|
|
@@ -18677,7 +19728,6 @@ var ButtonWithLink = function ButtonWithLink(_ref) {
|
|
|
18677
19728
|
linkExtraStyles = _ref.linkExtraStyles,
|
|
18678
19729
|
_ref$newTab = _ref.newTab,
|
|
18679
19730
|
newTab = _ref$newTab === void 0 ? false : _ref$newTab,
|
|
18680
|
-
dataQa = _ref.dataQa,
|
|
18681
19731
|
otherProps = _objectWithoutProperties(_ref, _excluded$m);
|
|
18682
19732
|
|
|
18683
19733
|
var ButtonWithLinkWrapper = function ButtonWithLinkWrapper(_ref2) {
|
|
@@ -18685,7 +19735,6 @@ var ButtonWithLink = function ButtonWithLink(_ref) {
|
|
|
18685
19735
|
url = _ref2.url,
|
|
18686
19736
|
disabled = _ref2.disabled,
|
|
18687
19737
|
newTab = _ref2.newTab,
|
|
18688
|
-
dataQa = _ref2.dataQa,
|
|
18689
19738
|
extraStyles = _ref2.extraStyles;
|
|
18690
19739
|
|
|
18691
19740
|
if (disabled) {
|
|
@@ -18696,12 +19745,10 @@ var ButtonWithLink = function ButtonWithLink(_ref) {
|
|
|
18696
19745
|
href: url,
|
|
18697
19746
|
tabIndex: "-1",
|
|
18698
19747
|
newTab: newTab,
|
|
18699
|
-
extraStyles: extraStyles
|
|
18700
|
-
dataQa: dataQa
|
|
19748
|
+
extraStyles: extraStyles
|
|
18701
19749
|
}, safeChildren(children, /*#__PURE__*/React.createElement("span", null))) : /*#__PURE__*/React.createElement(InternalLink, {
|
|
18702
19750
|
to: url,
|
|
18703
19751
|
tabIndex: "-1",
|
|
18704
|
-
dataQa: dataQa,
|
|
18705
19752
|
extraStyles: extraStyles
|
|
18706
19753
|
}, safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
18707
19754
|
};
|
|
@@ -18710,8 +19757,7 @@ var ButtonWithLink = function ButtonWithLink(_ref) {
|
|
|
18710
19757
|
url: url,
|
|
18711
19758
|
disabled: disabled,
|
|
18712
19759
|
newTab: newTab,
|
|
18713
|
-
extraStyles: "".concat(linkExtraStyles, " text-decoration: none; &:hover {\n text-decoration: none; }")
|
|
18714
|
-
dataQa: dataQa
|
|
19760
|
+
extraStyles: "".concat(linkExtraStyles, " text-decoration: none; &:hover {\n text-decoration: none; }")
|
|
18715
19761
|
}, /*#__PURE__*/React.createElement(ButtonWithAction, _extends({}, otherProps, {
|
|
18716
19762
|
extraStyles: extraStyles
|
|
18717
19763
|
})));
|
|
@@ -18745,7 +19791,7 @@ var fallbackValues$a = {
|
|
|
18745
19791
|
fontSize: fontSize$3
|
|
18746
19792
|
};
|
|
18747
19793
|
|
|
18748
|
-
var ParagraphText =
|
|
19794
|
+
var ParagraphText = qe.p.withConfig({
|
|
18749
19795
|
displayName: "Paragraphstyled__ParagraphText",
|
|
18750
19796
|
componentId: "sc-17g98kx-0"
|
|
18751
19797
|
})(["--font-size:", ";font-size:var(--font-size);line-height:calc(1.5 * var(--font-size));font-weight:", ";font-family:", ";color:", ";margin:", ";", ""], function (_ref) {
|
|
@@ -18855,7 +19901,7 @@ var withWindowSize = function withWindowSize(Child) {
|
|
|
18855
19901
|
window.removeEventListener("resize", onResize);
|
|
18856
19902
|
};
|
|
18857
19903
|
}, []);
|
|
18858
|
-
return /*#__PURE__*/React.createElement(
|
|
19904
|
+
return /*#__PURE__*/React.createElement(Le, {
|
|
18859
19905
|
theme: state
|
|
18860
19906
|
}, /*#__PURE__*/React.createElement(Child, props));
|
|
18861
19907
|
};
|
|
@@ -18864,7 +19910,7 @@ var withWindowSize = function withWindowSize(Child) {
|
|
|
18864
19910
|
var CardVariantSwitcher = function CardVariantSwitcher(_ref) {
|
|
18865
19911
|
var variant = _ref.variant,
|
|
18866
19912
|
children = _ref.children;
|
|
18867
|
-
return variant === "vertical" ? /*#__PURE__*/React.createElement(Fragment, null, children) : /*#__PURE__*/React.createElement(Box, {
|
|
19913
|
+
return variant === "vertical" ? /*#__PURE__*/React.createElement(Fragment$1, null, children) : /*#__PURE__*/React.createElement(Box, {
|
|
18868
19914
|
padding: "0",
|
|
18869
19915
|
extraStyles: "width: 100%"
|
|
18870
19916
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
@@ -18885,7 +19931,7 @@ var Card = function Card(_ref2) {
|
|
|
18885
19931
|
_ref2$variant = _ref2.variant,
|
|
18886
19932
|
variant = _ref2$variant === void 0 ? "vertical" : _ref2$variant;
|
|
18887
19933
|
|
|
18888
|
-
var _useContext = useContext(
|
|
19934
|
+
var _useContext = useContext(Me),
|
|
18889
19935
|
isMobile = _useContext.isMobile;
|
|
18890
19936
|
|
|
18891
19937
|
var navigate = useNavigate();
|
|
@@ -19047,30 +20093,30 @@ var fallbackValues$c = {
|
|
|
19047
20093
|
disabledCheckedStyles: disabledCheckedStyles
|
|
19048
20094
|
};
|
|
19049
20095
|
|
|
19050
|
-
var CheckboxContainer =
|
|
20096
|
+
var CheckboxContainer = qe.div.withConfig({
|
|
19051
20097
|
displayName: "Checkbox__CheckboxContainer",
|
|
19052
20098
|
componentId: "sc-36kqbv-0"
|
|
19053
20099
|
})(["display:inline-block;vertical-align:middle;"]);
|
|
19054
|
-
var CheckboxLabelContainer =
|
|
20100
|
+
var CheckboxLabelContainer = qe.label.withConfig({
|
|
19055
20101
|
displayName: "Checkbox__CheckboxLabelContainer",
|
|
19056
20102
|
componentId: "sc-36kqbv-1"
|
|
19057
20103
|
})(["display:flex;align-items:center;"]);
|
|
19058
|
-
var CheckboxIcon =
|
|
20104
|
+
var CheckboxIcon = qe.svg.withConfig({
|
|
19059
20105
|
displayName: "Checkbox__CheckboxIcon",
|
|
19060
20106
|
componentId: "sc-36kqbv-2"
|
|
19061
20107
|
})(["fill:none;stroke-width:2px;stroke:", ";"], function (_ref) {
|
|
19062
20108
|
var disabled = _ref.disabled,
|
|
19063
20109
|
disabledCheckColor = _ref.disabledCheckColor,
|
|
19064
20110
|
checkColor = _ref.checkColor;
|
|
19065
|
-
return disabled ?
|
|
20111
|
+
return disabled ? Ae(["", ""], disabledCheckColor) : Ae(["", ""], checkColor);
|
|
19066
20112
|
});
|
|
19067
|
-
var HiddenCheckbox =
|
|
20113
|
+
var HiddenCheckbox = qe.input.attrs({
|
|
19068
20114
|
type: "checkbox"
|
|
19069
20115
|
}).withConfig({
|
|
19070
20116
|
displayName: "Checkbox__HiddenCheckbox",
|
|
19071
20117
|
componentId: "sc-36kqbv-3"
|
|
19072
20118
|
})(["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;"]);
|
|
19073
|
-
var StyledCheckbox =
|
|
20119
|
+
var StyledCheckbox = qe.div.withConfig({
|
|
19074
20120
|
displayName: "Checkbox__StyledCheckbox",
|
|
19075
20121
|
componentId: "sc-36kqbv-4"
|
|
19076
20122
|
})(["display:inline-block;margin-right:16px;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
|
|
@@ -19087,7 +20133,7 @@ var StyledCheckbox = styled.div.withConfig({
|
|
|
19087
20133
|
errorStyles = _ref3.errorStyles,
|
|
19088
20134
|
disabledStyles = _ref3.disabledStyles,
|
|
19089
20135
|
disabledCheckedStyles = _ref3.disabledCheckedStyles;
|
|
19090
|
-
return error ?
|
|
20136
|
+
return error ? Ae(["", " ", ""], errorStyles, focused && focusedStyles) : disabled ? Ae(["", ""], checked ? disabledCheckedStyles : disabledStyles) : checked ? Ae(["", " ", ""], checkedStyles, focused && focusedStyles) : Ae(["", " ", ""], defaultStyles, focused && focusedStyles);
|
|
19091
20137
|
});
|
|
19092
20138
|
|
|
19093
20139
|
var Checkbox = function Checkbox(_ref4) {
|
|
@@ -19218,7 +20264,7 @@ var defaultTheme = {
|
|
|
19218
20264
|
inactiveColor: PEWTER_GREY$1
|
|
19219
20265
|
}
|
|
19220
20266
|
};
|
|
19221
|
-
var RadioButtonBorder =
|
|
20267
|
+
var RadioButtonBorder = qe.div.withConfig({
|
|
19222
20268
|
displayName: "radio-button__RadioButtonBorder",
|
|
19223
20269
|
componentId: "sc-8odgi0-0"
|
|
19224
20270
|
})(["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) {
|
|
@@ -19227,7 +20273,7 @@ var RadioButtonBorder = styled.div.withConfig({
|
|
|
19227
20273
|
return isSelected ? theme.accentColor : theme.inactiveColor;
|
|
19228
20274
|
});
|
|
19229
20275
|
RadioButtonBorder.defaultProps = defaultTheme;
|
|
19230
|
-
var RadioButtonCenter =
|
|
20276
|
+
var RadioButtonCenter = qe.div.withConfig({
|
|
19231
20277
|
displayName: "radio-button__RadioButtonCenter",
|
|
19232
20278
|
componentId: "sc-8odgi0-1"
|
|
19233
20279
|
})(["height:16px;width:16px;background-color:", ";border-radius:8px;"], function (_ref2) {
|
|
@@ -19246,15 +20292,15 @@ var RadioButton = function RadioButton(_ref3) {
|
|
|
19246
20292
|
}, isSelected && /*#__PURE__*/React.createElement(RadioButtonCenter, null));
|
|
19247
20293
|
};
|
|
19248
20294
|
|
|
19249
|
-
var CheckboxItemIcon =
|
|
20295
|
+
var CheckboxItemIcon = qe.img.withConfig({
|
|
19250
20296
|
displayName: "CheckboxList__CheckboxItemIcon",
|
|
19251
20297
|
componentId: "sc-1yakme1-0"
|
|
19252
20298
|
})(["width:2rem;"]);
|
|
19253
|
-
var HiddenCheckboxInput =
|
|
20299
|
+
var HiddenCheckboxInput = qe.input.withConfig({
|
|
19254
20300
|
displayName: "CheckboxList__HiddenCheckboxInput",
|
|
19255
20301
|
componentId: "sc-1yakme1-1"
|
|
19256
20302
|
})(["opacity:0;position:absolute;z-index:-2;cursor:pointer;"]);
|
|
19257
|
-
var CheckboxLabel =
|
|
20303
|
+
var CheckboxLabel = qe.label.withConfig({
|
|
19258
20304
|
displayName: "CheckboxList__CheckboxLabel",
|
|
19259
20305
|
componentId: "sc-1yakme1-2"
|
|
19260
20306
|
})(["position:relative;z-index:5;&:focus{outline:none;}"]);
|
|
@@ -19298,7 +20344,7 @@ var CheckboxListItem = function CheckboxListItem(_ref) {
|
|
|
19298
20344
|
onClick: disabled ? noop : onSelect,
|
|
19299
20345
|
onKeyDown: disabled ? noop : onSelect,
|
|
19300
20346
|
tabIndex: 0
|
|
19301
|
-
}, /*#__PURE__*/React.createElement(
|
|
20347
|
+
}, /*#__PURE__*/React.createElement(Le, {
|
|
19302
20348
|
theme: {
|
|
19303
20349
|
accentColor: radioButtonActive,
|
|
19304
20350
|
inactiveColor: radioButtonInactive
|
|
@@ -19397,14 +20443,14 @@ var fallbackValues$e = {
|
|
|
19397
20443
|
hoverColor: hoverColor$3
|
|
19398
20444
|
};
|
|
19399
20445
|
|
|
19400
|
-
var IconWrapper =
|
|
20446
|
+
var IconWrapper = qe.div.withConfig({
|
|
19401
20447
|
displayName: "Dropdown__IconWrapper",
|
|
19402
20448
|
componentId: "sc-pn6m0h-0"
|
|
19403
20449
|
})(["display:flex;flex-direction:column;justify-content:center;transition:transform 0.3s ease;", ""], function (_ref) {
|
|
19404
20450
|
var open = _ref.open;
|
|
19405
20451
|
return open ? "transform: rotate(-180deg)" : "";
|
|
19406
20452
|
});
|
|
19407
|
-
var DropdownContentWrapper =
|
|
20453
|
+
var DropdownContentWrapper = qe.div.withConfig({
|
|
19408
20454
|
displayName: "Dropdown__DropdownContentWrapper",
|
|
19409
20455
|
componentId: "sc-pn6m0h-1"
|
|
19410
20456
|
})(["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) {
|
|
@@ -19414,7 +20460,7 @@ var DropdownContentWrapper = styled.div.withConfig({
|
|
|
19414
20460
|
var maxHeight = _ref3.maxHeight;
|
|
19415
20461
|
return maxHeight || "400px";
|
|
19416
20462
|
});
|
|
19417
|
-
var DropdownItemWrapper =
|
|
20463
|
+
var DropdownItemWrapper = qe.div.withConfig({
|
|
19418
20464
|
displayName: "Dropdown__DropdownItemWrapper",
|
|
19419
20465
|
componentId: "sc-pn6m0h-2"
|
|
19420
20466
|
})(["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) {
|
|
@@ -19435,7 +20481,7 @@ var DropdownItemWrapper = styled.div.withConfig({
|
|
|
19435
20481
|
themeValues = _ref7.themeValues;
|
|
19436
20482
|
return selected ? themeValues.selectedColor : disabled ? WHITE : themeValues.hoverColor;
|
|
19437
20483
|
});
|
|
19438
|
-
var SearchInput =
|
|
20484
|
+
var SearchInput = qe.input.withConfig({
|
|
19439
20485
|
displayName: "Dropdown__SearchInput",
|
|
19440
20486
|
componentId: "sc-pn6m0h-3"
|
|
19441
20487
|
})(["border:none;background-color:", ";font-size:16px;height:24px;"], function (_ref8) {
|
|
@@ -19661,16 +20707,16 @@ var Dropdown = function Dropdown(_ref9) {
|
|
|
19661
20707
|
color: choice.value === value ? WHITE : disabledValues.includes(choice.value) ? STORM_GREY : MINESHAFT_GREY,
|
|
19662
20708
|
extraStyles: "padding-left: 16px; \n cursor: ".concat(disabledValues.includes(choice.value) ? "default" : "pointer", "; \n white-space: nowrap; \n overflow: hidden; \n text-overflow: ellipsis;")
|
|
19663
20709
|
}, choice.text));
|
|
19664
|
-
}))) : /*#__PURE__*/React.createElement(Fragment, null));
|
|
20710
|
+
}))) : /*#__PURE__*/React.createElement(Fragment$1, null));
|
|
19665
20711
|
};
|
|
19666
20712
|
|
|
19667
20713
|
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$e);
|
|
19668
20714
|
|
|
19669
|
-
var SelectContainer =
|
|
20715
|
+
var SelectContainer = qe.div.withConfig({
|
|
19670
20716
|
displayName: "FormSelectstyled__SelectContainer",
|
|
19671
20717
|
componentId: "sc-hkrqrv-0"
|
|
19672
20718
|
})(["width:100%;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;> * + *{margin-top:0.25rem;}"]);
|
|
19673
|
-
var SelectField =
|
|
20719
|
+
var SelectField = qe.select.withConfig({
|
|
19674
20720
|
displayName: "FormSelectstyled__SelectField",
|
|
19675
20721
|
componentId: "sc-hkrqrv-1"
|
|
19676
20722
|
})(["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) {
|
|
@@ -19684,7 +20730,7 @@ var SelectField = styled.select.withConfig({
|
|
|
19684
20730
|
var themeValues = _ref3.themeValues;
|
|
19685
20731
|
return themeValues.color && themeValues.color;
|
|
19686
20732
|
}, MATISSE_BLUE);
|
|
19687
|
-
var SelectOption =
|
|
20733
|
+
var SelectOption = qe.option.withConfig({
|
|
19688
20734
|
displayName: "FormSelectstyled__SelectOption",
|
|
19689
20735
|
componentId: "sc-hkrqrv-2"
|
|
19690
20736
|
})([""]);
|
|
@@ -20594,7 +21640,7 @@ var CountryDropdown = function CountryDropdown(_ref) {
|
|
|
20594
21640
|
});
|
|
20595
21641
|
};
|
|
20596
21642
|
|
|
20597
|
-
var DetailText =
|
|
21643
|
+
var DetailText = qe.p.withConfig({
|
|
20598
21644
|
displayName: "Detailstyled__DetailText",
|
|
20599
21645
|
componentId: "sc-vn1h4n-0"
|
|
20600
21646
|
})(["font-size:", ";line-height:1.5;color:", ";font-weight:", ";margin:", ";text-align:", ";font-family:", ";", ";"], function (_ref) {
|
|
@@ -20795,7 +21841,7 @@ var DisplayCard = function DisplayCard(_ref) {
|
|
|
20795
21841
|
variant: "smallGhost",
|
|
20796
21842
|
dataQa: buttonText,
|
|
20797
21843
|
extraStyles: "min-width: 0;"
|
|
20798
|
-
}) : /*#__PURE__*/React.createElement(Fragment, null))))));
|
|
21844
|
+
}) : /*#__PURE__*/React.createElement(Fragment$1, null))))));
|
|
20799
21845
|
};
|
|
20800
21846
|
|
|
20801
21847
|
function _extends$2() {
|
|
@@ -21142,7 +22188,7 @@ var fallbackValues$i = {
|
|
|
21142
22188
|
|
|
21143
22189
|
var _excluded$p = ["showErrors", "themeValues"],
|
|
21144
22190
|
_excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "extraStyles"];
|
|
21145
|
-
var InputField =
|
|
22191
|
+
var InputField = qe.input.withConfig({
|
|
21146
22192
|
displayName: "FormInput__InputField",
|
|
21147
22193
|
componentId: "sc-l094r1-0"
|
|
21148
22194
|
})(["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) {
|
|
@@ -21165,13 +22211,13 @@ var InputField = styled.input.withConfig({
|
|
|
21165
22211
|
return background && "background: ".concat(themeValues.inputBackgroundColor, " url(").concat(background, ") no-repeat right 0.5rem center;");
|
|
21166
22212
|
}, ROYAL_BLUE, function (_ref6) {
|
|
21167
22213
|
var disabled = _ref6.disabled;
|
|
21168
|
-
return disabled &&
|
|
22214
|
+
return disabled && Ae(["color:#6e727e;background-color:#f7f7f7;"]);
|
|
21169
22215
|
}, function (_ref7) {
|
|
21170
22216
|
var $extraStyles = _ref7.$extraStyles;
|
|
21171
|
-
return
|
|
22217
|
+
return Ae(["", ""], $extraStyles);
|
|
21172
22218
|
}); // eslint-disable-next-line no-unused-vars
|
|
21173
22219
|
|
|
21174
|
-
var FormattedInputField =
|
|
22220
|
+
var FormattedInputField = qe(function (_ref8) {
|
|
21175
22221
|
var showErrors = _ref8.showErrors,
|
|
21176
22222
|
themeValues = _ref8.themeValues,
|
|
21177
22223
|
props = _objectWithoutProperties(_ref8, _excluded$p);
|
|
@@ -21196,10 +22242,10 @@ var FormattedInputField = styled(function (_ref8) {
|
|
|
21196
22242
|
return themeValues.color && themeValues.color;
|
|
21197
22243
|
}, ROYAL_BLUE, function (_ref13) {
|
|
21198
22244
|
var disabled = _ref13.disabled;
|
|
21199
|
-
return disabled &&
|
|
22245
|
+
return disabled && Ae(["color:#6e727e;background-color:#f7f7f7;"]);
|
|
21200
22246
|
}, function (_ref14) {
|
|
21201
22247
|
var extraStyles = _ref14.extraStyles;
|
|
21202
|
-
return
|
|
22248
|
+
return Ae(["", ""], extraStyles);
|
|
21203
22249
|
});
|
|
21204
22250
|
|
|
21205
22251
|
var FormInput = function FormInput(_ref15) {
|
|
@@ -21231,7 +22277,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
21231
22277
|
showPassword = _useState2[0],
|
|
21232
22278
|
setShowPassword = _useState2[1];
|
|
21233
22279
|
|
|
21234
|
-
var _useContext = useContext(
|
|
22280
|
+
var _useContext = useContext(Me),
|
|
21235
22281
|
isMobile = _useContext.isMobile;
|
|
21236
22282
|
|
|
21237
22283
|
return /*#__PURE__*/React.createElement(Stack, {
|
|
@@ -21376,7 +22422,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
21376
22422
|
children = _ref.children,
|
|
21377
22423
|
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
21378
22424
|
|
|
21379
|
-
var _useContext = useContext(
|
|
22425
|
+
var _useContext = useContext(Me),
|
|
21380
22426
|
isMobile = _useContext.isMobile;
|
|
21381
22427
|
|
|
21382
22428
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
@@ -21393,7 +22439,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
21393
22439
|
link = _ref.link,
|
|
21394
22440
|
linkText = _ref.linkText;
|
|
21395
22441
|
|
|
21396
|
-
var _useContext = useContext(
|
|
22442
|
+
var _useContext = useContext(Me),
|
|
21397
22443
|
isMobile = _useContext.isMobile;
|
|
21398
22444
|
|
|
21399
22445
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -21479,11 +22525,11 @@ var fallbackValues$k = {
|
|
|
21479
22525
|
var ACTIVE = "ACTIVE";
|
|
21480
22526
|
var EXPIRING_SOON = "EXPIRING_SOON";
|
|
21481
22527
|
var EXPIRED = "EXPIRED";
|
|
21482
|
-
var CreditCardWrapper =
|
|
22528
|
+
var CreditCardWrapper = qe.div.withConfig({
|
|
21483
22529
|
displayName: "FormattedCreditCard__CreditCardWrapper",
|
|
21484
22530
|
componentId: "sc-s0ta5l-0"
|
|
21485
22531
|
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
21486
|
-
var CCIconWrapper =
|
|
22532
|
+
var CCIconWrapper = qe.div.withConfig({
|
|
21487
22533
|
displayName: "FormattedCreditCard__CCIconWrapper",
|
|
21488
22534
|
componentId: "sc-s0ta5l-1"
|
|
21489
22535
|
})(["margin-right:16px;width:30px;height:auto;display:flex;"]);
|
|
@@ -21530,7 +22576,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
21530
22576
|
color: themeValues.textColor,
|
|
21531
22577
|
textAlign: "left",
|
|
21532
22578
|
extraStyles: "display: inline-block;"
|
|
21533
|
-
}, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment, null, renderCardStatus())), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
22579
|
+
}, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus())), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
21534
22580
|
variant: "p",
|
|
21535
22581
|
color: themeValues.autopayTextColor,
|
|
21536
22582
|
extraStyles: "font-style: italic;"
|
|
@@ -21539,15 +22585,15 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
21539
22585
|
|
|
21540
22586
|
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$k);
|
|
21541
22587
|
|
|
21542
|
-
var Hamburger =
|
|
22588
|
+
var Hamburger = qe.button.withConfig({
|
|
21543
22589
|
displayName: "HamburgerButton__Hamburger",
|
|
21544
22590
|
componentId: "sc-4wlnwv-0"
|
|
21545
22591
|
})(["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;}"]);
|
|
21546
|
-
var HamburgerBox =
|
|
22592
|
+
var HamburgerBox = qe.span.withConfig({
|
|
21547
22593
|
displayName: "HamburgerButton__HamburgerBox",
|
|
21548
22594
|
componentId: "sc-4wlnwv-1"
|
|
21549
22595
|
})(["width:34px;height:34px;display:inline-block;position:relative;"]);
|
|
21550
|
-
var HamburgerInner =
|
|
22596
|
+
var HamburgerInner = qe.span.withConfig({
|
|
21551
22597
|
displayName: "HamburgerButton__HamburgerInner",
|
|
21552
22598
|
componentId: "sc-4wlnwv-2"
|
|
21553
22599
|
})(["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) {
|
|
@@ -21581,7 +22627,7 @@ var HamburgerButton = function HamburgerButton(_ref4) {
|
|
|
21581
22627
|
})));
|
|
21582
22628
|
};
|
|
21583
22629
|
|
|
21584
|
-
var HeadingText =
|
|
22630
|
+
var HeadingText = qe.h1.withConfig({
|
|
21585
22631
|
displayName: "Headingstyled__HeadingText",
|
|
21586
22632
|
componentId: "sc-1a3jd28-0"
|
|
21587
22633
|
})(["--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) {
|
|
@@ -21681,7 +22727,7 @@ var Jumbo = function Jumbo(_ref) {
|
|
|
21681
22727
|
showCartStatus = _ref$showCartStatus === void 0 ? false : _ref$showCartStatus,
|
|
21682
22728
|
openCartSlider = _ref.openCartSlider;
|
|
21683
22729
|
|
|
21684
|
-
var _useContext = useContext(
|
|
22730
|
+
var _useContext = useContext(Me),
|
|
21685
22731
|
isMobile = _useContext.isMobile;
|
|
21686
22732
|
|
|
21687
22733
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -21809,7 +22855,7 @@ var fallbackValues$o = {
|
|
|
21809
22855
|
color: color$8
|
|
21810
22856
|
};
|
|
21811
22857
|
|
|
21812
|
-
var SpinnerSvgAnimation =
|
|
22858
|
+
var SpinnerSvgAnimation = qe.svg.withConfig({
|
|
21813
22859
|
displayName: "Spinner__SpinnerSvgAnimation",
|
|
21814
22860
|
componentId: "sc-vhupl9-0"
|
|
21815
22861
|
})(["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) {
|
|
@@ -21822,7 +22868,7 @@ var SpinnerSvgAnimation = styled.svg.withConfig({
|
|
|
21822
22868
|
var color = _ref3.color;
|
|
21823
22869
|
return color;
|
|
21824
22870
|
});
|
|
21825
|
-
var SpinnerContainer$2 =
|
|
22871
|
+
var SpinnerContainer$2 = qe.div.withConfig({
|
|
21826
22872
|
displayName: "Spinner__SpinnerContainer",
|
|
21827
22873
|
componentId: "sc-vhupl9-1"
|
|
21828
22874
|
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;"]);
|
|
@@ -22123,7 +23169,7 @@ var PlaceholderContentWrapper = function PlaceholderContentWrapper(_ref) {
|
|
|
22123
23169
|
dataQa = _ref.dataQa;
|
|
22124
23170
|
return isLink ? /*#__PURE__*/React.createElement(Link, {
|
|
22125
23171
|
to: destination,
|
|
22126
|
-
|
|
23172
|
+
dataQa: dataQa
|
|
22127
23173
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
22128
23174
|
padding: "0",
|
|
22129
23175
|
minHeight: "100%",
|
|
@@ -22245,7 +23291,7 @@ var fallbackValues$r = {
|
|
|
22245
23291
|
inactiveColor: inactiveColor
|
|
22246
23292
|
};
|
|
22247
23293
|
|
|
22248
|
-
var HiddenRadioButton =
|
|
23294
|
+
var HiddenRadioButton = qe.input.withConfig({
|
|
22249
23295
|
displayName: "RadioButton__HiddenRadioButton",
|
|
22250
23296
|
componentId: "sc-v6hie9-0"
|
|
22251
23297
|
})(["opacity:0;position:absolute;cursor:", ";"], function (_ref) {
|
|
@@ -33026,7 +34072,7 @@ var fallbackValues$u = {
|
|
|
33026
34072
|
leftLabelStyles: leftLabelStyles
|
|
33027
34073
|
};
|
|
33028
34074
|
|
|
33029
|
-
var HiddenToggleSwitchBox =
|
|
34075
|
+
var HiddenToggleSwitchBox = qe.input.withConfig({
|
|
33030
34076
|
displayName: "ToggleSwitch__HiddenToggleSwitchBox",
|
|
33031
34077
|
componentId: "sc-1t51u6v-0"
|
|
33032
34078
|
})(["opacity:0;position:absolute;cursor:", ";height:24px;width:50px;", ""], function (_ref) {
|
|
@@ -33036,7 +34082,7 @@ var HiddenToggleSwitchBox = styled.input.withConfig({
|
|
|
33036
34082
|
var isMobile = _ref2.isMobile;
|
|
33037
34083
|
return isMobile ? "transform: scale(0.75)" : "";
|
|
33038
34084
|
});
|
|
33039
|
-
var VisibleSwitchComponent =
|
|
34085
|
+
var VisibleSwitchComponent = qe.label.withConfig({
|
|
33040
34086
|
displayName: "ToggleSwitch__VisibleSwitchComponent",
|
|
33041
34087
|
componentId: "sc-1t51u6v-1"
|
|
33042
34088
|
})(["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) {
|
|
@@ -33049,11 +34095,11 @@ var VisibleSwitchComponent = styled.label.withConfig({
|
|
|
33049
34095
|
var isMobile = _ref5.isMobile;
|
|
33050
34096
|
return isMobile ? "transform: scale(0.75)" : "";
|
|
33051
34097
|
});
|
|
33052
|
-
var ToggleSwitchMiddleRingComponent =
|
|
34098
|
+
var ToggleSwitchMiddleRingComponent = qe.div.withConfig({
|
|
33053
34099
|
displayName: "ToggleSwitch__ToggleSwitchMiddleRingComponent",
|
|
33054
34100
|
componentId: "sc-1t51u6v-2"
|
|
33055
34101
|
})(["position:absolute;width:20px;height:20px;border:none;border-radius:50%;box-sizing:border-box;"]);
|
|
33056
|
-
var ToggleSwitchInnerRingComponent =
|
|
34102
|
+
var ToggleSwitchInnerRingComponent = qe.div.withConfig({
|
|
33057
34103
|
displayName: "ToggleSwitch__ToggleSwitchInnerRingComponent",
|
|
33058
34104
|
componentId: "sc-1t51u6v-3"
|
|
33059
34105
|
})(["position:absolute;width:14px;height:14px;top:3px;left:3px;right:3px;bottom:3px;border-radius:50%;box-sizing:border-box;"]);
|
|
@@ -33205,7 +34251,7 @@ var themeValues = {
|
|
|
33205
34251
|
focusBorder: focusBorder
|
|
33206
34252
|
};
|
|
33207
34253
|
|
|
33208
|
-
var TypeaheadInputWrapper =
|
|
34254
|
+
var TypeaheadInputWrapper = qe.div.withConfig({
|
|
33209
34255
|
displayName: "TypeaheadInput__TypeaheadInputWrapper",
|
|
33210
34256
|
componentId: "sc-cumjdb-0"
|
|
33211
34257
|
})(["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);
|
|
@@ -34169,7 +35215,7 @@ var objectTraps = {
|
|
|
34169
35215
|
|
|
34170
35216
|
set: set$1$1,
|
|
34171
35217
|
deleteProperty: deleteProperty,
|
|
34172
|
-
getOwnPropertyDescriptor: getOwnPropertyDescriptor,
|
|
35218
|
+
getOwnPropertyDescriptor: getOwnPropertyDescriptor$1,
|
|
34173
35219
|
|
|
34174
35220
|
defineProperty: function defineProperty() {
|
|
34175
35221
|
throw new Error("Object.defineProperty() cannot be used on an Immer draft"); // prettier-ignore
|
|
@@ -34277,7 +35323,7 @@ function deleteProperty(state, prop) {
|
|
|
34277
35323
|
// the same guarantee in ES5 mode.
|
|
34278
35324
|
|
|
34279
35325
|
|
|
34280
|
-
function getOwnPropertyDescriptor(state, prop) {
|
|
35326
|
+
function getOwnPropertyDescriptor$1(state, prop) {
|
|
34281
35327
|
var owner = source$1(state);
|
|
34282
35328
|
var desc = Reflect.getOwnPropertyDescriptor(owner, prop);
|
|
34283
35329
|
|
|
@@ -35353,7 +36399,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
35353
36399
|
hoverStyles: "outline: none;",
|
|
35354
36400
|
animate: isOpen ? "open" : "closed",
|
|
35355
36401
|
positionTransition: true
|
|
35356
|
-
}, stackTitle && /*#__PURE__*/React.createElement(Fragment, null, stackTitleContent), /*#__PURE__*/React.createElement(Stack, {
|
|
36402
|
+
}, stackTitle && /*#__PURE__*/React.createElement(Fragment$1, null, stackTitleContent), /*#__PURE__*/React.createElement(Stack, {
|
|
35357
36403
|
childGap: isOpen && !isMobile ? sectionGap : "0rem"
|
|
35358
36404
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
35359
36405
|
padding: "0",
|
|
@@ -35469,7 +36515,7 @@ EditNameForm.reducer = reducer$2;
|
|
|
35469
36515
|
EditNameForm.mapStateToProps = mapStateToProps$3;
|
|
35470
36516
|
EditNameForm.mapDispatchToProps = mapDispatchToProps$2;
|
|
35471
36517
|
|
|
35472
|
-
var EditableListItem =
|
|
36518
|
+
var EditableListItem = qe.div.withConfig({
|
|
35473
36519
|
displayName: "EditableListstyled__EditableListItem",
|
|
35474
36520
|
componentId: "sc-10ehkz7-0"
|
|
35475
36521
|
})(["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) {
|
|
@@ -35479,7 +36525,7 @@ var EditableListItem = styled.div.withConfig({
|
|
|
35479
36525
|
var listItemSize = _ref2.listItemSize;
|
|
35480
36526
|
return listItemSize === "big" ? "120px" : "72px";
|
|
35481
36527
|
});
|
|
35482
|
-
var EditableListItemControls =
|
|
36528
|
+
var EditableListItemControls = qe.div.withConfig({
|
|
35483
36529
|
displayName: "EditableListstyled__EditableListItemControls",
|
|
35484
36530
|
componentId: "sc-10ehkz7-1"
|
|
35485
36531
|
})(["display:flex;justify-content:space-evenly;align-items:center;"]);
|
|
@@ -35600,14 +36646,14 @@ var EditableList = function EditableList(_ref) {
|
|
|
35600
36646
|
}))));
|
|
35601
36647
|
};
|
|
35602
36648
|
|
|
35603
|
-
var EditableTableContainer =
|
|
36649
|
+
var EditableTableContainer = qe.div.withConfig({
|
|
35604
36650
|
displayName: "EditableTablestyled__EditableTableContainer",
|
|
35605
36651
|
componentId: "sc-fd3i2a-0"
|
|
35606
36652
|
})(["display:", ";flex-direction:column;flex:1;"], function (_ref) {
|
|
35607
36653
|
var hide = _ref.hide;
|
|
35608
36654
|
return hide ? "none" : "flex";
|
|
35609
36655
|
});
|
|
35610
|
-
var EditableTableListItem =
|
|
36656
|
+
var EditableTableListItem = qe.div.withConfig({
|
|
35611
36657
|
displayName: "EditableTablestyled__EditableTableListItem",
|
|
35612
36658
|
componentId: "sc-fd3i2a-1"
|
|
35613
36659
|
})(["width:100%;display:flex;", ";align-items:", ";flex-direction:", ";flex:1;", ";"], function (_ref2) {
|
|
@@ -35623,29 +36669,29 @@ var EditableTableListItem = styled.div.withConfig({
|
|
|
35623
36669
|
var isMobile = _ref5.isMobile;
|
|
35624
36670
|
return isMobile ? "padding: 1rem 0.5rem" : "padding: 0 0.5rem";
|
|
35625
36671
|
});
|
|
35626
|
-
var EditableListItemControls$1 =
|
|
36672
|
+
var EditableListItemControls$1 = qe.div.withConfig({
|
|
35627
36673
|
displayName: "EditableTablestyled__EditableListItemControls",
|
|
35628
36674
|
componentId: "sc-fd3i2a-2"
|
|
35629
36675
|
})(["display:flex;justify-content:space-evenly;align-items:center;"]);
|
|
35630
|
-
var EditableListAction =
|
|
36676
|
+
var EditableListAction = qe.div.withConfig({
|
|
35631
36677
|
displayName: "EditableTablestyled__EditableListAction",
|
|
35632
36678
|
componentId: "sc-fd3i2a-3"
|
|
35633
36679
|
})(["color:", ";align-items:center;font-size:1rem;padding-right:1rem;cursor:pointer;display:", ";"], MATISSE_BLUE, function (_ref6) {
|
|
35634
36680
|
var hide = _ref6.hide;
|
|
35635
36681
|
return hide ? "none" : "flex";
|
|
35636
36682
|
});
|
|
35637
|
-
var ItemWrapper =
|
|
36683
|
+
var ItemWrapper = qe.div.withConfig({
|
|
35638
36684
|
displayName: "EditableTablestyled__ItemWrapper",
|
|
35639
36685
|
componentId: "sc-fd3i2a-4"
|
|
35640
36686
|
})(["display:flex;flex-direction:row;flex:1;width:100%;border-bottom:1px solid ", ";"], GHOST_GREY);
|
|
35641
|
-
var ActionWrapper =
|
|
36687
|
+
var ActionWrapper = qe.div.withConfig({
|
|
35642
36688
|
displayName: "EditableTablestyled__ActionWrapper",
|
|
35643
36689
|
componentId: "sc-fd3i2a-5"
|
|
35644
36690
|
})(["display:flex;align-self:center;justify-content:flex-end;", ";flex:1;"], function (_ref7) {
|
|
35645
36691
|
var isMobile = _ref7.isMobile;
|
|
35646
36692
|
return isMobile && "display: none";
|
|
35647
36693
|
});
|
|
35648
|
-
var TableItemKey =
|
|
36694
|
+
var TableItemKey = qe.div.withConfig({
|
|
35649
36695
|
displayName: "EditableTablestyled__TableItemKey",
|
|
35650
36696
|
componentId: "sc-fd3i2a-6"
|
|
35651
36697
|
})(["display:flex;", ";", ";", ";font-size:", ";color:", ";"], function (_ref8) {
|
|
@@ -35661,7 +36707,7 @@ var TableItemKey = styled.div.withConfig({
|
|
|
35661
36707
|
var isMobile = _ref11.isMobile;
|
|
35662
36708
|
return isMobile ? "1rem" : "1.125rem";
|
|
35663
36709
|
}, STORM_GREY);
|
|
35664
|
-
var TableItemValue =
|
|
36710
|
+
var TableItemValue = qe.div.withConfig({
|
|
35665
36711
|
displayName: "EditableTablestyled__TableItemValue",
|
|
35666
36712
|
componentId: "sc-fd3i2a-7"
|
|
35667
36713
|
})(["display:flex;", ";", ";", ";font-size:", ";color:", ";"], function (_ref12) {
|
|
@@ -35677,7 +36723,7 @@ var TableItemValue = styled.div.withConfig({
|
|
|
35677
36723
|
var isMobile = _ref15.isMobile;
|
|
35678
36724
|
return isMobile ? "1.125rem" : "1.0625rem";
|
|
35679
36725
|
}, BRIGHT_GREY);
|
|
35680
|
-
var TableWrapper =
|
|
36726
|
+
var TableWrapper = qe.div.withConfig({
|
|
35681
36727
|
displayName: "EditableTablestyled__TableWrapper",
|
|
35682
36728
|
componentId: "sc-fd3i2a-8"
|
|
35683
36729
|
})(["display:flex;flex-direction:row;flex:1;width:100%;"]);
|
|
@@ -35698,7 +36744,7 @@ var EditableTable = function EditableTable(_ref) {
|
|
|
35698
36744
|
}, title));
|
|
35699
36745
|
return /*#__PURE__*/React.createElement(EditableTableContainer, {
|
|
35700
36746
|
isMobile: isMobile
|
|
35701
|
-
}, safeChildren(titleChild, /*#__PURE__*/React.createElement(Fragment, null)), /*#__PURE__*/React.createElement(TableWrapper, null, renderItem(items)));
|
|
36747
|
+
}, safeChildren(titleChild, /*#__PURE__*/React.createElement(Fragment$1, null)), /*#__PURE__*/React.createElement(TableWrapper, null, renderItem(items)));
|
|
35702
36748
|
};
|
|
35703
36749
|
|
|
35704
36750
|
var TableListItem = function TableListItem(_ref) {
|
|
@@ -35737,7 +36783,7 @@ var TableListItem = function TableListItem(_ref) {
|
|
|
35737
36783
|
onClick: function onClick() {
|
|
35738
36784
|
return console.log("Edit Item Coming Soon...");
|
|
35739
36785
|
}
|
|
35740
|
-
}, "Edit")) : /*#__PURE__*/React.createElement(Fragment, null))));
|
|
36786
|
+
}, "Edit")) : /*#__PURE__*/React.createElement(Fragment$1, null))));
|
|
35741
36787
|
};
|
|
35742
36788
|
|
|
35743
36789
|
var EmailForm = function EmailForm(_ref) {
|
|
@@ -38881,10 +39927,10 @@ var Modal$1 = function Modal(_ref) {
|
|
|
38881
39927
|
buttonExtraStyles = _ref.buttonExtraStyles,
|
|
38882
39928
|
children = _ref.children;
|
|
38883
39929
|
|
|
38884
|
-
var _useContext = useContext(
|
|
39930
|
+
var _useContext = useContext(Me),
|
|
38885
39931
|
isMobile = _useContext.isMobile;
|
|
38886
39932
|
|
|
38887
|
-
return /*#__PURE__*/React.createElement(Fragment, null, modalOpen && /*#__PURE__*/React.createElement(reactAriaModal, {
|
|
39933
|
+
return /*#__PURE__*/React.createElement(Fragment$1, null, modalOpen && /*#__PURE__*/React.createElement(reactAriaModal, {
|
|
38888
39934
|
onExit: hideModal,
|
|
38889
39935
|
getApplicationNode: getApplicationNode,
|
|
38890
39936
|
titleText: modalHeaderText,
|
|
@@ -38932,7 +39978,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
38932
39978
|
justify: "flex-end",
|
|
38933
39979
|
align: "center",
|
|
38934
39980
|
childGap: "0rem"
|
|
38935
|
-
}, !onlyCloseButton ? /*#__PURE__*/React.createElement(Fragment, null, isMobile ? /*#__PURE__*/React.createElement(Stack, {
|
|
39981
|
+
}, !onlyCloseButton ? /*#__PURE__*/React.createElement(Fragment$1, null, isMobile ? /*#__PURE__*/React.createElement(Stack, {
|
|
38936
39982
|
childGap: "1rem",
|
|
38937
39983
|
direction: "row"
|
|
38938
39984
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
@@ -39079,7 +40125,7 @@ var Module = function Module(_ref) {
|
|
|
39079
40125
|
var computedFontSize = fontSize || themedFontSize;
|
|
39080
40126
|
var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
|
|
39081
40127
|
var computedElemType = as || themedElemType;
|
|
39082
|
-
return /*#__PURE__*/React.createElement(Fragment, null, heading && /*#__PURE__*/React.createElement(Title$1, {
|
|
40128
|
+
return /*#__PURE__*/React.createElement(Fragment$1, null, heading && /*#__PURE__*/React.createElement(Title$1, {
|
|
39083
40129
|
weight: themeValues.fontWeight,
|
|
39084
40130
|
color: themeValues.fontColor,
|
|
39085
40131
|
margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
|
|
@@ -39179,7 +40225,7 @@ var menu = posed.div({
|
|
|
39179
40225
|
}
|
|
39180
40226
|
}
|
|
39181
40227
|
});
|
|
39182
|
-
var ImposterMenu =
|
|
40228
|
+
var ImposterMenu = qe(menu).withConfig({
|
|
39183
40229
|
displayName: "NavMenuMobile__ImposterMenu",
|
|
39184
40230
|
componentId: "sc-1pf0qp7-0"
|
|
39185
40231
|
})(["position:fixed;top:72px;"]);
|
|
@@ -39277,19 +40323,15 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
39277
40323
|
modalOpen = _ref.modalOpen,
|
|
39278
40324
|
deactivatePaymentSchedule = _ref.deactivatePaymentSchedule,
|
|
39279
40325
|
navigateToSettings = _ref.navigateToSettings,
|
|
39280
|
-
|
|
39281
|
-
controlType = _ref$controlType === void 0 ? "tertiary" : _ref$controlType,
|
|
40326
|
+
buttonLinkType = _ref.buttonLinkType,
|
|
39282
40327
|
isMobile = _ref.isMobile,
|
|
39283
40328
|
themeValues = _ref.themeValues,
|
|
39284
40329
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
39285
|
-
nextAutopayDate = _ref.nextAutopayDate
|
|
39286
|
-
dueDate = _ref.dueDate,
|
|
39287
|
-
inactive = _ref.inactive;
|
|
40330
|
+
nextAutopayDate = _ref.nextAutopayDate;
|
|
39288
40331
|
var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
39289
|
-
var nextDate = dueDate || nextAutopayDate;
|
|
39290
40332
|
var modalExtraProps = {
|
|
39291
40333
|
modalHeaderText: autoPayActive ? "Deactivate ".concat(planType) : "Set Up ".concat(planType),
|
|
39292
|
-
modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(isPaymentPlan ? "your payment plan" : "autopay", "?
|
|
40334
|
+
modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(isPaymentPlan ? "your payment plan" : "autopay", "? You will need to manually make your next payment.") : "To set up ".concat(isPaymentPlan ? "a payment plan" : "autopay", " you must save a payment method and address in your profile. Do you want to save these now?"),
|
|
39293
40335
|
continueButtonText: autoPayActive ? "Disable ".concat(planType) : "Add to Profile",
|
|
39294
40336
|
useDangerButton: autoPayActive,
|
|
39295
40337
|
continueAction: autoPayActive ? function () {
|
|
@@ -39300,67 +40342,6 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
39300
40342
|
var hoverStyles = "\n &:hover {\n .autopayIcon { fill: ".concat(themeValues.hoverColor, "; text-decoration: underline; cursor: pointer; }\n }");
|
|
39301
40343
|
var activeStyles = "\n &:active {\n .autopayIcon { fill: ".concat(themeValues.activeColor, "; text-decoration: underline; }\n }");
|
|
39302
40344
|
var defaultStyles = "\n .autopayIcon { fill: ".concat(themeValues.color, "; text-decoration: underline; }\n ");
|
|
39303
|
-
|
|
39304
|
-
var renderAutoPayControl = function renderAutoPayControl() {
|
|
39305
|
-
switch (controlType) {
|
|
39306
|
-
case "secondary":
|
|
39307
|
-
{
|
|
39308
|
-
return /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
39309
|
-
text: autoPayActive ? "Turn off ".concat(planType) : "Set Up ".concat(planType),
|
|
39310
|
-
variant: "secondary",
|
|
39311
|
-
action: function action() {
|
|
39312
|
-
toggleModal(true);
|
|
39313
|
-
},
|
|
39314
|
-
dataQa: "Turn off Autopay",
|
|
39315
|
-
extraStyles: isMobile ? "flex-grow: 1; width: 100%; margin: 0;" : "flex-grow: 1; min-width: 165px;"
|
|
39316
|
-
});
|
|
39317
|
-
}
|
|
39318
|
-
|
|
39319
|
-
case "tertiary":
|
|
39320
|
-
{
|
|
39321
|
-
return /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
39322
|
-
text: autoPayActive ? "Manage ".concat(planType) : "Set Up ".concat(planType),
|
|
39323
|
-
variant: "tertiary",
|
|
39324
|
-
action: function action() {
|
|
39325
|
-
toggleModal(true);
|
|
39326
|
-
},
|
|
39327
|
-
dataQa: "Manage Autopay",
|
|
39328
|
-
extraStyles: isMobile && "flex-grow: 1; width: 100%;"
|
|
39329
|
-
});
|
|
39330
|
-
}
|
|
39331
|
-
|
|
39332
|
-
case "link":
|
|
39333
|
-
{
|
|
39334
|
-
return /*#__PURE__*/React.createElement(Box, {
|
|
39335
|
-
padding: "0",
|
|
39336
|
-
onClick: function onClick() {
|
|
39337
|
-
toggleModal(true);
|
|
39338
|
-
},
|
|
39339
|
-
hoverStyles: hoverStyles,
|
|
39340
|
-
activeStyles: activeStyles,
|
|
39341
|
-
extraStyles: defaultStyles
|
|
39342
|
-
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
39343
|
-
justify: isMobile ? "flex-start" : "flex-end",
|
|
39344
|
-
align: "center"
|
|
39345
|
-
}, /*#__PURE__*/React.createElement(AutopayOnIcon, null), /*#__PURE__*/React.createElement(Text$1, {
|
|
39346
|
-
variant: "pS",
|
|
39347
|
-
onClick: function onClick() {
|
|
39348
|
-
return toggleModal(true);
|
|
39349
|
-
},
|
|
39350
|
-
onKeyPress: function onKeyPress(e) {
|
|
39351
|
-
e.key === "Enter" && toggleModal(true);
|
|
39352
|
-
},
|
|
39353
|
-
tabIndex: "0",
|
|
39354
|
-
dataQa: "".concat(planType, " On"),
|
|
39355
|
-
color: SEA_GREEN,
|
|
39356
|
-
weight: themeValues.fontWeight,
|
|
39357
|
-
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
39358
|
-
extraStyles: "padding-left: 0.25rem;"
|
|
39359
|
-
}, "".concat(planType, " ").concat(nextAutopayDate))));
|
|
39360
|
-
}
|
|
39361
|
-
}
|
|
39362
|
-
};
|
|
39363
|
-
|
|
39364
40345
|
return /*#__PURE__*/React.createElement(Modal$1, _extends({
|
|
39365
40346
|
showModal: function showModal() {
|
|
39366
40347
|
return toggleModal(true);
|
|
@@ -39369,7 +40350,43 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
39369
40350
|
return toggleModal(false);
|
|
39370
40351
|
},
|
|
39371
40352
|
modalOpen: modalOpen
|
|
39372
|
-
}, modalExtraProps),
|
|
40353
|
+
}, modalExtraProps), buttonLinkType ? /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
40354
|
+
text: autoPayActive ? "Manage ".concat(planType) : "Set Up ".concat(planType),
|
|
40355
|
+
variant: "tertiary",
|
|
40356
|
+
action: function action() {
|
|
40357
|
+
toggleModal(true);
|
|
40358
|
+
},
|
|
40359
|
+
dataQa: "Manage Autopay",
|
|
40360
|
+
extraStyles: isMobile && "flex-grow: 1; width: 100%;"
|
|
40361
|
+
}) : /*#__PURE__*/React.createElement(Box, {
|
|
40362
|
+
padding: "0",
|
|
40363
|
+
onClick: function onClick() {
|
|
40364
|
+
toggleModal(true);
|
|
40365
|
+
},
|
|
40366
|
+
hoverStyles: hoverStyles,
|
|
40367
|
+
activeStyles: activeStyles,
|
|
40368
|
+
extraStyles: defaultStyles
|
|
40369
|
+
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
40370
|
+
justify: isMobile ? "flex-start" : "flex-end",
|
|
40371
|
+
align: "center"
|
|
40372
|
+
}, /*#__PURE__*/React.createElement(AutopayOnIcon$1, null), /*#__PURE__*/React.createElement(Text$1, {
|
|
40373
|
+
variant: "pS",
|
|
40374
|
+
onClick: function onClick() {
|
|
40375
|
+
return toggleModal(true);
|
|
40376
|
+
},
|
|
40377
|
+
onKeyPress: function onKeyPress(e) {
|
|
40378
|
+
console.log({
|
|
40379
|
+
e: e
|
|
40380
|
+
});
|
|
40381
|
+
e.key === "Enter" && toggleModal(true);
|
|
40382
|
+
},
|
|
40383
|
+
tabIndex: "0",
|
|
40384
|
+
dataQa: "".concat(planType, " On"),
|
|
40385
|
+
color: SEA_GREEN,
|
|
40386
|
+
weight: themeValues.fontWeight,
|
|
40387
|
+
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
40388
|
+
extraStyles: "padding-left: 0.25rem;"
|
|
40389
|
+
}, "".concat(planType, " ").concat(nextAutopayDate)))));
|
|
39373
40390
|
};
|
|
39374
40391
|
|
|
39375
40392
|
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$z);
|
|
@@ -39411,8 +40428,7 @@ var AmountModule = function AmountModule(_ref) {
|
|
|
39411
40428
|
isMobile: isMobile,
|
|
39412
40429
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
39413
40430
|
isPaymentPlan: isPaymentPlan,
|
|
39414
|
-
nextAutopayDate: nextAutopayDate
|
|
39415
|
-
controlType: "link"
|
|
40431
|
+
nextAutopayDate: nextAutopayDate
|
|
39416
40432
|
})));
|
|
39417
40433
|
};
|
|
39418
40434
|
|
|
@@ -39429,9 +40445,7 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
39429
40445
|
autoPaySchedule = _ref.autoPaySchedule,
|
|
39430
40446
|
paymentPlanSchedule = _ref.paymentPlanSchedule,
|
|
39431
40447
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
39432
|
-
nextAutopayDate = _ref.nextAutopayDate
|
|
39433
|
-
obligationAssocID = _ref.obligationAssocID,
|
|
39434
|
-
dueDate = _ref.dueDate;
|
|
40448
|
+
nextAutopayDate = _ref.nextAutopayDate;
|
|
39435
40449
|
var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
39436
40450
|
|
|
39437
40451
|
var _useState = useState(false),
|
|
@@ -39456,7 +40470,7 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
39456
40470
|
};
|
|
39457
40471
|
|
|
39458
40472
|
var handleDetailsClick = function handleDetailsClick() {
|
|
39459
|
-
setDetailedObligation(obligations, config
|
|
40473
|
+
setDetailedObligation(obligations, config);
|
|
39460
40474
|
navigateToDetailedObligation(detailsSlug);
|
|
39461
40475
|
};
|
|
39462
40476
|
|
|
@@ -39522,14 +40536,14 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
39522
40536
|
modalOpen: modalOpen,
|
|
39523
40537
|
navigateToSettings: navigateToSettings,
|
|
39524
40538
|
deactivatePaymentSchedule: deactivatePaymentSchedule,
|
|
39525
|
-
|
|
40539
|
+
buttonLinkType: true,
|
|
39526
40540
|
isMobile: isMobile,
|
|
39527
40541
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
39528
40542
|
isPaymentPlan: isPaymentPlan,
|
|
39529
|
-
nextAutopayDate: nextAutopayDate
|
|
39530
|
-
dueDate: dueDate
|
|
40543
|
+
nextAutopayDate: nextAutopayDate
|
|
39531
40544
|
})), !isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
39532
|
-
padding: "0"
|
|
40545
|
+
padding: isMobile ? "0 0 0 8px" : "0",
|
|
40546
|
+
extraStyles: isMobile && "flex-grow: 1;"
|
|
39533
40547
|
}, /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
39534
40548
|
isLoading: isLoading,
|
|
39535
40549
|
action: function action() {
|
|
@@ -39537,7 +40551,8 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
39537
40551
|
},
|
|
39538
40552
|
text: "Pay Now",
|
|
39539
40553
|
variant: isMobile ? "smallSecondary" : "secondary",
|
|
39540
|
-
dataQa: "Pay Now"
|
|
40554
|
+
dataQa: "Pay Now",
|
|
40555
|
+
extraStyles: isMobile && "flex-grow: 1; width: 100%;"
|
|
39541
40556
|
}))), isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
39542
40557
|
padding: "8px 0 0",
|
|
39543
40558
|
width: "100%"
|
|
@@ -39549,61 +40564,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
39549
40564
|
text: "Pay Now",
|
|
39550
40565
|
variant: isMobile ? "smallSecondary" : "secondary",
|
|
39551
40566
|
dataQa: "Pay Now",
|
|
39552
|
-
extraStyles: isMobile && "flex-grow: 1; width: 100%;
|
|
40567
|
+
extraStyles: isMobile && "flex-grow: 1; width: 100%;"
|
|
39553
40568
|
}))));
|
|
39554
40569
|
};
|
|
39555
40570
|
|
|
39556
|
-
var RemoveAccountModalModule = function RemoveAccountModalModule(_ref) {
|
|
39557
|
-
var agencyName = _ref.agencyName,
|
|
39558
|
-
_ref$obligations = _ref.obligations,
|
|
39559
|
-
obligations = _ref$obligations === void 0 ? [] : _ref$obligations,
|
|
39560
|
-
removeAccount = _ref.removeAccount,
|
|
39561
|
-
accountType = _ref.accountType,
|
|
39562
|
-
isMobile = _ref.isMobile;
|
|
39563
|
-
|
|
39564
|
-
var _useState = useState(false),
|
|
39565
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
39566
|
-
modalIsOpen = _useState2[0],
|
|
39567
|
-
setModalIsOpen = _useState2[1];
|
|
39568
|
-
|
|
39569
|
-
var lastItem = _toConsumableArray(obligations).pop();
|
|
39570
|
-
|
|
39571
|
-
var accounts = obligations.length ? obligations.reduce(function (acc, curr) {
|
|
39572
|
-
var account = curr.details.description;
|
|
39573
|
-
var formattedAccount = curr !== lastItem ? "".concat(account, " and ") : "".concat(account);
|
|
39574
|
-
return formattedAccount === agencyName ? agencyName : acc + formattedAccount;
|
|
39575
|
-
}, "".concat(agencyName, " - ")) : "";
|
|
39576
|
-
var identifier = accountType === "Account" && obligations.length > 1 ? "accounts" : accountType === "Property" && obligations.length > 1 ? "properties" : accountType.toLowerCase();
|
|
39577
|
-
return /*#__PURE__*/React.createElement(Modal$1, {
|
|
39578
|
-
showModal: function showModal() {
|
|
39579
|
-
return setModalIsOpen(true);
|
|
39580
|
-
},
|
|
39581
|
-
hideModal: function hideModal() {
|
|
39582
|
-
return setModalIsOpen(false);
|
|
39583
|
-
},
|
|
39584
|
-
modalOpen: modalIsOpen,
|
|
39585
|
-
modalHeaderText: "Remove ".concat(accountType),
|
|
39586
|
-
modalBodyText: "Are you sure you want to remove the ".concat(identifier, " ").concat(accounts, " from your profile? Any autopay scheduled against ").concat(obligations.length > 1 ? "them" : "it", " will be deactivated."),
|
|
39587
|
-
continueButtonText: "Remove",
|
|
39588
|
-
continueAction: function continueAction() {
|
|
39589
|
-
removeAccount();
|
|
39590
|
-
setModalIsOpen(false);
|
|
39591
|
-
},
|
|
39592
|
-
useDangerButton: true
|
|
39593
|
-
}, /*#__PURE__*/React.createElement(Box, {
|
|
39594
|
-
padding: "0",
|
|
39595
|
-
extraStyles: "flex-grow: 1;"
|
|
39596
|
-
}, /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
39597
|
-
text: "Remove",
|
|
39598
|
-
variant: "secondary",
|
|
39599
|
-
action: function action() {
|
|
39600
|
-
return setModalIsOpen(true);
|
|
39601
|
-
},
|
|
39602
|
-
dataQa: "Remove Account",
|
|
39603
|
-
extraStyles: isMobile ? "flex-grow: 1; width: 100%; margin: 0;" : "flex-grow: 1;"
|
|
39604
|
-
})));
|
|
39605
|
-
};
|
|
39606
|
-
|
|
39607
40571
|
var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
39608
40572
|
var autoPayEnabled = _ref.autoPayEnabled,
|
|
39609
40573
|
autoPaySchedule = _ref.autoPaySchedule,
|
|
@@ -39614,9 +40578,6 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
39614
40578
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
39615
40579
|
nextAutopayDate = _ref.nextAutopayDate,
|
|
39616
40580
|
obligationAssocID = _ref.obligationAssocID,
|
|
39617
|
-
dueDate = _ref.dueDate,
|
|
39618
|
-
agencyName = _ref.agencyName,
|
|
39619
|
-
configType = _ref.configType,
|
|
39620
40581
|
actions = _ref.actions;
|
|
39621
40582
|
|
|
39622
40583
|
var _useState = useState(false),
|
|
@@ -39624,10 +40585,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
39624
40585
|
modalOpen = _useState2[0],
|
|
39625
40586
|
toggleModal = _useState2[1];
|
|
39626
40587
|
|
|
39627
|
-
var
|
|
40588
|
+
var removeAccount = actions.removeAccount;
|
|
39628
40589
|
|
|
39629
40590
|
var handleRemoveAccount = function handleRemoveAccount() {
|
|
39630
|
-
return
|
|
40591
|
+
return removeAccount(obligationAssocID);
|
|
39631
40592
|
};
|
|
39632
40593
|
|
|
39633
40594
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -39635,10 +40596,7 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
39635
40596
|
border: isMobile ? "1px solid ".concat(GHOST_GREY) : "0px",
|
|
39636
40597
|
borderWidthOverride: isMobile ? "1px 0 0 0" : "0px"
|
|
39637
40598
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
39638
|
-
childGap:
|
|
39639
|
-
nowrap: true,
|
|
39640
|
-
justify: isMobile && autoPayEnabled && "center",
|
|
39641
|
-
align: isMobile && autoPayEnabled && "center"
|
|
40599
|
+
childGap: isMobile ? "8px" : "18px"
|
|
39642
40600
|
}, autoPayEnabled && /*#__PURE__*/React.createElement(Box, {
|
|
39643
40601
|
padding: "0",
|
|
39644
40602
|
extraStyles: "flex-grow: 1;"
|
|
@@ -39649,22 +40607,21 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
39649
40607
|
modalOpen: modalOpen,
|
|
39650
40608
|
navigateToSettings: navigateToSettings,
|
|
39651
40609
|
deactivatePaymentSchedule: deactivatePaymentSchedule,
|
|
40610
|
+
buttonLinkType: true,
|
|
39652
40611
|
isMobile: isMobile,
|
|
39653
40612
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
39654
40613
|
isPaymentPlan: isPaymentPlan,
|
|
39655
40614
|
nextAutopayDate: nextAutopayDate,
|
|
39656
|
-
obligationAssocID: obligationAssocID
|
|
39657
|
-
dueDate: dueDate,
|
|
39658
|
-
controlType: "secondary",
|
|
39659
|
-
inactive: true
|
|
40615
|
+
obligationAssocID: obligationAssocID
|
|
39660
40616
|
})), /*#__PURE__*/React.createElement(Box, {
|
|
39661
40617
|
padding: "0",
|
|
39662
40618
|
extraStyles: "flex-grow: 1;"
|
|
39663
|
-
}, /*#__PURE__*/React.createElement(
|
|
39664
|
-
|
|
39665
|
-
|
|
39666
|
-
|
|
39667
|
-
|
|
40619
|
+
}, /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
40620
|
+
variant: "tertiary",
|
|
40621
|
+
text: "Remove",
|
|
40622
|
+
action: handleRemoveAccount,
|
|
40623
|
+
dataQa: "Remove Account",
|
|
40624
|
+
extraStyles: isMobile && "flex-grow: 1; width: 100%;"
|
|
39668
40625
|
}))));
|
|
39669
40626
|
};
|
|
39670
40627
|
|
|
@@ -39694,12 +40651,10 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
39694
40651
|
variant: "extraSmall",
|
|
39695
40652
|
as: "p",
|
|
39696
40653
|
color: BLACK
|
|
39697
|
-
}, "This may mean that the
|
|
40654
|
+
}, "This may mean that the account has been paid off or there was an error loading it. If you have questions about this account, please contact us.".concat(autoPayEnabled ? " You may disable Autopay for this account by pressing the Turn off Autopay button." : ""))));
|
|
39698
40655
|
};
|
|
39699
40656
|
|
|
39700
40657
|
var Obligation = function Obligation(_ref) {
|
|
39701
|
-
var _firstObligation$cust, _firstObligation$desc, _firstObligation$subD;
|
|
39702
|
-
|
|
39703
40658
|
var config = _ref.config,
|
|
39704
40659
|
obligations = _ref.obligations,
|
|
39705
40660
|
actions = _ref.actions,
|
|
@@ -39714,43 +40669,29 @@ var Obligation = function Obligation(_ref) {
|
|
|
39714
40669
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
39715
40670
|
nextAutopayDate = _ref.nextAutopayDate,
|
|
39716
40671
|
obligationAssocID = _ref.obligationAssocID,
|
|
39717
|
-
|
|
39718
|
-
|
|
39719
|
-
_ref$inactive = _ref.inactive,
|
|
39720
|
-
inactive = _ref$inactive === void 0 ? false : _ref$inactive,
|
|
40672
|
+
_ref$isActive = _ref.isActive,
|
|
40673
|
+
isActive = _ref$isActive === void 0 ? true : _ref$isActive,
|
|
39721
40674
|
_ref$inactiveLookupTi = _ref.inactiveLookupTitle,
|
|
39722
40675
|
inactiveLookupTitle = _ref$inactiveLookupTi === void 0 ? "" : _ref$inactiveLookupTi,
|
|
39723
40676
|
_ref$inactiveLookupIn = _ref.inactiveLookupInput,
|
|
39724
40677
|
inactiveLookupInput = _ref$inactiveLookupIn === void 0 ? "Account" : _ref$inactiveLookupIn,
|
|
39725
40678
|
_ref$inactiveLookupVa = _ref.inactiveLookupValue,
|
|
39726
40679
|
inactiveLookupValue = _ref$inactiveLookupVa === void 0 ? "" : _ref$inactiveLookupVa;
|
|
39727
|
-
|
|
39728
|
-
|
|
39729
|
-
|
|
39730
|
-
- A single obligation
|
|
39731
|
-
- A group of obligations (a "collection")
|
|
39732
|
-
|
|
39733
|
-
The top level desc/subdesc for all obligations in a collection is the same
|
|
39734
|
-
(Collection accounts look different in the Account Details page)
|
|
39735
|
-
*/
|
|
39736
|
-
var firstObligation = obligations[0];
|
|
39737
|
-
var customAttributes = (_firstObligation$cust = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.customAttributes) !== null && _firstObligation$cust !== void 0 ? _firstObligation$cust : {};
|
|
39738
|
-
var boxShadowValue = "0px 2px 4px rgba(41, 42, 51, 0.1), 0px 1px 1px 2px rgba(41, 42, 51, 0.1);";
|
|
40680
|
+
var obligation = obligations[0];
|
|
40681
|
+
var customAttributes = obligation.customAttributes;
|
|
40682
|
+
var boxShadowValue = "0px 4px 4px rgba(41, 42, 51, 0.1), 0px 1px 1px 2px rgba(41, 42, 51, 0.1);";
|
|
39739
40683
|
var activeObligation = /*#__PURE__*/React.createElement(Box, {
|
|
39740
40684
|
padding: "0",
|
|
39741
40685
|
borderRadius: "4px",
|
|
39742
40686
|
boxShadow: boxShadowValue,
|
|
39743
40687
|
as: "section",
|
|
39744
|
-
"aria-label": "".concat(
|
|
39745
|
-
border: "1px solid ".concat(GRECIAN_GREY),
|
|
39746
|
-
borderWidthOverride: "1px 0 0 0"
|
|
40688
|
+
"aria-label": "".concat(obligation.description, " ").concat(obligation.subDescription)
|
|
39747
40689
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
39748
|
-
background: WHITE
|
|
39749
|
-
padding: isMobile ? "16px" : "24px 16px"
|
|
40690
|
+
background: WHITE
|
|
39750
40691
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
39751
40692
|
childGap: "14px"
|
|
39752
40693
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
39753
|
-
key: "".concat(
|
|
40694
|
+
key: "".concat(obligations[0].id, "-top"),
|
|
39754
40695
|
padding: "0 8px",
|
|
39755
40696
|
minWidth: "100%"
|
|
39756
40697
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
@@ -39770,12 +40711,12 @@ var Obligation = function Obligation(_ref) {
|
|
|
39770
40711
|
iconValue: config.iconValue,
|
|
39771
40712
|
customAttributes: customAttributes
|
|
39772
40713
|
}), /*#__PURE__*/React.createElement(TitleModule, {
|
|
39773
|
-
title:
|
|
39774
|
-
subtitle:
|
|
40714
|
+
title: obligation.description,
|
|
40715
|
+
subtitle: obligation.subDescription,
|
|
39775
40716
|
titleColor: BRIGHT_GREY,
|
|
39776
40717
|
isMobile: isMobile
|
|
39777
40718
|
}))), !isMobile && /*#__PURE__*/React.createElement(AmountModule, {
|
|
39778
|
-
totalAmountDue: obligations
|
|
40719
|
+
totalAmountDue: obligations.reduce(function (acc, curr) {
|
|
39779
40720
|
return acc + curr.amountDue;
|
|
39780
40721
|
}, 0),
|
|
39781
40722
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -39799,8 +40740,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
39799
40740
|
actions: actions,
|
|
39800
40741
|
isMobile: isMobile,
|
|
39801
40742
|
isPaymentPlan: isPaymentPlan,
|
|
39802
|
-
nextAutopayDate: nextAutopayDate
|
|
39803
|
-
obligationAssocID: obligationAssocID
|
|
40743
|
+
nextAutopayDate: nextAutopayDate
|
|
39804
40744
|
}))), isMobile && /*#__PURE__*/React.createElement(PaymentDetailsActions, {
|
|
39805
40745
|
obligations: obligations,
|
|
39806
40746
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -39814,8 +40754,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
39814
40754
|
actions: actions,
|
|
39815
40755
|
isMobile: isMobile,
|
|
39816
40756
|
isPaymentPlan: isPaymentPlan,
|
|
39817
|
-
nextAutopayDate: nextAutopayDate
|
|
39818
|
-
obligationAssocID: obligationAssocID
|
|
40757
|
+
nextAutopayDate: nextAutopayDate
|
|
39819
40758
|
}));
|
|
39820
40759
|
var inactiveObligation = /*#__PURE__*/React.createElement(Box, {
|
|
39821
40760
|
padding: "0",
|
|
@@ -39824,25 +40763,23 @@ var Obligation = function Obligation(_ref) {
|
|
|
39824
40763
|
as: "section",
|
|
39825
40764
|
"aria-label": "".concat(inactiveLookupTitle, " ").concat(inactiveLookupInput, ": ").concat(inactiveLookupValue)
|
|
39826
40765
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
39827
|
-
background: ATHENS_GREY
|
|
39828
|
-
padding: isMobile ? "16px" : "24px"
|
|
40766
|
+
background: ATHENS_GREY
|
|
39829
40767
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
39830
40768
|
childGap: "14px"
|
|
39831
40769
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
39832
|
-
key: "".concat(
|
|
39833
|
-
padding: "0",
|
|
40770
|
+
key: "".concat(obligations[0].id, "-top"),
|
|
40771
|
+
padding: "0 8px",
|
|
39834
40772
|
minWidth: "100%"
|
|
39835
40773
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
39836
40774
|
justify: "space-between",
|
|
39837
40775
|
align: "center",
|
|
39838
|
-
childGap: "
|
|
40776
|
+
childGap: "4px",
|
|
39839
40777
|
nowrap: true
|
|
39840
40778
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
39841
40779
|
padding: "0"
|
|
39842
40780
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
39843
40781
|
justify: "flex-start",
|
|
39844
|
-
align: "center"
|
|
39845
|
-
nowrap: true
|
|
40782
|
+
align: "center"
|
|
39846
40783
|
}, /*#__PURE__*/React.createElement(IconsModule, {
|
|
39847
40784
|
icon: config.icon,
|
|
39848
40785
|
iconDefault: config.iconDefault,
|
|
@@ -39865,10 +40802,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
39865
40802
|
actions: actions,
|
|
39866
40803
|
isMobile: isMobile,
|
|
39867
40804
|
nextAutopayDate: nextAutopayDate,
|
|
39868
|
-
obligationAssocID: obligationAssocID
|
|
39869
|
-
dueDate: dueDate,
|
|
39870
|
-
agencyName: agencyName,
|
|
39871
|
-
configType: config.type
|
|
40805
|
+
obligationAssocID: obligationAssocID
|
|
39872
40806
|
}))), isMobile && /*#__PURE__*/React.createElement(InactiveControlsModule, {
|
|
39873
40807
|
obligations: obligations,
|
|
39874
40808
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -39879,12 +40813,9 @@ var Obligation = function Obligation(_ref) {
|
|
|
39879
40813
|
actions: actions,
|
|
39880
40814
|
isMobile: isMobile,
|
|
39881
40815
|
nextAutopayDate: nextAutopayDate,
|
|
39882
|
-
obligationAssocID: obligationAssocID
|
|
39883
|
-
dueDate: dueDate,
|
|
39884
|
-
agencyName: agencyName,
|
|
39885
|
-
configType: config.type
|
|
40816
|
+
obligationAssocID: obligationAssocID
|
|
39886
40817
|
}))));
|
|
39887
|
-
return
|
|
40818
|
+
return isActive ? activeObligation : inactiveObligation;
|
|
39888
40819
|
};
|
|
39889
40820
|
|
|
39890
40821
|
var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
@@ -40128,7 +41059,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
40128
41059
|
_ref$hideForwardButto = _ref.hideForwardButton,
|
|
40129
41060
|
hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto;
|
|
40130
41061
|
|
|
40131
|
-
var _useContext = useContext(
|
|
41062
|
+
var _useContext = useContext(Me),
|
|
40132
41063
|
isMobile = _useContext.isMobile;
|
|
40133
41064
|
|
|
40134
41065
|
var backButton = !!cancelURL && !!cancelText ? /*#__PURE__*/React.createElement(ButtonWithLink, {
|
|
@@ -40158,14 +41089,14 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
40158
41089
|
extraStyles: isMobile && "flex-grow: 1",
|
|
40159
41090
|
dataQa: forwardButtonText
|
|
40160
41091
|
});
|
|
40161
|
-
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Box, {
|
|
41092
|
+
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Box, {
|
|
40162
41093
|
padding: "1.25rem 0"
|
|
40163
41094
|
}), /*#__PURE__*/React.createElement(SolidDivider$1, null), /*#__PURE__*/React.createElement(Box, {
|
|
40164
41095
|
padding: "2.5rem 0 3.125rem 0"
|
|
40165
41096
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
40166
41097
|
justify: buttonFlexOverride ? buttonFlexOverride : !!backButton ? "space-between" : "flex-end",
|
|
40167
41098
|
align: "center"
|
|
40168
|
-
}, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment, null, forwardButton))));
|
|
41099
|
+
}, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
|
|
40169
41100
|
};
|
|
40170
41101
|
|
|
40171
41102
|
var backgroundColor$8 = {
|
|
@@ -40307,7 +41238,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
40307
41238
|
}, item));
|
|
40308
41239
|
});
|
|
40309
41240
|
var feeElems = fees.map(function (fee) {
|
|
40310
|
-
return /*#__PURE__*/React.createElement(Fragment, {
|
|
41241
|
+
return /*#__PURE__*/React.createElement(Fragment$1, {
|
|
40311
41242
|
key: fee.label
|
|
40312
41243
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
40313
41244
|
padding: "4px 0"
|
|
@@ -40337,7 +41268,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
40337
41268
|
themeValues: themeValues,
|
|
40338
41269
|
variant: variant
|
|
40339
41270
|
});
|
|
40340
|
-
var title = hideTitle ? /*#__PURE__*/React.createElement(Fragment, null) : isCollapsible ? /*#__PURE__*/React.createElement(Box, {
|
|
41271
|
+
var title = hideTitle ? /*#__PURE__*/React.createElement(Fragment$1, null) : isCollapsible ? /*#__PURE__*/React.createElement(Box, {
|
|
40341
41272
|
width: "100%",
|
|
40342
41273
|
padding: "none"
|
|
40343
41274
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
@@ -40424,7 +41355,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
40424
41355
|
intrinsic: true
|
|
40425
41356
|
}, /*#__PURE__*/React.createElement(AccountNumberImage, null)) : imageType === "Routing" ? /*#__PURE__*/React.createElement(Center, {
|
|
40426
41357
|
intrinsic: true
|
|
40427
|
-
}, /*#__PURE__*/React.createElement(RoutingNumberImage, null)) : /*#__PURE__*/React.createElement(Fragment, null))),
|
|
41358
|
+
}, /*#__PURE__*/React.createElement(RoutingNumberImage, null)) : /*#__PURE__*/React.createElement(Fragment$1, null))),
|
|
40428
41359
|
defaultWrapper: false,
|
|
40429
41360
|
onlyCloseButton: !acceptText,
|
|
40430
41361
|
continueButtonText: acceptText,
|
|
@@ -40656,7 +41587,7 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
40656
41587
|
walletCheckboxMarked = _ref.walletCheckboxMarked,
|
|
40657
41588
|
deniedCards = _ref.deniedCards;
|
|
40658
41589
|
|
|
40659
|
-
var _useContext = useContext(
|
|
41590
|
+
var _useContext = useContext(Me),
|
|
40660
41591
|
isMobile = _useContext.isMobile;
|
|
40661
41592
|
|
|
40662
41593
|
useEffect$1(function () {
|
|
@@ -40979,7 +41910,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
40979
41910
|
}
|
|
40980
41911
|
};
|
|
40981
41912
|
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 ");
|
|
40982
|
-
var RightIcon =
|
|
41913
|
+
var RightIcon = qe.img.withConfig({
|
|
40983
41914
|
displayName: "RadioSection__RightIcon",
|
|
40984
41915
|
componentId: "sc-uema02-0"
|
|
40985
41916
|
})(["height:", ";width:", ";", " transition:opacity 0.3s ease;"], function (_ref2) {
|
|
@@ -41076,7 +42007,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
41076
42007
|
isMobile: isMobile,
|
|
41077
42008
|
alt: icon.altText
|
|
41078
42009
|
});
|
|
41079
|
-
})), section.shouldDisplayCardExpiration && /*#__PURE__*/React.createElement(Fragment, null, renderCardStatus(section)))), /*#__PURE__*/React.createElement(AnimatePresence, {
|
|
42010
|
+
})), section.shouldDisplayCardExpiration && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus(section)))), /*#__PURE__*/React.createElement(AnimatePresence, {
|
|
41080
42011
|
initial: false
|
|
41081
42012
|
}, openSection === section.id && /*#__PURE__*/React.createElement(Motion, {
|
|
41082
42013
|
key: "content-".concat(section.id),
|
|
@@ -41210,7 +42141,7 @@ RegistrationForm.mapStateToProps = mapStateToProps$b;
|
|
|
41210
42141
|
RegistrationForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
41211
42142
|
|
|
41212
42143
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
41213
|
-
var _useContext = useContext(
|
|
42144
|
+
var _useContext = useContext(Me),
|
|
41214
42145
|
isMobile = _useContext.isMobile;
|
|
41215
42146
|
|
|
41216
42147
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -41331,7 +42262,7 @@ ResetPasswordForm.mapStateToProps = mapStateToProps$c;
|
|
|
41331
42262
|
ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$b;
|
|
41332
42263
|
|
|
41333
42264
|
var ResetConfirmationForm$2 = function ResetConfirmationForm() {
|
|
41334
|
-
var _useContext = useContext(
|
|
42265
|
+
var _useContext = useContext(Me),
|
|
41335
42266
|
isMobile = _useContext.isMobile;
|
|
41336
42267
|
|
|
41337
42268
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -41455,7 +42386,7 @@ var Tabs = function Tabs(_ref) {
|
|
|
41455
42386
|
className: "tab-content"
|
|
41456
42387
|
}, /*#__PURE__*/React.createElement(Box, null, tabsConfig.tabs.map(function (tab, idx) {
|
|
41457
42388
|
if (tab.label !== activeTab) return undefined;
|
|
41458
|
-
return /*#__PURE__*/React.createElement(Fragment, {
|
|
42389
|
+
return /*#__PURE__*/React.createElement(Fragment$1, {
|
|
41459
42390
|
key: idx
|
|
41460
42391
|
}, tab.content);
|
|
41461
42392
|
}))));
|
|
@@ -41478,7 +42409,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
41478
42409
|
themeValues = _ref.themeValues;
|
|
41479
42410
|
return /*#__PURE__*/React.createElement(Box, {
|
|
41480
42411
|
padding: "0",
|
|
41481
|
-
background:
|
|
42412
|
+
background: ATHENS_GREY,
|
|
41482
42413
|
minHeight: "100%",
|
|
41483
42414
|
role: "region",
|
|
41484
42415
|
"aria-label": "Profile tabs",
|
|
@@ -41650,7 +42581,7 @@ var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
|
41650
42581
|
var Timeout = function Timeout(_ref) {
|
|
41651
42582
|
var onLogout = _ref.onLogout;
|
|
41652
42583
|
|
|
41653
|
-
var _useContext = useContext(
|
|
42584
|
+
var _useContext = useContext(Me),
|
|
41654
42585
|
isMobile = _useContext.isMobile;
|
|
41655
42586
|
|
|
41656
42587
|
return /*#__PURE__*/React.createElement(Cover, null, /*#__PURE__*/React.createElement(Center, {
|
|
@@ -41697,7 +42628,7 @@ var fallbackValues$G = {
|
|
|
41697
42628
|
imageBackgroundColor: imageBackgroundColor
|
|
41698
42629
|
};
|
|
41699
42630
|
|
|
41700
|
-
var WelcomeImage =
|
|
42631
|
+
var WelcomeImage = qe.img.withConfig({
|
|
41701
42632
|
displayName: "WelcomeModule__WelcomeImage",
|
|
41702
42633
|
componentId: "sc-1d9znh4-0"
|
|
41703
42634
|
})(["width:auto;height:215px;"]);
|
|
@@ -41707,7 +42638,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
41707
42638
|
isMobile = _ref.isMobile,
|
|
41708
42639
|
themeValues = _ref.themeValues;
|
|
41709
42640
|
var welcomeImage = "https://cb-public-assets.s3-us-west-2.amazonaws.com/profile-assets/profile-welcome-image.png";
|
|
41710
|
-
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Box, {
|
|
42641
|
+
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Box, {
|
|
41711
42642
|
padding: "0"
|
|
41712
42643
|
}, isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
41713
42644
|
padding: "0",
|
|
@@ -41780,12 +42711,11 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
41780
42711
|
minWidth: "100%",
|
|
41781
42712
|
url: "/service/".concat(slug),
|
|
41782
42713
|
extraStyles: "width: 100%;",
|
|
41783
|
-
linkExtraStyles: "justify-content: center;"
|
|
41784
|
-
dataQa: slug
|
|
42714
|
+
linkExtraStyles: "justify-content: center;"
|
|
41785
42715
|
}))));
|
|
41786
42716
|
};
|
|
41787
42717
|
|
|
41788
|
-
var DashboardIframe =
|
|
42718
|
+
var DashboardIframe = qe.iframe.withConfig({
|
|
41789
42719
|
displayName: "PeriscopeDashboardIframestyled__DashboardIframe",
|
|
41790
42720
|
componentId: "sc-j0cucj-0"
|
|
41791
42721
|
})(["border:none;box-shadow:0 0 5px 0 ", ";display:none;"], ALTO_GREY);
|
|
@@ -41865,7 +42795,7 @@ var PeriscopeDashboardIframe = function PeriscopeDashboardIframe(_ref) {
|
|
|
41865
42795
|
return window.removeEventListener("message", validatePeriscope);
|
|
41866
42796
|
};
|
|
41867
42797
|
}, [requestDashboardUrl]);
|
|
41868
|
-
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(BoxWithShadow$1, {
|
|
42798
|
+
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(BoxWithShadow$1, {
|
|
41869
42799
|
padding: "0",
|
|
41870
42800
|
minWidth: "100%",
|
|
41871
42801
|
minHeight: "592px",
|
|
@@ -41898,7 +42828,7 @@ var PeriscopeDashboardIframe = function PeriscopeDashboardIframe(_ref) {
|
|
|
41898
42828
|
}, "Your organization may not have a dashboard configured."))), !periscopeDataFailure && url && Dashboard(height)(url)));
|
|
41899
42829
|
};
|
|
41900
42830
|
|
|
41901
|
-
var pageBackground = "#
|
|
42831
|
+
var pageBackground = "#F6F6F9";
|
|
41902
42832
|
var fallbackValues$H = {
|
|
41903
42833
|
pageBackground: pageBackground
|
|
41904
42834
|
};
|
|
@@ -41917,12 +42847,12 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
41917
42847
|
centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
|
|
41918
42848
|
content = _ref.content,
|
|
41919
42849
|
themeValues = _ref.themeValues;
|
|
41920
|
-
var themeContext = useContext(
|
|
42850
|
+
var themeContext = useContext(Me);
|
|
41921
42851
|
var isMobile = themeContext.isMobile;
|
|
41922
42852
|
return /*#__PURE__*/React.createElement(Box, {
|
|
41923
42853
|
padding: "0",
|
|
41924
42854
|
minWidth: "100%",
|
|
41925
|
-
background:
|
|
42855
|
+
background: themeValues.pageBackground,
|
|
41926
42856
|
extraStyles: "flex-grow: 1;"
|
|
41927
42857
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
41928
42858
|
centerOverride: isMobile && !centeredMobileContent
|
|
@@ -41933,7 +42863,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
41933
42863
|
minWidth: "100%",
|
|
41934
42864
|
extraStyles: "z-index: 1;",
|
|
41935
42865
|
role: "main"
|
|
41936
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Center, {
|
|
42866
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment$1, null), /*#__PURE__*/React.createElement(Center, {
|
|
41937
42867
|
maxWidth: isMobile && fullWidthMobile ? "100%" : maxContentWidth,
|
|
41938
42868
|
intrinsic: !isMobile
|
|
41939
42869
|
}, centeredMobileContent ? /*#__PURE__*/React.createElement(Cover, {
|
|
@@ -41962,12 +42892,12 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
41962
42892
|
fullWidthMobile = _ref$fullWidthMobile === void 0 ? true : _ref$fullWidthMobile,
|
|
41963
42893
|
content = _ref.content,
|
|
41964
42894
|
themeValues = _ref.themeValues;
|
|
41965
|
-
var themeContext = useContext(
|
|
42895
|
+
var themeContext = useContext(Me);
|
|
41966
42896
|
var isMobile = themeContext.isMobile;
|
|
41967
42897
|
return /*#__PURE__*/React.createElement(Box, {
|
|
41968
42898
|
padding: "0",
|
|
41969
42899
|
minWidth: "100%",
|
|
41970
|
-
background:
|
|
42900
|
+
background: themeValues.pageBackground,
|
|
41971
42901
|
extraStyles: "flex-grow: 1;"
|
|
41972
42902
|
}, /*#__PURE__*/React.createElement(Cover, null, header ? header : /*#__PURE__*/React.createElement(Box, {
|
|
41973
42903
|
padding: "0"
|
|
@@ -41975,7 +42905,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
41975
42905
|
padding: "0",
|
|
41976
42906
|
minWidth: "100%",
|
|
41977
42907
|
role: "main"
|
|
41978
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Center, {
|
|
42908
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment$1, null), /*#__PURE__*/React.createElement(Center, {
|
|
41979
42909
|
maxWidth: isMobile && fullWidthMobile ? "100%" : maxContentWidth,
|
|
41980
42910
|
intrinsic: !isMobile
|
|
41981
42911
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
@@ -42002,12 +42932,12 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
42002
42932
|
maxWidth = _ref$maxWidth === void 0 ? "75rem" : _ref$maxWidth,
|
|
42003
42933
|
_ref$gutters = _ref.gutters,
|
|
42004
42934
|
gutters = _ref$gutters === void 0 ? "2rem" : _ref$gutters;
|
|
42005
|
-
var themeContext = useContext(
|
|
42935
|
+
var themeContext = useContext(Me);
|
|
42006
42936
|
var isMobile = themeContext.isMobile;
|
|
42007
42937
|
return /*#__PURE__*/React.createElement(Box, {
|
|
42008
42938
|
padding: "0",
|
|
42009
42939
|
minWidth: "100%",
|
|
42010
|
-
background:
|
|
42940
|
+
background: themeValues.pageBackground,
|
|
42011
42941
|
extraStyles: "flex-grow: 1;"
|
|
42012
42942
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
42013
42943
|
childGap: "0",
|
|
@@ -42020,7 +42950,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
42020
42950
|
minHeight: "100%",
|
|
42021
42951
|
extraStyles: "z-index: 1;",
|
|
42022
42952
|
role: "main"
|
|
42023
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Center, {
|
|
42953
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment$1, null), /*#__PURE__*/React.createElement(Center, {
|
|
42024
42954
|
maxWidth: maxWidth,
|
|
42025
42955
|
gutters: gutters
|
|
42026
42956
|
}, content)), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
@@ -42053,12 +42983,12 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
42053
42983
|
_ref$sidebarVerticalC = _ref.sidebarVerticalCenter,
|
|
42054
42984
|
sidebarVerticalCenter = _ref$sidebarVerticalC === void 0 ? false : _ref$sidebarVerticalC,
|
|
42055
42985
|
themeValues = _ref.themeValues;
|
|
42056
|
-
var themeContext = useContext(
|
|
42986
|
+
var themeContext = useContext(Me);
|
|
42057
42987
|
var isMobile = themeContext.isMobile;
|
|
42058
42988
|
return /*#__PURE__*/React.createElement(Box, {
|
|
42059
42989
|
padding: "0",
|
|
42060
42990
|
minWidth: "100%",
|
|
42061
|
-
background:
|
|
42991
|
+
background: themeValues.pageBackground,
|
|
42062
42992
|
extraStyles: "flex-grow: 1;"
|
|
42063
42993
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
42064
42994
|
centerOverride: !sidebarVerticalCenter
|
|
@@ -42068,7 +42998,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
42068
42998
|
padding: "0",
|
|
42069
42999
|
minWidth: "100%",
|
|
42070
43000
|
role: "main"
|
|
42071
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Box, {
|
|
43001
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment$1, null), /*#__PURE__*/React.createElement(Box, {
|
|
42072
43002
|
padding: sidebarWrapperPadding
|
|
42073
43003
|
}, /*#__PURE__*/React.createElement(Center, {
|
|
42074
43004
|
maxWidth: sidebarWrapperMaxWidth
|
|
@@ -42077,7 +43007,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
42077
43007
|
childGap: sidebarContentGap,
|
|
42078
43008
|
sidebarOnRight: sidebarOnRight,
|
|
42079
43009
|
contentMinWidth: mainContentMinWidth
|
|
42080
|
-
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment, null) : sidebarContent, mainContent, sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment, null))))), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
43010
|
+
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment$1, null) : sidebarContent, mainContent, sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment$1, null))))), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
42081
43011
|
padding: "0"
|
|
42082
43012
|
})));
|
|
42083
43013
|
};
|
|
@@ -42109,12 +43039,12 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
42109
43039
|
_ref$sidebarVerticalC = _ref.sidebarVerticalCenter,
|
|
42110
43040
|
sidebarVerticalCenter = _ref$sidebarVerticalC === void 0 ? false : _ref$sidebarVerticalC,
|
|
42111
43041
|
themeValues = _ref.themeValues;
|
|
42112
|
-
var themeContext = useContext(
|
|
43042
|
+
var themeContext = useContext(Me);
|
|
42113
43043
|
var isMobile = themeContext.isMobile;
|
|
42114
43044
|
return /*#__PURE__*/React.createElement(Box, {
|
|
42115
43045
|
padding: "0",
|
|
42116
43046
|
minWidth: "100%",
|
|
42117
|
-
background:
|
|
43047
|
+
background: themeValues.pageBackground,
|
|
42118
43048
|
key: "page-bg",
|
|
42119
43049
|
extraStyles: "flex-grow: 1;"
|
|
42120
43050
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
@@ -42128,7 +43058,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
42128
43058
|
minWidth: "100%",
|
|
42129
43059
|
key: "content-box",
|
|
42130
43060
|
role: "main"
|
|
42131
|
-
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment, null), /*#__PURE__*/React.createElement(Box, {
|
|
43061
|
+
}, subHeader && !(isMobile && hideMobileSubHeader) ? subHeader : /*#__PURE__*/React.createElement(Fragment$1, null), /*#__PURE__*/React.createElement(Box, {
|
|
42132
43062
|
padding: sidebarWrapperPadding,
|
|
42133
43063
|
key: "content-wrapper"
|
|
42134
43064
|
}, /*#__PURE__*/React.createElement(Center, {
|
|
@@ -42140,12 +43070,12 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
42140
43070
|
sidebarOnRight: sidebarOnRight,
|
|
42141
43071
|
contentMinWidth: mainContentMinWidth,
|
|
42142
43072
|
key: "content-sidebar"
|
|
42143
|
-
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment, {
|
|
43073
|
+
}, sidebarOnRight ? /*#__PURE__*/React.createElement(Fragment$1, {
|
|
42144
43074
|
key: "sidebar-fragment"
|
|
42145
43075
|
}) : sidebarContent, /*#__PURE__*/React.createElement(Stack, {
|
|
42146
43076
|
key: "content-stack",
|
|
42147
43077
|
childGap: contentStackGap
|
|
42148
|
-
}, mainContent), sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment, {
|
|
43078
|
+
}, mainContent), sidebarOnRight ? sidebarContent : /*#__PURE__*/React.createElement(Fragment$1, {
|
|
42149
43079
|
key: "sidebar-fragment"
|
|
42150
43080
|
}))))), footer ? footer : /*#__PURE__*/React.createElement(Box, {
|
|
42151
43081
|
padding: "0",
|
|
@@ -42172,5 +43102,5 @@ var index$5 = /*#__PURE__*/Object.freeze({
|
|
|
42172
43102
|
theme: themeUtils
|
|
42173
43103
|
});
|
|
42174
43104
|
|
|
42175
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, FailedIcon, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, InternalUserInfoForm, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentIcon, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletIcon$1 as WalletIcon, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$4 as constants, createPartialAmountFormState, index$5 as util, withWindowSize };
|
|
43105
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon$1 as AutopayOnIcon, BankIcon, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, FailedIcon, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, InternalUserInfoForm, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentIcon, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletIcon$1 as WalletIcon, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$4 as constants, createPartialAmountFormState, index$5 as util, withWindowSize };
|
|
42176
43106
|
//# sourceMappingURL=index.esm.js.map
|