@thecb/components 10.12.6-beta.0 → 11.0.0-beta.0
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/README.md +14 -6
- package/dist/index.cjs.js +1311 -1482
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1311 -1483
- package/dist/index.esm.js.map +1 -1
- package/package.json +25 -13
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/alert/Alert.mdx +19 -0
- package/src/components/atoms/alert/Alert.stories.js +148 -26
- package/src/components/atoms/badge/Badge.js +2 -2
- package/src/components/atoms/badge/Badge.mdx +27 -0
- package/src/components/atoms/badge/Badge.stories.js +143 -29
- package/src/components/atoms/breadcrumb/Breadcrumb.mdx +21 -0
- package/src/components/atoms/breadcrumb/Breadcrumb.stories.js +38 -29
- package/src/components/atoms/button-with-action/ButtonWithAction.stories.js +108 -55
- package/src/components/atoms/button-with-link/ButtonWithLink.mdx +21 -0
- package/src/components/atoms/button-with-link/ButtonWithLink.stories.js +160 -31
- package/src/components/atoms/card/Card.mdx +41 -0
- package/src/components/atoms/card/Card.stories.js +351 -0
- package/src/components/atoms/card/CardText.js +6 -1
- package/src/components/atoms/checkbox/Checkbox.mdx +15 -0
- package/src/components/atoms/checkbox/Checkbox.oldstories.js +34 -0
- package/src/components/atoms/checkbox/Checkbox.stories.js +140 -25
- package/src/components/atoms/country-dropdown/CountryDropdown.mdx +36 -0
- package/src/components/atoms/country-dropdown/CountryDropdown.stories.js +61 -27
- package/src/components/atoms/detail/Detail.js +0 -26
- package/src/components/atoms/detail/Detail.mdx +32 -0
- package/src/components/atoms/detail/Detail.stories.js +156 -0
- package/src/components/atoms/display-box/DisplayBox.mdx +11 -0
- package/src/components/atoms/display-box/DisplayBox.stories.js +65 -21
- package/src/components/atoms/display-card/DisplayCard.mdx +13 -0
- package/src/components/atoms/display-card/DisplayCard.stories.js +163 -22
- package/src/components/atoms/dropdown/Dropdown.mdx +65 -0
- package/src/components/atoms/dropdown/Dropdown.stories.js +91 -10
- package/src/components/atoms/form-layouts/FormInput.mdx +38 -0
- package/src/components/atoms/form-layouts/FormInput.stories.js +212 -26
- package/src/components/atoms/form-select/FormSelect.mdx +42 -0
- package/src/components/atoms/form-select/FormSelect.stories.js +55 -29
- package/src/components/atoms/formatted-address/FormattedAddress.mdx +13 -0
- package/src/components/atoms/formatted-address/FormattedAddress.stories.js +133 -27
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.mdx +17 -0
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.stories.js +57 -0
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.mdx +40 -0
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.stories.js +74 -0
- package/src/components/atoms/icons/Icons.mdx +40 -0
- package/src/components/atoms/icons/Icons.stories.js +325 -0
- package/src/components/atoms/labeled-amount/LabeledAmount.mdx +23 -0
- package/src/components/atoms/labeled-amount/LabeledAmount.stories.js +110 -34
- package/src/components/atoms/line-item/LineItem.mdx +28 -0
- package/src/components/atoms/line-item/LineItem.stories.js +89 -22
- package/src/components/atoms/link/Link.mdx +19 -0
- package/src/components/atoms/link/Link.stories.js +155 -49
- package/src/components/atoms/loading/Loading.mdx +13 -0
- package/src/components/atoms/loading/Loading.stories.js +22 -0
- package/src/components/atoms/loading-line/LoadingLine.js +14 -10
- package/src/components/atoms/loading-line/LoadingLine.mdx +15 -0
- package/src/components/atoms/loading-line/LoadingLine.stories.js +132 -28
- package/src/components/atoms/nav-footer/.DS_Store +0 -0
- package/src/components/atoms/nav-footer/NavFooter.mdx +15 -0
- package/src/components/atoms/nav-footer/NavFooter.stories.js +235 -22
- package/src/components/atoms/nav-header/NavHeader.mdx +13 -0
- package/src/components/atoms/nav-header/NavHeader.stories.js +122 -21
- package/src/components/atoms/nav-tabs/NavTabs.mdx +30 -0
- package/src/components/atoms/nav-tabs/NavTabs.stories.js +49 -0
- package/src/components/atoms/password-requirements/PasswordRequirements.mdx +39 -0
- package/src/components/atoms/password-requirements/PasswordRequirements.stories.js +108 -44
- package/src/components/atoms/placeholder/Placeholder.mdx +19 -0
- package/src/components/atoms/placeholder/Placeholder.stories.js +164 -36
- package/src/components/atoms/searchable-select/SearchableSelect.mdx +44 -0
- package/src/components/atoms/searchable-select/SearchableSelect.stories.js +103 -28
- package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.mdx +36 -0
- package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +65 -40
- package/src/components/atoms/table/Table.mdx +71 -0
- package/src/components/atoms/table/Table.oldstories.js +84 -0
- package/src/components/atoms/table/Table.stories.js +59 -75
- package/src/components/atoms/table/TableRow.js +1 -0
- package/src/components/atoms/title/Title.js +0 -23
- package/src/components/atoms/title/Title.mdx +26 -0
- package/src/components/atoms/title/Title.stories.js +144 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.mdx +17 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +103 -20
- package/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +8 -5
- package/src/components/atoms/typeahead-input/TypeaheadInput.mdx +13 -0
- package/src/components/atoms/typeahead-input/TypeaheadInput.stories.js +63 -0
- package/src/components/molecules/.DS_Store +0 -0
- package/src/components/molecules/address-form/AddressForm.mdx +18 -0
- package/src/components/molecules/address-form/AddressForm.stories.js +223 -20
- package/src/components/molecules/banner/Banner.mdx +23 -0
- package/src/components/molecules/banner/Banner.stories.js +122 -26
- package/src/components/molecules/change-password-form/ChangePasswordForm.mdx +15 -0
- package/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +203 -19
- package/src/components/molecules/collapsible-section/CollapsibleSection.mdx +15 -0
- package/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +210 -61
- package/src/components/molecules/edit-name-form/EditNameForm.mdx +13 -0
- package/src/components/molecules/edit-name-form/EditNameForm.stories.js +117 -0
- package/src/components/molecules/idle-modal/IdleModal.js +101 -0
- package/src/components/molecules/idle-modal/IdleModal.mdx +17 -0
- package/src/components/molecules/idle-modal/IdleModal.stories.js +180 -0
- package/src/components/molecules/idle-modal/index.d.ts +16 -0
- package/src/components/molecules/idle-modal/index.js +3 -0
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/link-card/LinkCard.mdx +17 -0
- package/src/components/molecules/link-card/LinkCard.stories.js +287 -72
- package/src/components/molecules/login-form/LoginForm.mdx +16 -0
- package/src/components/molecules/login-form/LoginForm.stories.js +117 -21
- package/src/components/molecules/modal/Modal.mdx +17 -0
- package/src/components/molecules/modal/Modal.stories.js +342 -128
- package/src/components/molecules/module/Module.mdx +17 -0
- package/src/components/molecules/module/Module.stories.js +267 -25
- package/src/components/molecules/obligation/.DS_Store +0 -0
- package/src/components/molecules/obligation/Obligation.mdx +23 -0
- package/src/components/molecules/obligation/Obligation.stories.js +460 -0
- package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +1 -1
- package/src/components/molecules/pagination/Pagination.mdx +15 -0
- package/src/components/molecules/pagination/Pagination.stories.js +177 -28
- package/src/components/molecules/popover/Popover.mdx +15 -0
- package/src/components/molecules/popover/Popover.stories.js +220 -0
- package/src/components/molecules/tabs/Tabs.mdx +17 -0
- package/src/components/molecules/tabs/Tabs.stories.js +135 -227
- package/src/components/molecules/toast-notification/Toast.mdx +15 -0
- package/src/components/molecules/toast-notification/Toast.stories.js +183 -0
- package/src/util/idleTimerUtils.js +36 -0
- package/src/util/index.js +3 -1
- package/src/components/molecules/edit-name-form/EdidNameForm.stories.js +0 -24
- package/src/components/molecules/toast-notification/ToastNotification.stories.js +0 -105
- /package/src/components/atoms/add-obligation/{AddObligation.stories.js → AddObligation.oldstories.js} +0 -0
- /package/src/components/atoms/amount-callout/{AmountCallout.stories.js → AmountCallout.oldstories.js} +0 -0
- /package/src/components/atoms/checkbox-list/{CheckboxList.stories.js → CheckboxList.oldstories.js} +0 -0
- /package/src/components/atoms/form-layouts/{FormLayouts.stories.js → FormLayouts.oldstories.js} +0 -0
- /package/src/components/atoms/hamburger-button/{HamburgerButton.stories.js → HamburgerButton.oldstories.js} +0 -0
- /package/src/components/atoms/heading/{Heading.stories.js → Heading.oldstories.js} +0 -0
- /package/src/components/atoms/icons/{icons.stories.js → icons.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/box-example/{BoxExample.stories.js → BoxExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/center-example/{CenterExample.stories.js → CenterExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/cluster-example/{ClusterExample.stories.js → ClusterExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/cover-example/{CoverExample.stories.js → CoverExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/frame-example/{FrameExample.stories.js → FrameExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/grid-example/{GridExample.stories.js → GridExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/imposter-example/{ImposterExample.stories.js → ImposterExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/motion-example/{MotionExample.stories.js → MotionExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/reel-example/{ReelExample.stories.js → ReelExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/sidebar-example/{SidebarExample.stories.js → SidebarExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/stack-example/{StackExample.stories.js → StackExample.oldstories.js} +0 -0
- /package/src/components/atoms/layouts/examples/switcher-example/{SwitcherExample.stories.js → SwitcherExample.oldstories.js} +0 -0
- /package/src/components/atoms/paragraph/{Paragraph.stories.js → Paragraph.oldstories.js} +0 -0
- /package/src/components/atoms/processing-fee/{ProcessingFee.stories.js → ProcessingFee.oldstories.js} +0 -0
- /package/src/components/atoms/search/{Search.stories.js → Search.oldstories.js} +0 -0
- /package/src/components/atoms/solid-divider/{SolidDivider.stories.js → SolidDivider.oldstories.js} +0 -0
- /package/src/components/atoms/sortable-table-heading/{SortableTableHeading.stories.js → SortableTableHeading.oldstories.js} +0 -0
- /package/src/components/atoms/spinner/{Spinner.stories.js → Spinner.oldstories.js} +0 -0
- /package/src/components/atoms/tab/{Tab.stories.js → Tab.oldstories.js} +0 -0
- /package/src/components/atoms/text/{Text.stories.js → Text.oldstories.js} +0 -0
- /package/src/components/atoms/typeahead-input/{TypeaheadIinput.stories.js → TypeaheadIinput.oldstories.js} +0 -0
- /package/src/components/atoms/wallet-name/{WalletName.stories.js → WalletName.oldstories.js} +0 -0
- /package/src/components/molecules/account-and-routing-modal/{AccountAndRoutingModal.stories.js → AccountAndRoutingModal.oldstories.js} +0 -0
- /package/src/components/molecules/editable-list/{EditableList.stories.js → EditableList.oldstories.js} +0 -0
- /package/src/components/molecules/email-form/{EmailForm.stories.js → EmailForm.oldstories.js} +0 -0
- /package/src/components/molecules/forgot-password-form/{ForgotPasswordForm.stories.js → ForgotPasswordForm.oldstories.js} +0 -0
- /package/src/components/molecules/highlight-tab-row/{HighlightTabRow.stories.js → HighlightTabRow.oldstories.js} +0 -0
- /package/src/components/molecules/multiple-select-filter/{MultipleSelectFilter.stories.js → MultipleSelectFilter.oldstories.js} +0 -0
- /package/src/components/molecules/obligation/modules/{AmountModule.stories.js → AmountModule.oldstories.js} +0 -0
- /package/src/components/molecules/payment-button-bar/{PaymentButtonBar.stories.js → PaymentButtonBar.oldstories.js} +0 -0
- /package/src/components/molecules/payment-details/{PaymentDetails.stories.js → PaymentDetails.oldstories.js} +0 -0
- /package/src/components/molecules/payment-form-ach/{PaymentFormACH.stories.js → PaymentFormACH.oldstories.js} +0 -0
- /package/src/components/molecules/payment-form-card/{PaymentFormCard.stories.js → PaymentFormCard.oldstories.js} +0 -0
- /package/src/components/molecules/periscope-dashboard-iframe/{PeriscopeDashBoardIframe.stories.js → PeriscopeDashBoardIframe.oldstories.js} +0 -0
- /package/src/components/molecules/phone-form/{PhoneForm.stories.js → PhoneForm.oldstories.js} +0 -0
- /package/src/components/molecules/popup-menu/{PopupMenu.stories.js → PopupMenu.oldstories.js} +0 -0
- /package/src/components/molecules/radio-group/{RadioGroup.stories.js → RadioGroup.oldstories.js} +0 -0
- /package/src/components/molecules/radio-section/{RadioSection.stories.js → RadioSection.oldstories.js} +0 -0
- /package/src/components/molecules/registration-form/{RegistrationForm.stories.js → RegistrationForm.oldstories.js} +0 -0
- /package/src/components/molecules/reset-confirmation-form/{ResetConfirmationForm.stories.js → ResetConfirmationForm.oldstories.js} +0 -0
- /package/src/components/molecules/reset-password-form/{ResetPasswordForm.stories.js → ResetPasswordForm.oldstories.js} +0 -0
- /package/src/components/molecules/reset-password-success/{ResetPasswordSuccess.stories.js → ResetPasswordSuccess.oldstories.js} +0 -0
- /package/src/components/molecules/tab-sidebar/{TabSidebar.stories.js → TabSidebar.oldstories.js} +0 -0
- /package/src/components/molecules/terms-and-conditions/{TermsAndConditions.stories.js → TermsAndConditions.oldstories.js} +0 -0
- /package/src/components/molecules/terms-and-conditions-modal/{TermsAndConditionsModal.stories.js → TermsAndConditionsModal.oldstories.js} +0 -0
- /package/src/components/molecules/workflow-tile/{WorkflowTile.stories.js → WorkflowTile.oldstories.js} +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -236,58 +236,6 @@ function __rest(s, e) {
|
|
|
236
236
|
t[p[i]] = s[p[i]];
|
|
237
237
|
}
|
|
238
238
|
return t;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
/*! *****************************************************************************
|
|
242
|
-
Copyright (c) Microsoft Corporation.
|
|
243
|
-
|
|
244
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
245
|
-
purpose with or without fee is hereby granted.
|
|
246
|
-
|
|
247
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
248
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
249
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
250
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
251
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
252
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
253
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
254
|
-
***************************************************************************** */
|
|
255
|
-
/* global Reflect, Promise */
|
|
256
|
-
|
|
257
|
-
var extendStatics$1 = function(d, b) {
|
|
258
|
-
extendStatics$1 = Object.setPrototypeOf ||
|
|
259
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
260
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
261
|
-
return extendStatics$1(d, b);
|
|
262
|
-
};
|
|
263
|
-
|
|
264
|
-
function __extends$1(d, b) {
|
|
265
|
-
extendStatics$1(d, b);
|
|
266
|
-
function __() { this.constructor = d; }
|
|
267
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
var __assign$1 = function() {
|
|
271
|
-
__assign$1 = Object.assign || function __assign(t) {
|
|
272
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
273
|
-
s = arguments[i];
|
|
274
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
275
|
-
}
|
|
276
|
-
return t;
|
|
277
|
-
};
|
|
278
|
-
return __assign$1.apply(this, arguments);
|
|
279
|
-
};
|
|
280
|
-
|
|
281
|
-
function __rest$1(s, e) {
|
|
282
|
-
var t = {};
|
|
283
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
284
|
-
t[p] = s[p];
|
|
285
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
286
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
287
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
288
|
-
t[p[i]] = s[p[i]];
|
|
289
|
-
}
|
|
290
|
-
return t;
|
|
291
239
|
}
|
|
292
240
|
|
|
293
241
|
function __spreadArrays() {
|
|
@@ -298,32 +246,6 @@ function __spreadArrays() {
|
|
|
298
246
|
return r;
|
|
299
247
|
}
|
|
300
248
|
|
|
301
|
-
/*! *****************************************************************************
|
|
302
|
-
Copyright (c) Microsoft Corporation.
|
|
303
|
-
|
|
304
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
305
|
-
purpose with or without fee is hereby granted.
|
|
306
|
-
|
|
307
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
308
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
309
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
310
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
311
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
312
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
313
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
314
|
-
***************************************************************************** */
|
|
315
|
-
|
|
316
|
-
var __assign$2 = function() {
|
|
317
|
-
__assign$2 = Object.assign || function __assign(t) {
|
|
318
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
319
|
-
s = arguments[i];
|
|
320
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
321
|
-
}
|
|
322
|
-
return t;
|
|
323
|
-
};
|
|
324
|
-
return __assign$2.apply(this, arguments);
|
|
325
|
-
};
|
|
326
|
-
|
|
327
249
|
var clamp = function (min, max) { return function (v) {
|
|
328
250
|
return Math.max(Math.min(v, max), min);
|
|
329
251
|
}; };
|
|
@@ -337,8 +259,8 @@ var number = {
|
|
|
337
259
|
parse: parseFloat,
|
|
338
260
|
transform: function (v) { return v; }
|
|
339
261
|
};
|
|
340
|
-
var alpha = __assign
|
|
341
|
-
var scale = __assign
|
|
262
|
+
var alpha = __assign(__assign({}, number), { transform: clamp(0, 1) });
|
|
263
|
+
var scale = __assign(__assign({}, number), { default: 1 });
|
|
342
264
|
|
|
343
265
|
var createUnitType = function (unit) { return ({
|
|
344
266
|
test: function (v) {
|
|
@@ -352,7 +274,7 @@ var percent = createUnitType('%');
|
|
|
352
274
|
var px = createUnitType('px');
|
|
353
275
|
var vh = createUnitType('vh');
|
|
354
276
|
var vw = createUnitType('vw');
|
|
355
|
-
var progressPercentage = __assign
|
|
277
|
+
var progressPercentage = __assign(__assign({}, percent), { parse: function (v) { return percent.parse(v) / 100; }, transform: function (v) { return percent.transform(v * 100); } });
|
|
356
278
|
|
|
357
279
|
var getValueFromFunctionString = function (value) {
|
|
358
280
|
return value.substring(value.indexOf('(') + 1, value.lastIndexOf(')'));
|
|
@@ -386,7 +308,7 @@ var hslaTemplate = function (_a) {
|
|
|
386
308
|
var hue = _a.hue, saturation = _a.saturation, lightness = _a.lightness, _b = _a.alpha, alpha = _b === void 0 ? 1 : _b;
|
|
387
309
|
return "hsla(" + hue + ", " + saturation + ", " + lightness + ", " + alpha + ")";
|
|
388
310
|
};
|
|
389
|
-
var rgbUnit = __assign
|
|
311
|
+
var rgbUnit = __assign(__assign({}, number), { transform: function (v) { return Math.round(clampRgbUnit(v)); } });
|
|
390
312
|
function isColorString(color, colorType) {
|
|
391
313
|
return color.startsWith(colorType) && singleColorRegex.test(color);
|
|
392
314
|
}
|
|
@@ -416,7 +338,7 @@ var hsla = {
|
|
|
416
338
|
});
|
|
417
339
|
}
|
|
418
340
|
};
|
|
419
|
-
var hex = __assign
|
|
341
|
+
var hex = __assign(__assign({}, rgba), { test: function (v) { return typeof v === 'string' && isColorString(v, '#'); }, parse: function (v) {
|
|
420
342
|
var r = '';
|
|
421
343
|
var g = '';
|
|
422
344
|
var b = '';
|
|
@@ -952,15 +874,15 @@ See the Apache Version 2.0 License for specific language governing permissions
|
|
|
952
874
|
and limitations under the License.
|
|
953
875
|
***************************************************************************** */
|
|
954
876
|
|
|
955
|
-
var __assign$
|
|
956
|
-
__assign$
|
|
877
|
+
var __assign$1 = function() {
|
|
878
|
+
__assign$1 = Object.assign || function __assign(t) {
|
|
957
879
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
958
880
|
s = arguments[i];
|
|
959
881
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
960
882
|
}
|
|
961
883
|
return t;
|
|
962
884
|
};
|
|
963
|
-
return __assign$
|
|
885
|
+
return __assign$1.apply(this, arguments);
|
|
964
886
|
};
|
|
965
887
|
|
|
966
888
|
var mixLinearColor = function (from, to, v) {
|
|
@@ -983,7 +905,7 @@ var mixColor = (function (from, to) {
|
|
|
983
905
|
invariant(fromColorType.transform === toColorType.transform, 'Both colors must be hex/RGBA, OR both must be HSLA.');
|
|
984
906
|
var fromColor = fromColorType.parse(from);
|
|
985
907
|
var toColor = toColorType.parse(to);
|
|
986
|
-
var blended = __assign$
|
|
908
|
+
var blended = __assign$1({}, fromColor);
|
|
987
909
|
var mixFunc = fromColorType === hsla ? mix : mixLinearColor;
|
|
988
910
|
return function (v) {
|
|
989
911
|
for (var key in blended) {
|
|
@@ -1028,7 +950,7 @@ var mixArray = function (from, to) {
|
|
|
1028
950
|
};
|
|
1029
951
|
};
|
|
1030
952
|
var mixObject = function (origin, target) {
|
|
1031
|
-
var output = __assign$
|
|
953
|
+
var output = __assign$1({}, origin, target);
|
|
1032
954
|
var blendValue = {};
|
|
1033
955
|
for (var key in output) {
|
|
1034
956
|
if (origin[key] !== undefined && target[key] !== undefined) {
|
|
@@ -1240,44 +1162,6 @@ var wrap$1 = curryRange(wrap);
|
|
|
1240
1162
|
|
|
1241
1163
|
var clampProgress = clamp$1$1(0, 1);
|
|
1242
1164
|
|
|
1243
|
-
/*! *****************************************************************************
|
|
1244
|
-
Copyright (c) Microsoft Corporation.
|
|
1245
|
-
|
|
1246
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
1247
|
-
purpose with or without fee is hereby granted.
|
|
1248
|
-
|
|
1249
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
1250
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
1251
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
1252
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
1253
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
1254
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
1255
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
1256
|
-
***************************************************************************** */
|
|
1257
|
-
|
|
1258
|
-
var __assign$4 = function() {
|
|
1259
|
-
__assign$4 = Object.assign || function __assign(t) {
|
|
1260
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
1261
|
-
s = arguments[i];
|
|
1262
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
1263
|
-
}
|
|
1264
|
-
return t;
|
|
1265
|
-
};
|
|
1266
|
-
return __assign$4.apply(this, arguments);
|
|
1267
|
-
};
|
|
1268
|
-
|
|
1269
|
-
function __rest$2(s, e) {
|
|
1270
|
-
var t = {};
|
|
1271
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
1272
|
-
t[p] = s[p];
|
|
1273
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
1274
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
1275
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
1276
|
-
t[p[i]] = s[p[i]];
|
|
1277
|
-
}
|
|
1278
|
-
return t;
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
1165
|
var createStyler = function (_a) {
|
|
1282
1166
|
var onRead = _a.onRead,
|
|
1283
1167
|
onRender = _a.onRender,
|
|
@@ -1289,7 +1173,7 @@ var createStyler = function (_a) {
|
|
|
1289
1173
|
if (_a === void 0) {
|
|
1290
1174
|
_a = {};
|
|
1291
1175
|
}
|
|
1292
|
-
var props = __rest
|
|
1176
|
+
var props = __rest(_a, []);
|
|
1293
1177
|
var state = {};
|
|
1294
1178
|
var changedValues = [];
|
|
1295
1179
|
var hasChanged = false;
|
|
@@ -1409,7 +1293,7 @@ function isTransformOriginProp(key) {
|
|
|
1409
1293
|
return transformOriginProps.has(key);
|
|
1410
1294
|
}
|
|
1411
1295
|
|
|
1412
|
-
var int = /*#__PURE__*/__assign
|
|
1296
|
+
var int = /*#__PURE__*/__assign( /*#__PURE__*/__assign({}, number), { transform: Math.round });
|
|
1413
1297
|
var valueTypes = {
|
|
1414
1298
|
color: color,
|
|
1415
1299
|
backgroundColor: color,
|
|
@@ -1641,8 +1525,8 @@ function createCssStyler(element, _a) {
|
|
|
1641
1525
|
}
|
|
1642
1526
|
var enableHardwareAcceleration = _a.enableHardwareAcceleration,
|
|
1643
1527
|
allowTransformNone = _a.allowTransformNone,
|
|
1644
|
-
props = __rest
|
|
1645
|
-
return cssStyler(__assign
|
|
1528
|
+
props = __rest(_a, ["enableHardwareAcceleration", "allowTransformNone"]);
|
|
1529
|
+
return cssStyler(__assign({ element: element, buildStyles: createStyleBuilder({
|
|
1646
1530
|
enableHardwareAcceleration: enableHardwareAcceleration,
|
|
1647
1531
|
allowTransformNone: allowTransformNone
|
|
1648
1532
|
}), preparseOutput: true }, props));
|
|
@@ -1692,7 +1576,7 @@ function buildSVGAttrs(_a, dimensions, totalPathLength, cssBuilder, attrs, isDas
|
|
|
1692
1576
|
pathSpacing = _b === void 0 ? 1 : _b,
|
|
1693
1577
|
_c = _a.pathOffset,
|
|
1694
1578
|
pathOffset = _c === void 0 ? 0 : _c,
|
|
1695
|
-
state = __rest
|
|
1579
|
+
state = __rest(_a, ["attrX", "attrY", "originX", "originY", "pathLength", "pathSpacing", "pathOffset"]);
|
|
1696
1580
|
var style = cssBuilder(state);
|
|
1697
1581
|
for (var key in style) {
|
|
1698
1582
|
if (key === 'transform') {
|
|
@@ -1821,7 +1705,7 @@ var Chainable = /*#__PURE__*/function () {
|
|
|
1821
1705
|
this.props = props;
|
|
1822
1706
|
}
|
|
1823
1707
|
Chainable.prototype.applyMiddleware = function (middleware) {
|
|
1824
|
-
return this.create(__assign
|
|
1708
|
+
return this.create(__assign(__assign({}, this.props), { middleware: this.props.middleware ? __spreadArrays([middleware], this.props.middleware) : [middleware] }));
|
|
1825
1709
|
};
|
|
1826
1710
|
Chainable.prototype.pipe = function () {
|
|
1827
1711
|
var funcs = [];
|
|
@@ -1893,7 +1777,7 @@ var createObserver = function (observerCandidate, _a, onComplete) {
|
|
|
1893
1777
|
};
|
|
1894
1778
|
|
|
1895
1779
|
var Action = /*#__PURE__*/function (_super) {
|
|
1896
|
-
__extends
|
|
1780
|
+
__extends(Action, _super);
|
|
1897
1781
|
function Action() {
|
|
1898
1782
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1899
1783
|
}
|
|
@@ -1912,13 +1796,13 @@ var Action = /*#__PURE__*/function (_super) {
|
|
|
1912
1796
|
};
|
|
1913
1797
|
var _a = this.props,
|
|
1914
1798
|
init = _a.init,
|
|
1915
|
-
observerProps = __rest
|
|
1799
|
+
observerProps = __rest(_a, ["init"]);
|
|
1916
1800
|
var observer = createObserver(observerCandidate, observerProps, function () {
|
|
1917
1801
|
isComplete = true;
|
|
1918
1802
|
subscription.stop();
|
|
1919
1803
|
});
|
|
1920
1804
|
var api = init(observer);
|
|
1921
|
-
subscription = api ? __assign
|
|
1805
|
+
subscription = api ? __assign(__assign({}, subscription), api) : subscription;
|
|
1922
1806
|
if (observerCandidate.registerParent) {
|
|
1923
1807
|
observerCandidate.registerParent(subscription);
|
|
1924
1808
|
}
|
|
@@ -1932,7 +1816,7 @@ var action = function (init) {
|
|
|
1932
1816
|
};
|
|
1933
1817
|
|
|
1934
1818
|
var BaseMulticast = /*#__PURE__*/function (_super) {
|
|
1935
|
-
__extends
|
|
1819
|
+
__extends(BaseMulticast, _super);
|
|
1936
1820
|
function BaseMulticast() {
|
|
1937
1821
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
1938
1822
|
_this.subscribers = [];
|
|
@@ -1992,7 +1876,7 @@ var isSingleValue = function (v) {
|
|
|
1992
1876
|
return typeOfV === 'string' || typeOfV === 'number';
|
|
1993
1877
|
};
|
|
1994
1878
|
var ValueReaction = /*#__PURE__*/function (_super) {
|
|
1995
|
-
__extends
|
|
1879
|
+
__extends(ValueReaction, _super);
|
|
1996
1880
|
function ValueReaction(props) {
|
|
1997
1881
|
var _this = _super.call(this, props) || this;
|
|
1998
1882
|
_this.scheduleVelocityCheck = function () {
|
|
@@ -2242,7 +2126,7 @@ var reduceArrayValue = function (i) {
|
|
|
2242
2126
|
var createArrayAction = function (action, props, vectorKeys) {
|
|
2243
2127
|
var firstVectorKey = vectorKeys[0];
|
|
2244
2128
|
var actionList = props[firstVectorKey].map(function (v, i) {
|
|
2245
|
-
var childActionProps = vectorKeys.reduce(reduceArrayValue(i), __assign
|
|
2129
|
+
var childActionProps = vectorKeys.reduce(reduceArrayValue(i), __assign({}, props));
|
|
2246
2130
|
return getActionCreator(v)(action, childActionProps);
|
|
2247
2131
|
});
|
|
2248
2132
|
return parallel$1.apply(void 0, actionList);
|
|
@@ -2256,7 +2140,7 @@ var reduceObjectValue = function (key) {
|
|
|
2256
2140
|
var createObjectAction = function (action, props, vectorKeys) {
|
|
2257
2141
|
var firstVectorKey = vectorKeys[0];
|
|
2258
2142
|
var actionMap = Object.keys(props[firstVectorKey]).reduce(function (map, key) {
|
|
2259
|
-
var childActionProps = vectorKeys.reduce(reduceObjectValue(key), __assign
|
|
2143
|
+
var childActionProps = vectorKeys.reduce(reduceObjectValue(key), __assign({}, props));
|
|
2260
2144
|
map[key] = getActionCreator(props[firstVectorKey][key])(action, childActionProps);
|
|
2261
2145
|
return map;
|
|
2262
2146
|
}, {});
|
|
@@ -2265,18 +2149,18 @@ var createObjectAction = function (action, props, vectorKeys) {
|
|
|
2265
2149
|
var createUnitAction = function (action, _a) {
|
|
2266
2150
|
var from = _a.from,
|
|
2267
2151
|
to = _a.to,
|
|
2268
|
-
props = __rest
|
|
2152
|
+
props = __rest(_a, ["from", "to"]);
|
|
2269
2153
|
var unitType = findUnitType(from) || findUnitType(to);
|
|
2270
2154
|
var transform = unitType.transform,
|
|
2271
2155
|
parse = unitType.parse;
|
|
2272
|
-
return action(__assign
|
|
2156
|
+
return action(__assign(__assign({}, props), { from: typeof from === 'string' ? parse(from) : from, to: typeof to === 'string' ? parse(to) : to })).pipe(transform);
|
|
2273
2157
|
};
|
|
2274
2158
|
var createMixerAction = function (mixer) {
|
|
2275
2159
|
return function (action, _a) {
|
|
2276
2160
|
var from = _a.from,
|
|
2277
2161
|
to = _a.to,
|
|
2278
|
-
props = __rest
|
|
2279
|
-
return action(__assign
|
|
2162
|
+
props = __rest(_a, ["from", "to"]);
|
|
2163
|
+
return action(__assign(__assign({}, props), { from: 0, to: 1 })).pipe(mixer(from, to));
|
|
2280
2164
|
};
|
|
2281
2165
|
};
|
|
2282
2166
|
var createColorAction = /*#__PURE__*/createMixerAction(mixColor);
|
|
@@ -2622,7 +2506,7 @@ var keyframes = function (_a) {
|
|
|
2622
2506
|
ease = _b === void 0 ? linear : _b,
|
|
2623
2507
|
times = _a.times,
|
|
2624
2508
|
values = _a.values,
|
|
2625
|
-
tweenProps = __rest
|
|
2509
|
+
tweenProps = __rest(_a, ["easings", "ease", "times", "values"]);
|
|
2626
2510
|
easings = Array.isArray(easings) ? easings : defaultEasings(values, easings);
|
|
2627
2511
|
times = times || defaultTimings(values);
|
|
2628
2512
|
var scrubbers = easings.map(function (easing, i) {
|
|
@@ -2632,7 +2516,7 @@ var keyframes = function (_a) {
|
|
|
2632
2516
|
ease: easing
|
|
2633
2517
|
});
|
|
2634
2518
|
});
|
|
2635
|
-
return tween(__assign
|
|
2519
|
+
return tween(__assign(__assign({}, tweenProps), { ease: ease })).applyMiddleware(function (update) {
|
|
2636
2520
|
return interpolateScrubbers(times, scrubbers, update);
|
|
2637
2521
|
});
|
|
2638
2522
|
};
|
|
@@ -2876,7 +2760,7 @@ var index$1 = function (_a) {
|
|
|
2876
2760
|
}
|
|
2877
2761
|
var x = _a.x,
|
|
2878
2762
|
y = _a.y,
|
|
2879
|
-
props = __rest
|
|
2763
|
+
props = __rest(_a, ["x", "y"]);
|
|
2880
2764
|
if (x !== undefined || y !== undefined) {
|
|
2881
2765
|
var applyXOffset_1 = applyOffset(x || 0);
|
|
2882
2766
|
var applyYOffset_1 = applyOffset(y || 0);
|
|
@@ -2950,7 +2834,7 @@ var steps$1 = function (st, min, max) {
|
|
|
2950
2834
|
};
|
|
2951
2835
|
var transformMap = function (childTransformers) {
|
|
2952
2836
|
return function (v) {
|
|
2953
|
-
var output = __assign
|
|
2837
|
+
var output = __assign({}, v);
|
|
2954
2838
|
for (var key in childTransformers) {
|
|
2955
2839
|
if (childTransformers.hasOwnProperty(key)) {
|
|
2956
2840
|
var childTransformer = childTransformers[key];
|
|
@@ -2981,52 +2865,6 @@ var transformers = /*#__PURE__*/Object.freeze({
|
|
|
2981
2865
|
transformMap: transformMap
|
|
2982
2866
|
});
|
|
2983
2867
|
|
|
2984
|
-
/*! *****************************************************************************
|
|
2985
|
-
Copyright (c) Microsoft Corporation.
|
|
2986
|
-
|
|
2987
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
2988
|
-
purpose with or without fee is hereby granted.
|
|
2989
|
-
|
|
2990
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2991
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
2992
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2993
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
2994
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
2995
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
2996
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
2997
|
-
***************************************************************************** */
|
|
2998
|
-
|
|
2999
|
-
var __assign$5 = function() {
|
|
3000
|
-
__assign$5 = Object.assign || function __assign(t) {
|
|
3001
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
3002
|
-
s = arguments[i];
|
|
3003
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
3004
|
-
}
|
|
3005
|
-
return t;
|
|
3006
|
-
};
|
|
3007
|
-
return __assign$5.apply(this, arguments);
|
|
3008
|
-
};
|
|
3009
|
-
|
|
3010
|
-
function __rest$3(s, e) {
|
|
3011
|
-
var t = {};
|
|
3012
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
3013
|
-
t[p] = s[p];
|
|
3014
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
3015
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
3016
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
3017
|
-
t[p[i]] = s[p[i]];
|
|
3018
|
-
}
|
|
3019
|
-
return t;
|
|
3020
|
-
}
|
|
3021
|
-
|
|
3022
|
-
function __spreadArrays$1() {
|
|
3023
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
3024
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
3025
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
3026
|
-
r[k] = a[j];
|
|
3027
|
-
return r;
|
|
3028
|
-
}
|
|
3029
|
-
|
|
3030
2868
|
var getPoseValues = function (_a) {
|
|
3031
2869
|
var transition = _a.transition,
|
|
3032
2870
|
flip = _a.flip,
|
|
@@ -3039,7 +2877,7 @@ var getPoseValues = function (_a) {
|
|
|
3039
2877
|
preTransition = _a.preTransition,
|
|
3040
2878
|
applyAtStart = _a.applyAtStart,
|
|
3041
2879
|
applyAtEnd = _a.applyAtEnd,
|
|
3042
|
-
props = __rest
|
|
2880
|
+
props = __rest(_a, ["transition", "flip", "delay", "delayChildren", "staggerChildren", "staggerDirection", "afterChildren", "beforeChildren", "preTransition", "applyAtStart", "applyAtEnd"]);
|
|
3043
2881
|
return props;
|
|
3044
2882
|
};
|
|
3045
2883
|
var selectPoses = function (_a) {
|
|
@@ -3051,7 +2889,7 @@ var selectPoses = function (_a) {
|
|
|
3051
2889
|
onChange = _a.onChange,
|
|
3052
2890
|
passive = _a.passive,
|
|
3053
2891
|
initialPose = _a.initialPose,
|
|
3054
|
-
poses = __rest
|
|
2892
|
+
poses = __rest(_a, ["label", "props", "values", "parentValues", "ancestorValues", "onChange", "passive", "initialPose"]);
|
|
3055
2893
|
return poses;
|
|
3056
2894
|
};
|
|
3057
2895
|
var selectAllValues = function (values, selectValue) {
|
|
@@ -3151,7 +2989,7 @@ var createPoseSetter = function (setterProps) {
|
|
|
3151
2989
|
var _a = nextProps.delay,
|
|
3152
2990
|
delay = _a === void 0 ? 0 : _a;
|
|
3153
2991
|
var hasChildren = children.size;
|
|
3154
|
-
var baseTransitionProps = __assign
|
|
2992
|
+
var baseTransitionProps = __assign(__assign({}, props), nextProps);
|
|
3155
2993
|
var nextPose = poses[next];
|
|
3156
2994
|
var getChildAnimations = function () {
|
|
3157
2995
|
return hasChildren && propagate ? startChildAnimations(children, next, nextPose, baseTransitionProps) : [];
|
|
@@ -3177,11 +3015,11 @@ var createPoseSetter = function (setterProps) {
|
|
|
3177
3015
|
valuePoses.splice(insertionIndex, 0, next);
|
|
3178
3016
|
return insertionIndex === 0 ? new Promise(function (complete) {
|
|
3179
3017
|
var value = values.get(key);
|
|
3180
|
-
var transitionProps = __assign
|
|
3018
|
+
var transitionProps = __assign(__assign({}, baseTransitionProps), { key: key,
|
|
3181
3019
|
value: value });
|
|
3182
3020
|
var target = resolveTarget(value, resolveProp(nextPose[key], transitionProps));
|
|
3183
3021
|
if (activeActions.has(key)) stopAction(activeActions.get(key));
|
|
3184
|
-
var resolveTransitionProps = __assign
|
|
3022
|
+
var resolveTransitionProps = __assign(__assign({ to: target }, transitionProps), getTransitionProps(value, target, transitionProps));
|
|
3185
3023
|
var transition = resolveTransition(getTransition, key, value, resolveTransitionProps, convertTransitionDefinition, getInstantTransition);
|
|
3186
3024
|
var poseDelay = delay || resolveProp(nextPose.delay, transitionProps);
|
|
3187
3025
|
if (poseDelay) {
|
|
@@ -3205,7 +3043,7 @@ var createPoseSetter = function (setterProps) {
|
|
|
3205
3043
|
});
|
|
3206
3044
|
}
|
|
3207
3045
|
}
|
|
3208
|
-
return Promise.all(__spreadArrays
|
|
3046
|
+
return Promise.all(__spreadArrays(getParentAnimations(), getChildAnimations()));
|
|
3209
3047
|
};
|
|
3210
3048
|
};
|
|
3211
3049
|
|
|
@@ -3331,7 +3169,7 @@ var createValueMap = function (props) {
|
|
|
3331
3169
|
};
|
|
3332
3170
|
|
|
3333
3171
|
var applyDefaultTransition = function (pose, key, defaultTransitions) {
|
|
3334
|
-
return __assign
|
|
3172
|
+
return __assign(__assign({}, pose), { transition: defaultTransitions.has(key) ? defaultTransitions.get(key) : defaultTransitions.get('default') });
|
|
3335
3173
|
};
|
|
3336
3174
|
var generateTransitions = function (poses, defaultTransitions) {
|
|
3337
3175
|
Object.keys(poses).forEach(function (key) {
|
|
@@ -3385,7 +3223,7 @@ var poseFactory = function (_a) {
|
|
|
3385
3223
|
var poses = generateTransitions(selectPoses(config), defaultTransitions);
|
|
3386
3224
|
var _b = config.props,
|
|
3387
3225
|
props = _b === void 0 ? {} : _b;
|
|
3388
|
-
if (getDefaultProps) props = __assign
|
|
3226
|
+
if (getDefaultProps) props = __assign(__assign({}, getDefaultProps(config)), props);
|
|
3389
3227
|
var passive = config.passive,
|
|
3390
3228
|
userSetValues = config.values,
|
|
3391
3229
|
_c = config.initialPose,
|
|
@@ -3460,10 +3298,10 @@ var poseFactory = function (_a) {
|
|
|
3460
3298
|
},
|
|
3461
3299
|
has: has,
|
|
3462
3300
|
setProps: function (newProps) {
|
|
3463
|
-
return state.props = __assign
|
|
3301
|
+
return state.props = __assign(__assign({}, state.props), newProps);
|
|
3464
3302
|
},
|
|
3465
3303
|
_addChild: function (childConfig, factory) {
|
|
3466
|
-
var child = factory(__assign
|
|
3304
|
+
var child = factory(__assign(__assign({ initialPose: initialPose }, childConfig), { ancestorValues: __spreadArrays([{ label: config.label, values: values }], ancestorValues) }));
|
|
3467
3305
|
children.add(child);
|
|
3468
3306
|
return child;
|
|
3469
3307
|
},
|
|
@@ -3502,18 +3340,18 @@ See the Apache Version 2.0 License for specific language governing permissions
|
|
|
3502
3340
|
and limitations under the License.
|
|
3503
3341
|
***************************************************************************** */
|
|
3504
3342
|
|
|
3505
|
-
var __assign$
|
|
3506
|
-
__assign$
|
|
3343
|
+
var __assign$2 = function () {
|
|
3344
|
+
__assign$2 = Object.assign || function __assign(t) {
|
|
3507
3345
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
3508
3346
|
s = arguments[i];
|
|
3509
3347
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
3510
3348
|
}
|
|
3511
3349
|
return t;
|
|
3512
3350
|
};
|
|
3513
|
-
return __assign$
|
|
3351
|
+
return __assign$2.apply(this, arguments);
|
|
3514
3352
|
};
|
|
3515
3353
|
|
|
3516
|
-
function __rest$
|
|
3354
|
+
function __rest$1(s, e) {
|
|
3517
3355
|
var t = {};
|
|
3518
3356
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
3519
3357
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
@@ -3630,12 +3468,12 @@ var intelligentTransition = {
|
|
|
3630
3468
|
opacity: linearTween,
|
|
3631
3469
|
default: tween
|
|
3632
3470
|
};
|
|
3633
|
-
var dragAction = /*#__PURE__*/__assign$
|
|
3471
|
+
var dragAction = /*#__PURE__*/__assign$2( /*#__PURE__*/__assign$2({}, intelligentTransition), { x: /*#__PURE__*/createPointer(pointerX, 'left', 'right', BoundingBoxDimension.width), y: /*#__PURE__*/createPointer(pointerY, 'top', 'bottom', BoundingBoxDimension.height) });
|
|
3634
3472
|
var justAxis = function (_a) {
|
|
3635
3473
|
var from = _a.from;
|
|
3636
3474
|
return just(from);
|
|
3637
3475
|
};
|
|
3638
|
-
var intelligentDragEnd = /*#__PURE__*/__assign$
|
|
3476
|
+
var intelligentDragEnd = /*#__PURE__*/__assign$2( /*#__PURE__*/__assign$2({}, intelligentTransition), { x: justAxis, y: justAxis });
|
|
3639
3477
|
var defaultTransitions = /*#__PURE__*/new Map([['default', intelligentTransition], ['drag', dragAction], ['dragEnd', intelligentDragEnd]]);
|
|
3640
3478
|
|
|
3641
3479
|
var animationLookup = {
|
|
@@ -3705,7 +3543,7 @@ var getAction = function (v, _a, _b) {
|
|
|
3705
3543
|
var _c = _a.type,
|
|
3706
3544
|
type = _c === void 0 ? 'tween' : _c,
|
|
3707
3545
|
definedEase = _a.ease,
|
|
3708
|
-
def = __rest$
|
|
3546
|
+
def = __rest$1(_a, ["type", "ease"]);
|
|
3709
3547
|
invariant(animationLookup[type] !== undefined, "Invalid transition type '" + type + "'. Valid transition types are: tween, spring, decay, physics and keyframes.");
|
|
3710
3548
|
var ease;
|
|
3711
3549
|
if (type === 'tween') {
|
|
@@ -3730,7 +3568,7 @@ var getAction = function (v, _a, _b) {
|
|
|
3730
3568
|
velocity: velocity,
|
|
3731
3569
|
ease: ease
|
|
3732
3570
|
} : { ease: ease };
|
|
3733
|
-
return animationLookup[type](__assign$
|
|
3571
|
+
return animationLookup[type](__assign$2(__assign$2({}, baseProps), def));
|
|
3734
3572
|
};
|
|
3735
3573
|
var isAction = function (action$$1) {
|
|
3736
3574
|
return typeof action$$1.start !== 'undefined';
|
|
@@ -3815,7 +3653,7 @@ var pose = function (_a) {
|
|
|
3815
3653
|
min = def.min,
|
|
3816
3654
|
max = def.max,
|
|
3817
3655
|
round = def.round,
|
|
3818
|
-
remainingDef = __rest$
|
|
3656
|
+
remainingDef = __rest$1(def, ["delay", "min", "max", "round"]);
|
|
3819
3657
|
var action$$1 = getAction(val, remainingDef, props);
|
|
3820
3658
|
var outputPipe = [];
|
|
3821
3659
|
if (delay$$1) action$$1 = addActionDelay(delay$$1, action$$1);
|
|
@@ -3997,7 +3835,7 @@ var explicitlyFlipPose = function (state, nextPose) {
|
|
|
3997
3835
|
bottom = nextPose.bottom,
|
|
3998
3836
|
right = nextPose.right,
|
|
3999
3837
|
position = nextPose.position,
|
|
4000
|
-
remainingPose = __rest$
|
|
3838
|
+
remainingPose = __rest$1(nextPose, ["width", "height", "top", "left", "bottom", "right", "position"]);
|
|
4001
3839
|
var propsToSet = positionalProps.concat('position').reduce(function (acc, key) {
|
|
4002
3840
|
if (nextPose[key] !== undefined) {
|
|
4003
3841
|
acc[key] = resolveProp$1(nextPose[key], state.props);
|
|
@@ -4109,7 +3947,7 @@ var convertPositionalUnits = function (state, nextPose) {
|
|
|
4109
3947
|
changedPositionalKeys.push(key);
|
|
4110
3948
|
if (!applyAtEndHasBeenCopied) {
|
|
4111
3949
|
applyAtEndHasBeenCopied = true;
|
|
4112
|
-
nextPose.applyAtEnd = nextPose.applyAtEnd ? __assign$
|
|
3950
|
+
nextPose.applyAtEnd = nextPose.applyAtEnd ? __assign$2({}, nextPose.applyAtEnd) : {};
|
|
4113
3951
|
}
|
|
4114
3952
|
nextPose.applyAtEnd[key] = nextPose.applyAtEnd[key] || nextPose[key];
|
|
4115
3953
|
setValue(state, key, to);
|
|
@@ -4165,8 +4003,8 @@ var createPoseConfig = function (element, _a) {
|
|
|
4165
4003
|
focusable = _a.focusable,
|
|
4166
4004
|
pressable = _a.pressable,
|
|
4167
4005
|
dragBounds = _a.dragBounds,
|
|
4168
|
-
config = __rest$
|
|
4169
|
-
var poseConfig = __assign$
|
|
4006
|
+
config = __rest$1(_a, ["onDragStart", "onDragEnd", "onPressStart", "onPressEnd", "draggable", "hoverable", "focusable", "pressable", "dragBounds"]);
|
|
4007
|
+
var poseConfig = __assign$2(__assign$2({ flip: {} }, config), { props: __assign$2(__assign$2({}, config.props), { onDragStart: onDragStart,
|
|
4170
4008
|
onDragEnd: onDragEnd,
|
|
4171
4009
|
onPressStart: onPressStart,
|
|
4172
4010
|
onPressEnd: onPressEnd,
|
|
@@ -4180,8 +4018,8 @@ var createPoseConfig = function (element, _a) {
|
|
|
4180
4018
|
var _b = dragPoses(draggable),
|
|
4181
4019
|
drag = _b.drag,
|
|
4182
4020
|
dragEnd = _b.dragEnd;
|
|
4183
|
-
poseConfig.drag = __assign$
|
|
4184
|
-
poseConfig.dragEnd = __assign$
|
|
4021
|
+
poseConfig.drag = __assign$2(__assign$2({}, drag), poseConfig.drag);
|
|
4022
|
+
poseConfig.dragEnd = __assign$2(__assign$2({}, dragEnd), poseConfig.dragEnd);
|
|
4185
4023
|
}
|
|
4186
4024
|
return poseConfig;
|
|
4187
4025
|
};
|
|
@@ -4189,7 +4027,7 @@ var domPose = /*#__PURE__*/pose({
|
|
|
4189
4027
|
posePriority: ['drag', 'press', 'focus', 'hover'],
|
|
4190
4028
|
transformPose: function (_a, name, state) {
|
|
4191
4029
|
var flip = _a.flip,
|
|
4192
|
-
pose$$1 = __rest$
|
|
4030
|
+
pose$$1 = __rest$1(_a, ["flip"]);
|
|
4193
4031
|
if (isFlipPose(flip, name, state)) {
|
|
4194
4032
|
return flipPose(state, pose$$1);
|
|
4195
4033
|
} else if (isPositional(pose$$1)) {
|
|
@@ -4227,7 +4065,7 @@ var domPose = /*#__PURE__*/pose({
|
|
|
4227
4065
|
var props = _a.props,
|
|
4228
4066
|
activeActions = _a.activeActions;
|
|
4229
4067
|
var measure = props.dimensions.measure;
|
|
4230
|
-
var poserApi = __assign$
|
|
4068
|
+
var poserApi = __assign$2(__assign$2({}, api), { addChild: function (element, childConfig) {
|
|
4231
4069
|
return api._addChild(createPoseConfig(element, childConfig), domPose);
|
|
4232
4070
|
}, measure: measure, flip: function (op) {
|
|
4233
4071
|
if (op) {
|
|
@@ -7255,104 +7093,6 @@ var Imposter = function Imposter(_ref) {
|
|
|
7255
7093
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement(React.Fragment, null)));
|
|
7256
7094
|
};
|
|
7257
7095
|
|
|
7258
|
-
/*! *****************************************************************************
|
|
7259
|
-
Copyright (c) Microsoft Corporation.
|
|
7260
|
-
|
|
7261
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
7262
|
-
purpose with or without fee is hereby granted.
|
|
7263
|
-
|
|
7264
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
7265
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
7266
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
7267
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
7268
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
7269
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
7270
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
7271
|
-
***************************************************************************** */
|
|
7272
|
-
/* global Reflect, Promise */
|
|
7273
|
-
|
|
7274
|
-
var extendStatics$2 = function(d, b) {
|
|
7275
|
-
extendStatics$2 = Object.setPrototypeOf ||
|
|
7276
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
7277
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
7278
|
-
return extendStatics$2(d, b);
|
|
7279
|
-
};
|
|
7280
|
-
|
|
7281
|
-
function __extends$2(d, b) {
|
|
7282
|
-
extendStatics$2(d, b);
|
|
7283
|
-
function __() { this.constructor = d; }
|
|
7284
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
7285
|
-
}
|
|
7286
|
-
|
|
7287
|
-
var __assign$7 = function() {
|
|
7288
|
-
__assign$7 = Object.assign || function __assign(t) {
|
|
7289
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
7290
|
-
s = arguments[i];
|
|
7291
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7292
|
-
}
|
|
7293
|
-
return t;
|
|
7294
|
-
};
|
|
7295
|
-
return __assign$7.apply(this, arguments);
|
|
7296
|
-
};
|
|
7297
|
-
|
|
7298
|
-
function __rest$5(s, e) {
|
|
7299
|
-
var t = {};
|
|
7300
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
7301
|
-
t[p] = s[p];
|
|
7302
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7303
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7304
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
7305
|
-
t[p[i]] = s[p[i]];
|
|
7306
|
-
}
|
|
7307
|
-
return t;
|
|
7308
|
-
}
|
|
7309
|
-
|
|
7310
|
-
function __spreadArrays$2() {
|
|
7311
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
7312
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
7313
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
7314
|
-
r[k] = a[j];
|
|
7315
|
-
return r;
|
|
7316
|
-
}
|
|
7317
|
-
|
|
7318
|
-
/*! *****************************************************************************
|
|
7319
|
-
Copyright (c) Microsoft Corporation.
|
|
7320
|
-
|
|
7321
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
7322
|
-
purpose with or without fee is hereby granted.
|
|
7323
|
-
|
|
7324
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
7325
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
7326
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
7327
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
7328
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
7329
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
7330
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
7331
|
-
***************************************************************************** */
|
|
7332
|
-
|
|
7333
|
-
var __assign$8 = function() {
|
|
7334
|
-
__assign$8 = Object.assign || function __assign(t) {
|
|
7335
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
7336
|
-
s = arguments[i];
|
|
7337
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7338
|
-
}
|
|
7339
|
-
return t;
|
|
7340
|
-
};
|
|
7341
|
-
return __assign$8.apply(this, arguments);
|
|
7342
|
-
};
|
|
7343
|
-
|
|
7344
|
-
function __rest$6(s, e) {
|
|
7345
|
-
var t = {};
|
|
7346
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
7347
|
-
t[p] = s[p];
|
|
7348
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7349
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7350
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
7351
|
-
t[p[i]] = s[p[i]];
|
|
7352
|
-
}
|
|
7353
|
-
return t;
|
|
7354
|
-
}
|
|
7355
|
-
|
|
7356
7096
|
var Observer$1 = /*#__PURE__*/function () {
|
|
7357
7097
|
function Observer(_a, observer) {
|
|
7358
7098
|
var _this = this;
|
|
@@ -7415,18 +7155,18 @@ var Action$1 = /*#__PURE__*/function () {
|
|
|
7415
7155
|
};
|
|
7416
7156
|
var _a = this.props,
|
|
7417
7157
|
init = _a.init,
|
|
7418
|
-
observerProps = __rest
|
|
7158
|
+
observerProps = __rest(_a, ["init"]);
|
|
7419
7159
|
var observer = createObserver$1(observerCandidate, observerProps, function () {
|
|
7420
7160
|
isComplete = true;
|
|
7421
7161
|
subscription.stop();
|
|
7422
7162
|
});
|
|
7423
7163
|
var api = init(observer);
|
|
7424
|
-
subscription = api ? __assign
|
|
7164
|
+
subscription = api ? __assign({}, subscription, api) : subscription;
|
|
7425
7165
|
if (isComplete) subscription.stop();
|
|
7426
7166
|
return subscription;
|
|
7427
7167
|
};
|
|
7428
7168
|
Action.prototype.applyMiddleware = function (middleware) {
|
|
7429
|
-
return this.create(__assign
|
|
7169
|
+
return this.create(__assign({}, this.props, { middleware: this.props.middleware ? [middleware].concat(this.props.middleware) : [middleware] }));
|
|
7430
7170
|
};
|
|
7431
7171
|
Action.prototype.pipe = function () {
|
|
7432
7172
|
var funcs = [];
|
|
@@ -7479,18 +7219,18 @@ var createAction$1 = function (action, props) {
|
|
|
7479
7219
|
var createUnitAction$1 = function (action, _a) {
|
|
7480
7220
|
var from = _a.from,
|
|
7481
7221
|
to = _a.to,
|
|
7482
|
-
props = __rest
|
|
7222
|
+
props = __rest(_a, ["from", "to"]);
|
|
7483
7223
|
var unitType = findUnitType$1(from) || findUnitType$1(to);
|
|
7484
7224
|
var transform = unitType.transform,
|
|
7485
7225
|
parse = unitType.parse;
|
|
7486
|
-
return action(__assign
|
|
7226
|
+
return action(__assign({}, props, { from: typeof from === 'string' ? parse(from) : from, to: typeof to === 'string' ? parse(to) : to })).pipe(transform);
|
|
7487
7227
|
};
|
|
7488
7228
|
var createMixerAction$1 = function (mixer) {
|
|
7489
7229
|
return function (action, _a) {
|
|
7490
7230
|
var from = _a.from,
|
|
7491
7231
|
to = _a.to,
|
|
7492
|
-
props = __rest
|
|
7493
|
-
return action(__assign
|
|
7232
|
+
props = __rest(_a, ["from", "to"]);
|
|
7233
|
+
return action(__assign({}, props, { from: 0, to: 1 })).pipe(mixer(from, to));
|
|
7494
7234
|
};
|
|
7495
7235
|
};
|
|
7496
7236
|
var createColorAction$1 = /*#__PURE__*/createMixerAction$1(mixColor);
|
|
@@ -7703,7 +7443,7 @@ var inertia = function (_a) {
|
|
|
7703
7443
|
};
|
|
7704
7444
|
var startSpring = function (props) {
|
|
7705
7445
|
isSpring = true;
|
|
7706
|
-
startAnimation(vectorSpring$1(__assign
|
|
7446
|
+
startAnimation(vectorSpring$1(__assign({}, props, { to: isLessThanMin(props.from) ? min : max, stiffness: bounceStiffness, damping: bounceDamping, restDelta: restDelta })));
|
|
7707
7447
|
};
|
|
7708
7448
|
if (isOutOfBounds(from)) {
|
|
7709
7449
|
startSpring({ from: from, velocity: velocity });
|
|
@@ -7935,7 +7675,7 @@ var keyframes$1 = function (_a) {
|
|
|
7935
7675
|
ease = _b === void 0 ? linear : _b,
|
|
7936
7676
|
times = _a.times,
|
|
7937
7677
|
values = _a.values,
|
|
7938
|
-
tweenProps = __rest
|
|
7678
|
+
tweenProps = __rest(_a, ["easings", "ease", "times", "values"]);
|
|
7939
7679
|
easings = Array.isArray(easings) ? easings : defaultEasings$1(values, easings);
|
|
7940
7680
|
times = times || defaultTimings$1(values);
|
|
7941
7681
|
var scrubbers = easings.map(function (easing, i) {
|
|
@@ -7945,7 +7685,7 @@ var keyframes$1 = function (_a) {
|
|
|
7945
7685
|
ease: easing
|
|
7946
7686
|
});
|
|
7947
7687
|
});
|
|
7948
|
-
return tween$1(__assign
|
|
7688
|
+
return tween$1(__assign({}, tweenProps, { ease: ease })).applyMiddleware(function (update) {
|
|
7949
7689
|
return interpolateScrubbers$1(times, scrubbers, update);
|
|
7950
7690
|
});
|
|
7951
7691
|
};
|
|
@@ -8147,7 +7887,7 @@ var MotionValue = /** @class */ (function () {
|
|
|
8147
7887
|
*/
|
|
8148
7888
|
MotionValue.prototype.addChild = function (config) {
|
|
8149
7889
|
if (config === void 0) { config = {}; }
|
|
8150
|
-
var child = new MotionValue(this.current, __assign
|
|
7890
|
+
var child = new MotionValue(this.current, __assign({ parent: this }, config));
|
|
8151
7891
|
if (!this.children)
|
|
8152
7892
|
this.children = new Set();
|
|
8153
7893
|
this.children.add(child);
|
|
@@ -8589,7 +8329,7 @@ var buildStyleAttr = function (values, styleProp, isStatic) {
|
|
|
8589
8329
|
? transformTemplate({}, styleProp.transform)
|
|
8590
8330
|
: transformTemplate;
|
|
8591
8331
|
}
|
|
8592
|
-
return buildStyleProperty(__assign
|
|
8332
|
+
return buildStyleProperty(__assign(__assign({}, styleProp), motionValueStyles), !isStatic);
|
|
8593
8333
|
};
|
|
8594
8334
|
var useMotionStyles = function (values, styleProp, isStatic, transformValues) {
|
|
8595
8335
|
if (styleProp === void 0) { styleProp = {}; }
|
|
@@ -8643,7 +8383,7 @@ var auto$1 = {
|
|
|
8643
8383
|
parse: function (v) { return v; },
|
|
8644
8384
|
};
|
|
8645
8385
|
var dimensionTypes = [number, px, percent, degrees, vw, vh, auto$1];
|
|
8646
|
-
var valueTypes$1 = __spreadArrays
|
|
8386
|
+
var valueTypes$1 = __spreadArrays(dimensionTypes, [color, complex]);
|
|
8647
8387
|
var testValueType$1 = function (v) { return function (type) { return type.test(v); }; };
|
|
8648
8388
|
var getDimensionValueType = function (v) {
|
|
8649
8389
|
return dimensionTypes.find(testValueType$1(v));
|
|
@@ -8696,7 +8436,7 @@ var getDefaultTransition = function (valueKey, to) {
|
|
|
8696
8436
|
transitionFactory =
|
|
8697
8437
|
defaultTransitions$1[valueKey] || defaultTransitions$1.default;
|
|
8698
8438
|
}
|
|
8699
|
-
return __assign
|
|
8439
|
+
return __assign({ to: to }, transitionFactory(to));
|
|
8700
8440
|
};
|
|
8701
8441
|
|
|
8702
8442
|
/**
|
|
@@ -8792,9 +8532,9 @@ var transitionOptionParser = {
|
|
|
8792
8532
|
return opts;
|
|
8793
8533
|
},
|
|
8794
8534
|
keyframes: function (_a) {
|
|
8795
|
-
var from = _a.from, to = _a.to, velocity = _a.velocity, opts = __rest
|
|
8535
|
+
var from = _a.from, to = _a.to, velocity = _a.velocity, opts = __rest(_a, ["from", "to", "velocity"]);
|
|
8796
8536
|
if (opts.values && opts.values[0] === null) {
|
|
8797
|
-
var values = __spreadArrays
|
|
8537
|
+
var values = __spreadArrays(opts.values);
|
|
8798
8538
|
values[0] = from;
|
|
8799
8539
|
opts.values = values;
|
|
8800
8540
|
}
|
|
@@ -8808,7 +8548,7 @@ var transitionOptionParser = {
|
|
|
8808
8548
|
},
|
|
8809
8549
|
};
|
|
8810
8550
|
var isTransitionDefined = function (_a) {
|
|
8811
|
-
var when = _a.when, delay = _a.delay, delayChildren = _a.delayChildren, staggerChildren = _a.staggerChildren, staggerDirection = _a.staggerDirection, transition = __rest
|
|
8551
|
+
var when = _a.when, delay = _a.delay, delayChildren = _a.delayChildren, staggerChildren = _a.staggerChildren, staggerDirection = _a.staggerDirection, transition = __rest(_a, ["when", "delay", "delayChildren", "staggerChildren", "staggerDirection"]);
|
|
8812
8552
|
return Object.keys(transition).length;
|
|
8813
8553
|
};
|
|
8814
8554
|
var getTransitionDefinition = function (key, to, transitionDefinition) {
|
|
@@ -8818,7 +8558,7 @@ var getTransitionDefinition = function (key, to, transitionDefinition) {
|
|
|
8818
8558
|
// and see if there's any props remaining
|
|
8819
8559
|
if (transitionDefinition === undefined ||
|
|
8820
8560
|
!isTransitionDefined(transitionDefinition)) {
|
|
8821
|
-
return __assign
|
|
8561
|
+
return __assign({ delay: delay }, getDefaultTransition(key, to));
|
|
8822
8562
|
}
|
|
8823
8563
|
var valueTransitionDefinition = transitionDefinition[key] ||
|
|
8824
8564
|
transitionDefinition.default ||
|
|
@@ -8835,12 +8575,12 @@ var getTransitionDefinition = function (key, to, transitionDefinition) {
|
|
|
8835
8575
|
};
|
|
8836
8576
|
}
|
|
8837
8577
|
else if (isKeyframesTarget(to)) {
|
|
8838
|
-
return __assign
|
|
8578
|
+
return __assign(__assign({ values: to, duration: 0.8, delay: delay, ease: "linear" }, valueTransitionDefinition), {
|
|
8839
8579
|
// This animation must be keyframes if we're animating through an array
|
|
8840
8580
|
type: "keyframes" });
|
|
8841
8581
|
}
|
|
8842
8582
|
else {
|
|
8843
|
-
return __assign
|
|
8583
|
+
return __assign({ type: "tween", to: to,
|
|
8844
8584
|
delay: delay }, valueTransitionDefinition);
|
|
8845
8585
|
}
|
|
8846
8586
|
};
|
|
@@ -8857,12 +8597,12 @@ var getAnimation = function (key, value, target, transition) {
|
|
|
8857
8597
|
// for instance 100 to #fff. This might live better in Popmotion.
|
|
8858
8598
|
warning(isOriginAnimatable === isTargetAnimatable, "You are trying to animate " + key + " from \"" + origin + "\" to " + target + ". \"" + origin + "\" is not an animatable value - to enable this animation set " + origin + " to a value animatable to " + target + " via the `style` property.");
|
|
8859
8599
|
// Parse the `transition` prop and return options for the Popmotion animation
|
|
8860
|
-
var _a = getTransitionDefinition(key, target, transition), _b = _a.type, type = _b === void 0 ? "tween" : _b, transitionDefinition = __rest
|
|
8600
|
+
var _a = getTransitionDefinition(key, target, transition), _b = _a.type, type = _b === void 0 ? "tween" : _b, transitionDefinition = __rest(_a, ["type"]);
|
|
8861
8601
|
// If this is an animatable pair of values, return an animation, otherwise use `just`
|
|
8862
8602
|
var actionFactory = isOriginAnimatable && isTargetAnimatable
|
|
8863
8603
|
? transitions[type]
|
|
8864
8604
|
: just$1;
|
|
8865
|
-
var opts = preprocessOptions(type, __assign
|
|
8605
|
+
var opts = preprocessOptions(type, __assign({ from: origin, velocity: value.getVelocity() }, transitionDefinition));
|
|
8866
8606
|
// Convert duration from Framer Motion's seconds into Popmotion's milliseconds
|
|
8867
8607
|
if (isDurationAnimation(opts)) {
|
|
8868
8608
|
if (opts.duration) {
|
|
@@ -8880,10 +8620,10 @@ var getAnimation = function (key, value, target, transition) {
|
|
|
8880
8620
|
* @internal
|
|
8881
8621
|
*/
|
|
8882
8622
|
function startAnimation(key, value, target, _a) {
|
|
8883
|
-
var _b = _a.delay, delay$1$1 = _b === void 0 ? 0 : _b, transition = __rest
|
|
8623
|
+
var _b = _a.delay, delay$1$1 = _b === void 0 ? 0 : _b, transition = __rest(_a, ["delay"]);
|
|
8884
8624
|
return value.start(function (complete) {
|
|
8885
8625
|
var activeAnimation;
|
|
8886
|
-
var _a = getAnimation(key, value, target, transition), animationFactory = _a[0], _b = _a[1], valueDelay = _b.delay, options = __rest
|
|
8626
|
+
var _a = getAnimation(key, value, target, transition), animationFactory = _a[0], _b = _a[1], valueDelay = _b.delay, options = __rest(_b, ["delay"]);
|
|
8887
8627
|
if (valueDelay !== undefined) {
|
|
8888
8628
|
delay$1$1 = valueDelay;
|
|
8889
8629
|
}
|
|
@@ -9029,7 +8769,7 @@ var ValueAnimationControls = /** @class */ (function () {
|
|
|
9029
8769
|
var _this = this;
|
|
9030
8770
|
var _b = _a === void 0 ? {} : _a, _c = _b.isActive, isActive = _c === void 0 ? new Set() : _c, priority = _b.priority;
|
|
9031
8771
|
var _d = this.resolveVariant(definition), target = _d.target, transitionEnd = _d.transitionEnd;
|
|
9032
|
-
target = this.transformValues(__assign
|
|
8772
|
+
target = this.transformValues(__assign(__assign({}, target), transitionEnd));
|
|
9033
8773
|
return Object.keys(target).forEach(function (key) {
|
|
9034
8774
|
if (isActive.has(key))
|
|
9035
8775
|
return;
|
|
@@ -9119,7 +8859,7 @@ var ValueAnimationControls = /** @class */ (function () {
|
|
|
9119
8859
|
// resolve current and velocity
|
|
9120
8860
|
variant = variant(this.props.custom, getCurrent$1(this.values), getVelocity(this.values));
|
|
9121
8861
|
}
|
|
9122
|
-
var _a = variant.transition, transition = _a === void 0 ? this.defaultTransition : _a, transitionEnd = variant.transitionEnd, target = __rest
|
|
8862
|
+
var _a = variant.transition, transition = _a === void 0 ? this.defaultTransition : _a, transitionEnd = variant.transitionEnd, target = __rest(variant, ["transition", "transitionEnd"]);
|
|
9123
8863
|
return { transition: transition, transitionEnd: transitionEnd, target: target };
|
|
9124
8864
|
};
|
|
9125
8865
|
/**
|
|
@@ -9210,7 +8950,7 @@ var ValueAnimationControls = /** @class */ (function () {
|
|
|
9210
8950
|
ValueAnimationControls.prototype.applyVariantLabels = function (variantLabelList) {
|
|
9211
8951
|
var _this = this;
|
|
9212
8952
|
var isActive = new Set();
|
|
9213
|
-
var reversedList = __spreadArrays
|
|
8953
|
+
var reversedList = __spreadArrays(variantLabelList).reverse();
|
|
9214
8954
|
reversedList.forEach(function (key) {
|
|
9215
8955
|
var _a = _this.resolveVariant(_this.variants[key]), target = _a.target, transitionEnd = _a.transitionEnd;
|
|
9216
8956
|
if (transitionEnd) {
|
|
@@ -9281,7 +9021,7 @@ var ValueAnimationControls = /** @class */ (function () {
|
|
|
9281
9021
|
if (this.isAnimating.has(key))
|
|
9282
9022
|
continue;
|
|
9283
9023
|
this.isAnimating.add(key);
|
|
9284
|
-
animations.push(startAnimation(key, value, valueTarget, __assign
|
|
9024
|
+
animations.push(startAnimation(key, value, valueTarget, __assign({ delay: delay }, transition)));
|
|
9285
9025
|
}
|
|
9286
9026
|
var allAnimations = Promise.all(animations);
|
|
9287
9027
|
return transitionEnd
|
|
@@ -9292,7 +9032,7 @@ var ValueAnimationControls = /** @class */ (function () {
|
|
|
9292
9032
|
};
|
|
9293
9033
|
ValueAnimationControls.prototype.animateVariantLabels = function (variantLabels, opts) {
|
|
9294
9034
|
var _this = this;
|
|
9295
|
-
var animations = __spreadArrays
|
|
9035
|
+
var animations = __spreadArrays(variantLabels).reverse()
|
|
9296
9036
|
.map(function (label) { return _this.animateVariant(label, opts); });
|
|
9297
9037
|
return Promise.all(animations);
|
|
9298
9038
|
};
|
|
@@ -9736,7 +9476,7 @@ function useValueAnimationControls(config, props, subscribeToParentControls) {
|
|
|
9736
9476
|
// Remove reference to onAnimationComplete from controls. All the MotionValues
|
|
9737
9477
|
// are unsubscribed from this component separately. We let animations run out
|
|
9738
9478
|
// as they might be animating other components.
|
|
9739
|
-
var onAnimationComplete = props.onAnimationComplete, unmountProps = __rest
|
|
9479
|
+
var onAnimationComplete = props.onAnimationComplete, unmountProps = __rest(props, ["onAnimationComplete"]);
|
|
9740
9480
|
controls.setProps(unmountProps);
|
|
9741
9481
|
parentControls && parentControls.removeChild(controls);
|
|
9742
9482
|
};
|
|
@@ -10221,7 +9961,7 @@ var PanSession = /** @class */ (function () {
|
|
|
10221
9961
|
return;
|
|
10222
9962
|
var point = info.point;
|
|
10223
9963
|
var timestamp = getFrameData().timestamp;
|
|
10224
|
-
_this.history.push(__assign
|
|
9964
|
+
_this.history.push(__assign(__assign({}, point), { timestamp: timestamp }));
|
|
10225
9965
|
var _a = _this.handlers, onStart = _a.onStart, onMove = _a.onMove;
|
|
10226
9966
|
if (!isPanStarted) {
|
|
10227
9967
|
onStart && onStart(_this.lastMoveEvent, info);
|
|
@@ -10238,7 +9978,7 @@ var PanSession = /** @class */ (function () {
|
|
|
10238
9978
|
var initialInfo = transformPoint(info, this.transformPagePoint);
|
|
10239
9979
|
var point = initialInfo.point;
|
|
10240
9980
|
var timestamp = getFrameData().timestamp;
|
|
10241
|
-
this.history = [__assign
|
|
9981
|
+
this.history = [__assign(__assign({}, point), { timestamp: timestamp })];
|
|
10242
9982
|
var onSessionStart = handlers.onSessionStart;
|
|
10243
9983
|
onSessionStart &&
|
|
10244
9984
|
onSessionStart(event, getPanInfo(initialInfo, this.history));
|
|
@@ -10566,7 +10306,7 @@ var Gestures = {
|
|
|
10566
10306
|
return gestureProps.some(function (key) { return props.hasOwnProperty(key); });
|
|
10567
10307
|
},
|
|
10568
10308
|
Component: makeRenderlessComponent(function (_a) {
|
|
10569
|
-
var innerRef = _a.innerRef, props = __rest
|
|
10309
|
+
var innerRef = _a.innerRef, props = __rest(_a, ["innerRef"]);
|
|
10570
10310
|
useGestures(props, innerRef);
|
|
10571
10311
|
}),
|
|
10572
10312
|
};
|
|
@@ -10806,8 +10546,8 @@ var ComponentDragControls = /** @class */ (function () {
|
|
|
10806
10546
|
};
|
|
10807
10547
|
ComponentDragControls.prototype.updateProps = function (_a) {
|
|
10808
10548
|
var _this = this;
|
|
10809
|
-
var _b = _a.drag, drag = _b === void 0 ? false : _b, _c = _a.dragDirectionLock, dragDirectionLock = _c === void 0 ? false : _c, _d = _a.dragPropagation, dragPropagation = _d === void 0 ? false : _d, _e = _a.dragConstraints, dragConstraints = _e === void 0 ? false : _e, _f = _a.dragElastic, dragElastic = _f === void 0 ? true : _f, _g = _a.dragMomentum, dragMomentum = _g === void 0 ? true : _g, remainingProps = __rest
|
|
10810
|
-
this.props = __assign
|
|
10549
|
+
var _b = _a.drag, drag = _b === void 0 ? false : _b, _c = _a.dragDirectionLock, dragDirectionLock = _c === void 0 ? false : _c, _d = _a.dragPropagation, dragPropagation = _d === void 0 ? false : _d, _e = _a.dragConstraints, dragConstraints = _e === void 0 ? false : _e, _f = _a.dragElastic, dragElastic = _f === void 0 ? true : _f, _g = _a.dragMomentum, dragMomentum = _g === void 0 ? true : _g, remainingProps = __rest(_a, ["drag", "dragDirectionLock", "dragPropagation", "dragConstraints", "dragElastic", "dragMomentum"]);
|
|
10550
|
+
this.props = __assign({ drag: drag,
|
|
10811
10551
|
dragDirectionLock: dragDirectionLock,
|
|
10812
10552
|
dragPropagation: dragPropagation,
|
|
10813
10553
|
dragConstraints: dragConstraints,
|
|
@@ -10863,7 +10603,7 @@ var ComponentDragControls = /** @class */ (function () {
|
|
|
10863
10603
|
var bounceStiffness = dragElastic ? 200 : 1000000;
|
|
10864
10604
|
var bounceDamping = dragElastic ? 40 : 10000000;
|
|
10865
10605
|
var animationControls = _dragTransitionControls || _this.controls;
|
|
10866
|
-
var inertia = __assign
|
|
10606
|
+
var inertia = __assign(__assign({ type: "inertia", velocity: dragMomentum ? velocity[axis] : 0, bounceStiffness: bounceStiffness,
|
|
10867
10607
|
bounceDamping: bounceDamping, timeConstant: 750, restDelta: 1 }, dragTransition), transition);
|
|
10868
10608
|
var externalAxisMotionValue = axis === "x" ? _dragValueX : _dragValueY;
|
|
10869
10609
|
// If we're not animating on an externally-provided `MotionValue` we can use the
|
|
@@ -10944,7 +10684,7 @@ function bothAxis(handler) {
|
|
|
10944
10684
|
return [handler("x"), handler("y")];
|
|
10945
10685
|
}
|
|
10946
10686
|
function convertPanToDrag(info, point) {
|
|
10947
|
-
return __assign
|
|
10687
|
+
return __assign(__assign({}, info), { point: {
|
|
10948
10688
|
x: point.x ? point.x.get() : 0,
|
|
10949
10689
|
y: point.y ? point.y.get() : 0,
|
|
10950
10690
|
} });
|
|
@@ -11055,7 +10795,7 @@ function useDrag(props, ref, values, controls) {
|
|
|
11055
10795
|
var groupDragControls = props.dragControls;
|
|
11056
10796
|
var transformPagePoint = React.useContext(MotionPluginContext).transformPagePoint;
|
|
11057
10797
|
var dragControls = useConstant(function () { return new ComponentDragControls({ ref: ref, values: values, controls: controls }); });
|
|
11058
|
-
dragControls.updateProps(__assign
|
|
10798
|
+
dragControls.updateProps(__assign(__assign({}, props), { transformPagePoint: transformPagePoint }));
|
|
11059
10799
|
React.useEffect(function () { return groupDragControls && groupDragControls.subscribe(dragControls); }, [dragControls]);
|
|
11060
10800
|
React.useEffect(function () { return dragControls.mount(ref.current); }, []);
|
|
11061
10801
|
}
|
|
@@ -11064,7 +10804,7 @@ var Drag = {
|
|
|
11064
10804
|
key: "drag",
|
|
11065
10805
|
shouldRender: function (props) { return !!props.drag; },
|
|
11066
10806
|
Component: makeRenderlessComponent(function (_a) {
|
|
11067
|
-
var innerRef = _a.innerRef, values = _a.values, controls = _a.controls, props = __rest
|
|
10807
|
+
var innerRef = _a.innerRef, values = _a.values, controls = _a.controls, props = __rest(_a, ["innerRef", "values", "controls"]);
|
|
11068
10808
|
return useDrag(props, innerRef, values, controls);
|
|
11069
10809
|
}),
|
|
11070
10810
|
};
|
|
@@ -11116,14 +10856,14 @@ function getVariableValue(current, element, depth) {
|
|
|
11116
10856
|
* @internal
|
|
11117
10857
|
*/
|
|
11118
10858
|
function resolveCSSVariables(values, ref, _a, transitionEnd) {
|
|
11119
|
-
var target = __rest
|
|
10859
|
+
var target = __rest(_a, []);
|
|
11120
10860
|
var element = ref.current;
|
|
11121
10861
|
if (!(element instanceof HTMLElement))
|
|
11122
10862
|
return { target: target, transitionEnd: transitionEnd };
|
|
11123
10863
|
// If `transitionEnd` isn't `undefined`, clone it. We could clone `target` and `transitionEnd`
|
|
11124
10864
|
// only if they change but I think this reads clearer and this isn't a performance-critical path.
|
|
11125
10865
|
if (transitionEnd) {
|
|
11126
|
-
transitionEnd = __assign
|
|
10866
|
+
transitionEnd = __assign({}, transitionEnd);
|
|
11127
10867
|
}
|
|
11128
10868
|
// Go through existing `MotionValue`s and ensure any existing CSS variables are resolved
|
|
11129
10869
|
values.forEach(function (value) {
|
|
@@ -11280,8 +11020,8 @@ var convertChangedValueTypes = function (target, values, element, elementStyler,
|
|
|
11280
11020
|
};
|
|
11281
11021
|
var checkAndConvertChangedValueTypes = function (values, ref, target, transitionEnd) {
|
|
11282
11022
|
if (transitionEnd === void 0) { transitionEnd = {}; }
|
|
11283
|
-
target = __assign
|
|
11284
|
-
transitionEnd = __assign
|
|
11023
|
+
target = __assign({}, target);
|
|
11024
|
+
transitionEnd = __assign({}, transitionEnd);
|
|
11285
11025
|
var element = ref.current;
|
|
11286
11026
|
var elementStyler = index(element);
|
|
11287
11027
|
var targetPositionalKeys = Object.keys(target).filter(isPositionalKey$1);
|
|
@@ -11509,7 +11249,7 @@ function calcAxisDelta(prev, next, names) {
|
|
|
11509
11249
|
return delta;
|
|
11510
11250
|
}
|
|
11511
11251
|
function calcDelta(prev, next) {
|
|
11512
|
-
var delta = __assign
|
|
11252
|
+
var delta = __assign(__assign({}, calcAxisDelta(prev, next, axisLabels.x)), calcAxisDelta(prev, next, axisLabels.y));
|
|
11513
11253
|
return delta;
|
|
11514
11254
|
}
|
|
11515
11255
|
var offset = {
|
|
@@ -11553,7 +11293,7 @@ function getTransition(_a) {
|
|
|
11553
11293
|
return layoutTransition || positionTransition;
|
|
11554
11294
|
}
|
|
11555
11295
|
var LayoutAnimation = /** @class */ (function (_super) {
|
|
11556
|
-
__extends
|
|
11296
|
+
__extends(LayoutAnimation, _super);
|
|
11557
11297
|
function LayoutAnimation() {
|
|
11558
11298
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
11559
11299
|
}
|
|
@@ -11620,11 +11360,11 @@ var LayoutAnimation = /** @class */ (function (_super) {
|
|
|
11620
11360
|
if (!delta[deltaKey])
|
|
11621
11361
|
return;
|
|
11622
11362
|
var baseTransition = typeof transitionDefinition === "boolean"
|
|
11623
|
-
? __assign
|
|
11363
|
+
? __assign({}, getDefaultLayoutTransition(isPositionOnly)) : transitionDefinition;
|
|
11624
11364
|
var value = values.get(transformKey, targetValue);
|
|
11625
11365
|
var velocity = value.getVelocity();
|
|
11626
11366
|
transition[transformKey] = baseTransition[transformKey]
|
|
11627
|
-
? __assign
|
|
11367
|
+
? __assign({}, baseTransition[transformKey]) : __assign({}, baseTransition);
|
|
11628
11368
|
if (transition[transformKey].velocity === undefined) {
|
|
11629
11369
|
transition[transformKey].velocity = velocity || 0;
|
|
11630
11370
|
}
|
|
@@ -11765,9 +11505,9 @@ var hasUpdated = function (prev, next) {
|
|
|
11765
11505
|
};
|
|
11766
11506
|
function targetWithoutTransition(_a, mergeTransitionEnd) {
|
|
11767
11507
|
if (mergeTransitionEnd === void 0) { mergeTransitionEnd = false; }
|
|
11768
|
-
var transition = _a.transition, transitionEnd = _a.transitionEnd, target = __rest
|
|
11508
|
+
var transition = _a.transition, transitionEnd = _a.transitionEnd, target = __rest(_a, ["transition", "transitionEnd"]);
|
|
11769
11509
|
return mergeTransitionEnd
|
|
11770
|
-
? __assign
|
|
11510
|
+
? __assign(__assign({}, target), transitionEnd)
|
|
11771
11511
|
: target;
|
|
11772
11512
|
}
|
|
11773
11513
|
/**
|
|
@@ -11819,9 +11559,9 @@ function useAnimateProp(targetAndTransition, controls, values, defaultTransition
|
|
|
11819
11559
|
}
|
|
11820
11560
|
}
|
|
11821
11561
|
isInitialRender.current = false;
|
|
11822
|
-
prevValues.current = __assign
|
|
11562
|
+
prevValues.current = __assign(__assign({}, prevValues.current), finalTarget);
|
|
11823
11563
|
if (Object.keys(targetToAnimate).length) {
|
|
11824
|
-
controls.start(__assign
|
|
11564
|
+
controls.start(__assign(__assign({}, targetToAnimate), { transition: targetAndTransition.transition || defaultTransition, transitionEnd: targetAndTransition.transitionEnd }));
|
|
11825
11565
|
}
|
|
11826
11566
|
}, [targetAndTransition]);
|
|
11827
11567
|
}
|
|
@@ -11995,7 +11735,7 @@ var Exit = {
|
|
|
11995
11735
|
React.useEffect(function () {
|
|
11996
11736
|
if (!isPresent) {
|
|
11997
11737
|
if (!isPlayingExitAnimation.current && exit) {
|
|
11998
|
-
controls.setProps(__assign
|
|
11738
|
+
controls.setProps(__assign(__assign({}, props), { custom: custom }));
|
|
11999
11739
|
controls.start(exit).then(onExitComplete);
|
|
12000
11740
|
}
|
|
12001
11741
|
isPlayingExitAnimation.current = true;
|
|
@@ -12066,7 +11806,7 @@ var buildHTMLProps = function (values, style, isStatic, isDrag) {
|
|
|
12066
11806
|
var buildSVGProps = function (values, style) {
|
|
12067
11807
|
var motionValueStyles = resolveCurrent(values);
|
|
12068
11808
|
var props = buildSVGAttrs(motionValueStyles, undefined, undefined, undefined, undefined, false);
|
|
12069
|
-
props.style = __assign
|
|
11809
|
+
props.style = __assign(__assign({}, style), props.style);
|
|
12070
11810
|
return props;
|
|
12071
11811
|
};
|
|
12072
11812
|
var functionalityComponents = [Layout, Drag, Gestures, Exit];
|
|
@@ -12085,7 +11825,7 @@ function createDomMotionConfig(Component) {
|
|
|
12085
11825
|
var staticVisualStyles = isSVG
|
|
12086
11826
|
? buildSVGProps(values, style)
|
|
12087
11827
|
: buildHTMLProps(values, style, isStatic, !!props.drag);
|
|
12088
|
-
return React.createElement(Component, __assign
|
|
11828
|
+
return React.createElement(Component, __assign(__assign(__assign({}, forwardedProps), { ref: ref }), staticVisualStyles));
|
|
12089
11829
|
},
|
|
12090
11830
|
/**
|
|
12091
11831
|
* loadFunctionalityComponents gets used by the `motion` component
|
|
@@ -12116,7 +11856,7 @@ function createDomMotionConfig(Component) {
|
|
|
12116
11856
|
for (var i = 0; i < numFunctionalityComponents; i++) {
|
|
12117
11857
|
var _a = functionalityComponents[i], shouldRender = _a.shouldRender, key = _a.key, Component_1 = _a.Component;
|
|
12118
11858
|
if (shouldRender(props, context)) {
|
|
12119
|
-
activeComponents.push(React.createElement(Component_1, __assign
|
|
11859
|
+
activeComponents.push(React.createElement(Component_1, __assign({ key: key }, props, { parentContext: context, values: values, controls: controls, innerRef: ref })));
|
|
12120
11860
|
}
|
|
12121
11861
|
}
|
|
12122
11862
|
return activeComponents;
|
|
@@ -12168,7 +11908,7 @@ var svgMotionComponents = svgElements.reduce(function (acc, Component) {
|
|
|
12168
11908
|
*
|
|
12169
11909
|
* @public
|
|
12170
11910
|
*/
|
|
12171
|
-
var motion = __assign
|
|
11911
|
+
var motion = __assign(__assign({
|
|
12172
11912
|
/**
|
|
12173
11913
|
* Convert a custom React component into a `motion` component.
|
|
12174
11914
|
*
|
|
@@ -12220,7 +11960,7 @@ var PresenceChild = function (_a) {
|
|
|
12220
11960
|
return function () { return numPresenceChildren.current--; };
|
|
12221
11961
|
};
|
|
12222
11962
|
}, [isPresent]);
|
|
12223
|
-
return (React.createElement(PresenceContext.Provider, { value: __assign
|
|
11963
|
+
return (React.createElement(PresenceContext.Provider, { value: __assign(__assign({}, context), { register: register }) }, children));
|
|
12224
11964
|
};
|
|
12225
11965
|
|
|
12226
11966
|
function getChildKey(child) {
|
|
@@ -12336,7 +12076,7 @@ var AnimatePresence = function (_a) {
|
|
|
12336
12076
|
return (React.createElement(React.Fragment, null, filteredChildren.map(function (child) { return (React.createElement(PresenceChild, { key: getChildKey(child), isPresent: true, initial: initial ? undefined : false }, child)); })));
|
|
12337
12077
|
}
|
|
12338
12078
|
// If this is a subsequent render, deal with entering and exiting children
|
|
12339
|
-
var childrenToRender = __spreadArrays
|
|
12079
|
+
var childrenToRender = __spreadArrays(filteredChildren);
|
|
12340
12080
|
// Diff the keys of the currently-present and target children to update our
|
|
12341
12081
|
// exiting list.
|
|
12342
12082
|
var presentKeys = presentChildren.current.map(getChildKey);
|
|
@@ -19557,30 +19297,6 @@ var mobileFallbackValues = {
|
|
|
19557
19297
|
var MOBILE_BREAKPOINT = 768;
|
|
19558
19298
|
|
|
19559
19299
|
var _excluded$o = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
19560
|
-
|
|
19561
|
-
/*
|
|
19562
|
-
New responsive text component for Title elements
|
|
19563
|
-
Size is decoupled from tag
|
|
19564
|
-
Comes with two variants - "large" and "small"
|
|
19565
|
-
Large variant results in text that is 1.5rem (24px desktop, 21px mobile)
|
|
19566
|
-
Small variant results in text that is 1.25rem/1.2142rem (20px desktop, 17px mobile)
|
|
19567
|
-
|
|
19568
|
-
If you need a smaller text size, use the <Detail /> atom, which has smaller variants
|
|
19569
|
-
|
|
19570
|
-
Use the "as" prop to specify element type, can use any of: h1/h2/h3/h4/h5/h6/p
|
|
19571
|
-
If you need an inline text element (span), use the <Text /> atom
|
|
19572
|
-
The "as" value should be dictated by the structure of your page, not what font-size you want
|
|
19573
|
-
|
|
19574
|
-
Title / Detail both use slightly different desktop/mobile scales
|
|
19575
|
-
(Mobile scale is different to allow for design-friendly px values)
|
|
19576
|
-
Both atoms detect the presence of a mobile device on their own
|
|
19577
|
-
and apply the corresponding scale
|
|
19578
|
-
|
|
19579
|
-
Mobile breakpoint value is specified in Title.theme.js
|
|
19580
|
-
|
|
19581
|
-
If you want to disable mobile text scales (use the same rem scale for desktop/mobile), then use a theme in FCS to set both the "large" and "small" variants to use the same rem sizes. FCS themes override fallbacks defined in the .theme file
|
|
19582
|
-
*/
|
|
19583
|
-
|
|
19584
19300
|
var isBelowBreakpoint = window.innerWidth < MOBILE_BREAKPOINT;
|
|
19585
19301
|
var isTouchDevice$1 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
|
|
19586
19302
|
var mobileDeviceDetected = isBelowBreakpoint && isTouchDevice$1;
|
|
@@ -19673,9 +19389,11 @@ var Badge = function Badge(_ref) {
|
|
|
19673
19389
|
Icon = _ref.Icon,
|
|
19674
19390
|
themeValues = _ref.themeValues,
|
|
19675
19391
|
_ref$iconOnLeft = _ref.iconOnLeft,
|
|
19676
|
-
iconOnLeft = _ref$iconOnLeft === void 0 ? true : _ref$iconOnLeft
|
|
19392
|
+
iconOnLeft = _ref$iconOnLeft === void 0 ? true : _ref$iconOnLeft,
|
|
19393
|
+
id = _ref.id;
|
|
19677
19394
|
return /*#__PURE__*/React__default.createElement(StyledBadgeContainer, {
|
|
19678
|
-
background: themeValues.background
|
|
19395
|
+
background: themeValues.background,
|
|
19396
|
+
id: id
|
|
19679
19397
|
}, iconOnLeft && Icon && /*#__PURE__*/React__default.createElement(Icon, {
|
|
19680
19398
|
color: themeValues.color,
|
|
19681
19399
|
fill: themeValues.color
|
|
@@ -23674,6 +23392,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
23674
23392
|
var children = _ref.children,
|
|
23675
23393
|
extraStyles = _ref.extraStyles,
|
|
23676
23394
|
_ref$hoverCursor = _ref.hoverCursor,
|
|
23395
|
+
hoverCursor = _ref$hoverCursor === void 0 ? false : _ref$hoverCursor,
|
|
23677
23396
|
_ref$hoverEffect = _ref.hoverEffect,
|
|
23678
23397
|
hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
|
|
23679
23398
|
onClick = _ref.onClick,
|
|
@@ -23682,6 +23401,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
23682
23401
|
return /*#__PURE__*/React__default.createElement(TableRowWrapper, _extends({
|
|
23683
23402
|
onClick: onClick,
|
|
23684
23403
|
hoverEffect: hoverEffect,
|
|
23404
|
+
hoverCursor: hoverCursor,
|
|
23685
23405
|
extraStyles: extraStyles,
|
|
23686
23406
|
borderColor: themeValues.borderColor,
|
|
23687
23407
|
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
@@ -26513,33 +26233,6 @@ var mobileFallbackValues$1 = {
|
|
|
26513
26233
|
var MOBILE_BREAKPOINT$1 = 768;
|
|
26514
26234
|
|
|
26515
26235
|
var _excluded$w = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
26516
|
-
|
|
26517
|
-
/*
|
|
26518
|
-
New responsive text component for Detail elements
|
|
26519
|
-
(Block level text elements which are smaller than "Title" elements)
|
|
26520
|
-
Size is decoupled from tag
|
|
26521
|
-
Comes with four variants - "large", "regular", "small", "extraSmall"
|
|
26522
|
-
Large variant results in text that is 1.125rem/1.1428rem (18px desktop, 16px mobile)
|
|
26523
|
-
Regular variant results in text that is 1rem (16px desktop, 14px mobile)
|
|
26524
|
-
Small variant reuslts in text that is 0.875rem/0.8571rem (14px desktop, 12px mobile)
|
|
26525
|
-
ExtraSmall variant results in text that is 0.75rem/0.7142rem (12px desktop, 10px mobile)
|
|
26526
|
-
|
|
26527
|
-
If you need a larger font size, use the <Title /> atom, which has larger variants
|
|
26528
|
-
|
|
26529
|
-
Use the "as" prop to specify element type, can use any of: h1/h2/h3/h4/h5/h6/p
|
|
26530
|
-
If you need an inline text element (span), use the <Text /> atom
|
|
26531
|
-
The "as" value should be dictated by the structure of your page, not what font-size you want
|
|
26532
|
-
|
|
26533
|
-
Title / Detail both use slightly different desktop/mobile scales
|
|
26534
|
-
(Mobile scale is different to allow for design-friendly px values)
|
|
26535
|
-
Both atoms detect the presence of a mobile device on their own
|
|
26536
|
-
and apply the corresponding scale
|
|
26537
|
-
|
|
26538
|
-
Mobile breakpoint value is specified in Detail.theme.js
|
|
26539
|
-
|
|
26540
|
-
If you want to disable mobile text scales (use the same rem scale for desktop/mobile), then use a theme in FCS to set all of the variants to use the same rem sizes. FCS themes override fallbacks defined in the .theme file
|
|
26541
|
-
*/
|
|
26542
|
-
|
|
26543
26236
|
var isBelowBreakpoint$1 = window.innerWidth < MOBILE_BREAKPOINT$1;
|
|
26544
26237
|
var isTouchDevice$2 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
|
|
26545
26238
|
var mobileDeviceDetected$1 = isBelowBreakpoint$1 && isTouchDevice$2;
|
|
@@ -27156,83 +26849,79 @@ var createFormat = function createFormat(formats, formatChar) {
|
|
|
27156
26849
|
var FormattedInput = function FormattedInput(_ref) {
|
|
27157
26850
|
var value = _ref.value,
|
|
27158
26851
|
formatter = _ref.formatter,
|
|
27159
|
-
|
|
26852
|
+
_onChange = _ref.onChange,
|
|
27160
26853
|
props = _objectWithoutProperties$1(_ref, ["value", "formatter", "onChange"]);
|
|
27161
26854
|
|
|
27162
|
-
var _useState = React.useState(format$1(formatter)(value)),
|
|
27163
|
-
_useState2 = _slicedToArray$1(_useState, 2),
|
|
27164
|
-
formattedValue = _useState2[0],
|
|
27165
|
-
setFormattedValue = _useState2[1];
|
|
27166
|
-
|
|
27167
26855
|
var inputEl = React.useRef(null);
|
|
27168
|
-
|
|
26856
|
+
|
|
26857
|
+
var _useState = React.useState({
|
|
27169
26858
|
selectionStart: 0,
|
|
27170
26859
|
selectionEnd: 0,
|
|
27171
|
-
|
|
27172
|
-
|
|
27173
|
-
|
|
26860
|
+
rawValue: value,
|
|
26861
|
+
"delete": false,
|
|
26862
|
+
formattedValue: format$1(formatter)(value)
|
|
26863
|
+
}),
|
|
26864
|
+
_useState2 = _slicedToArray$1(_useState, 2),
|
|
26865
|
+
state = _useState2[0],
|
|
26866
|
+
setState = _useState2[1];
|
|
26867
|
+
|
|
27174
26868
|
React.useLayoutEffect(function () {
|
|
27175
26869
|
// A lot of the work here is cursor manipulation
|
|
27176
26870
|
if (inputEl.current && inputEl.current === document.activeElement) {
|
|
27177
|
-
inputEl.current.setSelectionRange(
|
|
26871
|
+
inputEl.current.setSelectionRange(state.selectionStart, state.selectionEnd);
|
|
27178
26872
|
}
|
|
27179
|
-
}
|
|
27180
|
-
|
|
27181
|
-
var handleChange = function handleChange(event) {
|
|
27182
|
-
var deleteKeyPressed = stateRefs.current.isDelete;
|
|
27183
|
-
var maxFormatExceeded = stateRefs.current.rawValue.length >= formatter.formats.length - 1;
|
|
27184
|
-
|
|
27185
|
-
if (maxFormatExceeded && !deleteKeyPressed) {
|
|
27186
|
-
return;
|
|
27187
|
-
}
|
|
27188
|
-
/* At the beginning of onChange, event.target.value is a concat of the previous formatted value
|
|
27189
|
-
* and an unformatted injection at the start, end, or in the middle (maybe a deletion). To prepare
|
|
27190
|
-
* the unformatted value for the user's onChange, the formatted string and unformatted injection need
|
|
27191
|
-
* to be separated, then unformat the formatted string, then insert (or delete) the injection from the
|
|
27192
|
-
* old unformatted value.
|
|
27193
|
-
*/
|
|
27194
|
-
|
|
27195
|
-
|
|
27196
|
-
var injectionLength = event.target.value.length - formattedValue.length;
|
|
27197
|
-
var end = stateRefs.current.selectionStart === stateRefs.current.selectionEnd ? stateRefs.current.selectionStart + injectionLength : stateRefs.current.selectionEnd - 1;
|
|
27198
|
-
var injection = event.target.value.substring(stateRefs.current.selectionStart, end); // Injection is the new unformatted piece of the input
|
|
27199
|
-
// Need to find where to put it
|
|
27200
|
-
|
|
27201
|
-
var rawInjectionPointStart = formattedToUnformattedIndex(stateRefs.current.selectionStart, stateRefs.current.rawValue, formatter);
|
|
27202
|
-
var rawInjectionPointEnd = formattedToUnformattedIndex(stateRefs.current.selectionEnd, stateRefs.current.rawValue, formatter); // Unformat the previous formatted value for injection
|
|
27203
|
-
// Using the relevant format string, strips away chars not marked with the formatChar
|
|
27204
|
-
|
|
27205
|
-
var unformattedOldValue = unformat(formatter)(formattedValue, stateRefs.current.rawValue.length); // Edit the previous unformatted value (either add, update or delete)
|
|
27206
|
-
|
|
27207
|
-
var injectIntoOldValue = inject(unformattedOldValue);
|
|
27208
|
-
var unformattedNewValue = deleteKeyPressed ? rawInjectionPointStart === rawInjectionPointEnd ? injectIntoOldValue(rawInjectionPointStart - 1, rawInjectionPointStart, "") : injectIntoOldValue(rawInjectionPointStart, rawInjectionPointEnd, "") : injectIntoOldValue(rawInjectionPointStart, rawInjectionPointEnd, injection);
|
|
27209
|
-
var lengthDifference = unformattedNewValue.length - stateRefs.current.rawValue.length;
|
|
27210
|
-
var rawIndex = formattedToUnformattedIndex(stateRefs.current.selectionStart, stateRefs.current.rawValue, formatter) + lengthDifference; // Find the new cursor position for the potential formatted value
|
|
27211
|
-
// Applied by useLayoutEffect
|
|
27212
|
-
|
|
27213
|
-
var newFormattedCursorPosition = stateRefs.current.selectionStart === stateRefs.current.selectionEnd ? unformattedToFormattedIndex(rawIndex, unformattedNewValue, formatter, deleteKeyPressed) : deleteKeyPressed ? stateRefs.current.selectionStart : stateRefs.current.selectionEnd;
|
|
27214
|
-
var formattedNewValue = format$1(formatter)(unformattedNewValue);
|
|
27215
|
-
setFormattedValue(formattedNewValue); // Apply the external onChange function to the raw underlying string
|
|
27216
|
-
// This is where the user generally updates the input value
|
|
27217
|
-
|
|
27218
|
-
if (onChange) {
|
|
27219
|
-
onChange(unformattedNewValue);
|
|
27220
|
-
}
|
|
27221
|
-
};
|
|
27222
|
-
|
|
26873
|
+
});
|
|
27223
26874
|
return React__default.createElement("input", _extends$2({}, props, {
|
|
27224
26875
|
ref: inputEl,
|
|
27225
26876
|
value: format$1(formatter)(value),
|
|
27226
26877
|
onKeyDown: function onKeyDown(event) {
|
|
27227
|
-
// Keep track of the state of the input before onChange
|
|
27228
|
-
|
|
27229
|
-
|
|
26878
|
+
// Keep track of the state of the input before onChange, including if user is hitting delete
|
|
26879
|
+
setState({
|
|
26880
|
+
rawValue: value,
|
|
27230
26881
|
selectionStart: event.target.selectionStart,
|
|
27231
26882
|
selectionEnd: event.target.selectionEnd,
|
|
27232
|
-
|
|
27233
|
-
|
|
26883
|
+
"delete": event.key === "Backspace" || event.key === "Delete",
|
|
26884
|
+
formattedValue: event.target.value
|
|
26885
|
+
});
|
|
27234
26886
|
},
|
|
27235
|
-
onChange:
|
|
26887
|
+
onChange: function onChange(event) {
|
|
26888
|
+
/* At the beginning of onChange, event.target.value is a concat of the previous formatted value
|
|
26889
|
+
* and an unformatted injection at the start, end, or in the middle (maybe a deletion). To prepare
|
|
26890
|
+
* the unformatted value for the user's onChange, the formatted string and unformatted injection need
|
|
26891
|
+
* to be separated, then unformat the formatted string, then insert (or delete) the injection from the
|
|
26892
|
+
* old unformatted value.
|
|
26893
|
+
*/
|
|
26894
|
+
var injectionLength = event.target.value.length - state.formattedValue.length;
|
|
26895
|
+
var end = state.selectionStart === state.selectionEnd ? state.selectionStart + injectionLength : state.selectionEnd - 1;
|
|
26896
|
+
var injection = event.target.value.substring(state.selectionStart, end); // Injection is the new unformatted piece of the input
|
|
26897
|
+
// Need to find where to put it
|
|
26898
|
+
|
|
26899
|
+
var rawInjectionPointStart = formattedToUnformattedIndex(state.selectionStart, state.rawValue, formatter);
|
|
26900
|
+
var rawInjectionPointEnd = formattedToUnformattedIndex(state.selectionEnd, state.rawValue, formatter); // Unformat the previous formatted value for injection
|
|
26901
|
+
// Using the relevant format string, strips away chars not marked with the formatChar
|
|
26902
|
+
|
|
26903
|
+
var unformattedOldValue = unformat(formatter)(state.formattedValue, state.rawValue.length); // Edit the previous unformatted value (either add, update or delete)
|
|
26904
|
+
|
|
26905
|
+
var injectIntoOldValue = inject(unformattedOldValue);
|
|
26906
|
+
var unformattedNewValue = state["delete"] ? rawInjectionPointStart === rawInjectionPointEnd ? injectIntoOldValue(rawInjectionPointStart - 1, rawInjectionPointStart, "") : injectIntoOldValue(rawInjectionPointStart, rawInjectionPointEnd, "") : injectIntoOldValue(rawInjectionPointStart, rawInjectionPointEnd, injection);
|
|
26907
|
+
var lengthDifference = unformattedNewValue.length - state.rawValue.length;
|
|
26908
|
+
var rawIndex = formattedToUnformattedIndex(state.selectionStart, state.rawValue, formatter) + lengthDifference; // Find the new cursor position for the potential formatted value
|
|
26909
|
+
// Applied by useLayoutEffect
|
|
26910
|
+
|
|
26911
|
+
var newFormattedCursorPosition = state.selectionStart == state.selectionEnd ? unformattedToFormattedIndex(rawIndex, unformattedNewValue, formatter, state["delete"]) : state["delete"] ? state.selectionStart : state.selectionEnd;
|
|
26912
|
+
setState({
|
|
26913
|
+
selectionStart: newFormattedCursorPosition,
|
|
26914
|
+
selectionEnd: newFormattedCursorPosition,
|
|
26915
|
+
rawValue: state.rawValue,
|
|
26916
|
+
"delete": false,
|
|
26917
|
+
formattedValue: state.formattedValue
|
|
26918
|
+
}); // Apply the external onChange function to the raw underlying string
|
|
26919
|
+
// This is where the user generally updates the input value
|
|
26920
|
+
|
|
26921
|
+
if (_onChange) {
|
|
26922
|
+
_onChange(unformattedNewValue);
|
|
26923
|
+
}
|
|
26924
|
+
}
|
|
27236
26925
|
}));
|
|
27237
26926
|
};
|
|
27238
26927
|
|
|
@@ -39669,15 +39358,16 @@ var disabledBackground = "".concat(MANATEE_GREY);
|
|
|
39669
39358
|
var disabledBackgroundLight = "".concat(ATHENS_GREY);
|
|
39670
39359
|
var white = "".concat(WHITE);
|
|
39671
39360
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
39672
|
-
var rightLabelStyles = "\n
|
|
39673
|
-
var leftLabelStyles = "\n
|
|
39361
|
+
var rightLabelStyles = "\n > div {\n flex-direction: row;\n }\n";
|
|
39362
|
+
var leftLabelStyles = "\n > div {\n flex-direction: row-reverse;\n }\n";
|
|
39674
39363
|
var fallbackValues$C = {
|
|
39675
39364
|
onBackground: onBackground,
|
|
39676
39365
|
disabledBackground: disabledBackground,
|
|
39677
39366
|
disabledBackgroundLight: disabledBackgroundLight,
|
|
39678
39367
|
white: white,
|
|
39679
39368
|
rightLabelStyles: rightLabelStyles,
|
|
39680
|
-
leftLabelStyles: leftLabelStyles
|
|
39369
|
+
leftLabelStyles: leftLabelStyles,
|
|
39370
|
+
labelStyles: labelStyles
|
|
39681
39371
|
};
|
|
39682
39372
|
|
|
39683
39373
|
var HiddenToggleSwitchBox = styled__default.input.withConfig({
|
|
@@ -39943,7 +39633,8 @@ var CardText = function CardText(_ref) {
|
|
|
39943
39633
|
}, /*#__PURE__*/React__default.createElement(Cover, null, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
39944
39634
|
justify: "space-between",
|
|
39945
39635
|
align: "center",
|
|
39946
|
-
overflow: true
|
|
39636
|
+
overflow: true,
|
|
39637
|
+
nowrap: true
|
|
39947
39638
|
}, titleText && /*#__PURE__*/React__default.createElement(Title$1, {
|
|
39948
39639
|
as: titleAs,
|
|
39949
39640
|
variant: titleVariant,
|
|
@@ -40160,10 +39851,11 @@ var LoadingLine = function LoadingLine(_ref) {
|
|
|
40160
39851
|
height = _ref$height === void 0 ? "16px" : _ref$height,
|
|
40161
39852
|
_ref$margin = _ref.margin,
|
|
40162
39853
|
margin = _ref$margin === void 0 ? "0px" : _ref$margin;
|
|
39854
|
+
var calculatedWidth = Math.floor(Math.random() * (parseInt(maxWidth) - parseInt(minWidth) + 1) + parseInt(minWidth));
|
|
40163
39855
|
return /*#__PURE__*/React__default.createElement(LoadingPill, {
|
|
40164
39856
|
margin: margin,
|
|
40165
39857
|
height: height,
|
|
40166
|
-
width: exactWidth ||
|
|
39858
|
+
width: exactWidth || calculatedWidth
|
|
40167
39859
|
});
|
|
40168
39860
|
};
|
|
40169
39861
|
|
|
@@ -42208,728 +41900,129 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
42208
41900
|
};
|
|
42209
41901
|
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$K);
|
|
42210
41902
|
|
|
42211
|
-
|
|
42212
|
-
|
|
42213
|
-
|
|
42214
|
-
|
|
42215
|
-
|
|
42216
|
-
|
|
42217
|
-
|
|
42218
|
-
|
|
42219
|
-
|
|
42220
|
-
|
|
42221
|
-
|
|
42222
|
-
|
|
42223
|
-
|
|
42224
|
-
|
|
42225
|
-
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4062 32.8906 17.1406 32.6719 16.9219L28.0781 12.3281C27.8594 12.1094 27.5937 12 27.2812 12H27V18H33ZM18.375 16.5H22.125C22.2187 16.5 22.3047 16.4609 22.3828 16.3828C22.4609 16.3047 22.5 16.2188 22.5 16.125V15.375C22.5 15.2813 22.4609 15.1953 22.3828 15.1172C22.3047 15.0391 22.2187 15 22.125 15H18.375C18.2812 15 18.1953 15.0391 18.1172 15.1172C18.0391 15.1953 18 15.2813 18 15.375V16.125C18 16.2188 18.0391 16.3047 18.1172 16.3828C18.1953 16.4609 18.2812 16.5 18.375 16.5ZM22.125 19.5H18.375C18.2812 19.5 18.1953 19.4609 18.1172 19.3828C18.0391 19.3047 18 19.2188 18 19.125V18.375C18 18.2813 18.0391 18.1953 18.1172 18.1172C18.1953 18.0391 18.2812 18 18.375 18H22.125C22.2187 18 22.3047 18.0391 22.3828 18.1172C22.4609 18.1953 22.5 18.2813 22.5 18.375V19.125C22.5 19.2188 22.4609 19.3047 22.3828 19.3828C22.3047 19.4609 22.2187 19.5 22.125 19.5ZM23.625 33H24.375C24.4687 33 24.5547 32.9609 24.6328 32.8828C24.7109 32.8047 24.75 32.7188 24.75 32.625V31.5C25.3125 31.4688 25.7891 31.25 26.1797 30.8438C26.5703 30.4375 26.7656 29.9531 26.7656 29.3906C26.7656 28.9219 26.625 28.5 26.3437 28.125C26.0625 27.75 25.7031 27.4844 25.2656 27.3281L23.1562 26.7188C23.0312 26.6875 22.9297 26.6172 22.8516 26.5078C22.7734 26.3984 22.7344 26.2656 22.7344 26.1094C22.7344 25.9531 22.7891 25.8125 22.8984 25.6875C23.0078 25.5625 23.1406 25.5 23.2969 25.5H24.6094C24.8281 25.5 25.0312 25.5547 25.2187 25.6641C25.4062 25.7734 25.5625 25.7656 25.6875 25.6406L26.25 25.125C26.3437 25.0313 26.3828 24.9297 26.3672 24.8203C26.3516 24.7109 26.2969 24.625 26.2031 24.5625C25.7656 24.2188 25.2812 24.0313 24.75 24V22.875C24.75 22.7813 24.7109 22.6953 24.6328 22.6172C24.5547 22.5391 24.4687 22.5 24.375 22.5H23.625C23.5312 22.5 23.4453 22.5391 23.3672 22.6172C23.2891 22.6953 23.25 22.7813 23.25 22.875V24C22.6875 24.0313 22.2109 24.25 21.8203 24.6563C21.4297 25.0625 21.2344 25.5469 21.2344 26.1094C21.2344 26.5781 21.375 27 21.6562 27.375C21.9375 27.75 22.2969 28.0156 22.7344 28.1719L24.8437 28.7812C24.9687 28.8125 25.0703 28.8828 25.1484 28.9922C25.2266 29.1016 25.2656 29.2344 25.2656 29.3906C25.2656 29.5469 25.2109 29.6875 25.1016 29.8125C24.9922 29.9375 24.8594 30 24.7031 30H23.3906C23.1719 30 22.9687 29.9453 22.7812 29.8359C22.5937 29.7266 22.4375 29.7344 22.3125 29.8594L21.75 30.375C21.6562 30.4688 21.6172 30.5703 21.6328 30.6797C21.6484 30.7891 21.7031 30.875 21.7969 30.9375C22.2344 31.2812 22.7187 31.4688 23.25 31.5V32.625C23.25 32.7188 23.2891 32.8047 23.3672 32.8828C23.4453 32.9609 23.5312 33 23.625 33Z",
|
|
42226
|
-
fill: "#FEFEFE"
|
|
42227
|
-
}));
|
|
42228
|
-
};
|
|
41903
|
+
/** @license React v16.13.1
|
|
41904
|
+
* react-is.production.min.js
|
|
41905
|
+
*
|
|
41906
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
41907
|
+
*
|
|
41908
|
+
* This source code is licensed under the MIT license found in the
|
|
41909
|
+
* LICENSE file in the root directory of this source tree.
|
|
41910
|
+
*/
|
|
41911
|
+
var b$2="function"===typeof Symbol&&Symbol.for,c$2=b$2?Symbol.for("react.element"):60103,d$1=b$2?Symbol.for("react.portal"):60106,e=b$2?Symbol.for("react.fragment"):60107,f$7=b$2?Symbol.for("react.strict_mode"):60108,g$1=b$2?Symbol.for("react.profiler"):60114,h$1=b$2?Symbol.for("react.provider"):60109,k$1=b$2?Symbol.for("react.context"):60110,l$1=b$2?Symbol.for("react.async_mode"):60111,m=b$2?Symbol.for("react.concurrent_mode"):60111,n$1=b$2?Symbol.for("react.forward_ref"):60112,p$1=b$2?Symbol.for("react.suspense"):60113,q$1=b$2?
|
|
41912
|
+
Symbol.for("react.suspense_list"):60120,r$1=b$2?Symbol.for("react.memo"):60115,t$1=b$2?Symbol.for("react.lazy"):60116,v$1=b$2?Symbol.for("react.block"):60121,w$1=b$2?Symbol.for("react.fundamental"):60117,x$1=b$2?Symbol.for("react.responder"):60118,y$1=b$2?Symbol.for("react.scope"):60119;
|
|
41913
|
+
function z$1(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c$2:switch(a=a.type,a){case l$1:case m:case e:case g$1:case f$7:case p$1:return a;default:switch(a=a&&a.$$typeof,a){case k$1:case n$1:case t$1:case r$1:case h$1:return a;default:return u}}case d$1:return u}}}function A$1(a){return z$1(a)===m}var AsyncMode=l$1;var ConcurrentMode=m;var ContextConsumer=k$1;var ContextProvider=h$1;var Element$1=c$2;var ForwardRef=n$1;var Fragment=e;var Lazy=t$1;var Memo=r$1;var Portal=d$1;
|
|
41914
|
+
var Profiler=g$1;var StrictMode=f$7;var Suspense=p$1;var isAsyncMode=function(a){return A$1(a)||z$1(a)===l$1};var isConcurrentMode=A$1;var isContextConsumer=function(a){return z$1(a)===k$1};var isContextProvider=function(a){return z$1(a)===h$1};var isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c$2};var isForwardRef=function(a){return z$1(a)===n$1};var isFragment=function(a){return z$1(a)===e};var isLazy=function(a){return z$1(a)===t$1};
|
|
41915
|
+
var isMemo=function(a){return z$1(a)===r$1};var isPortal=function(a){return z$1(a)===d$1};var isProfiler=function(a){return z$1(a)===g$1};var isStrictMode=function(a){return z$1(a)===f$7};var isSuspense=function(a){return z$1(a)===p$1};
|
|
41916
|
+
var isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g$1||a===f$7||a===p$1||a===q$1||"object"===typeof a&&null!==a&&(a.$$typeof===t$1||a.$$typeof===r$1||a.$$typeof===h$1||a.$$typeof===k$1||a.$$typeof===n$1||a.$$typeof===w$1||a.$$typeof===x$1||a.$$typeof===y$1||a.$$typeof===v$1)};var typeOf=z$1;
|
|
42229
41917
|
|
|
42230
|
-
var
|
|
42231
|
-
|
|
42232
|
-
|
|
42233
|
-
|
|
42234
|
-
|
|
42235
|
-
|
|
42236
|
-
|
|
42237
|
-
|
|
42238
|
-
|
|
42239
|
-
|
|
42240
|
-
|
|
42241
|
-
|
|
42242
|
-
|
|
42243
|
-
|
|
42244
|
-
|
|
42245
|
-
|
|
42246
|
-
|
|
41918
|
+
var reactIs_production_min = {
|
|
41919
|
+
AsyncMode: AsyncMode,
|
|
41920
|
+
ConcurrentMode: ConcurrentMode,
|
|
41921
|
+
ContextConsumer: ContextConsumer,
|
|
41922
|
+
ContextProvider: ContextProvider,
|
|
41923
|
+
Element: Element$1,
|
|
41924
|
+
ForwardRef: ForwardRef,
|
|
41925
|
+
Fragment: Fragment,
|
|
41926
|
+
Lazy: Lazy,
|
|
41927
|
+
Memo: Memo,
|
|
41928
|
+
Portal: Portal,
|
|
41929
|
+
Profiler: Profiler,
|
|
41930
|
+
StrictMode: StrictMode,
|
|
41931
|
+
Suspense: Suspense,
|
|
41932
|
+
isAsyncMode: isAsyncMode,
|
|
41933
|
+
isConcurrentMode: isConcurrentMode,
|
|
41934
|
+
isContextConsumer: isContextConsumer,
|
|
41935
|
+
isContextProvider: isContextProvider,
|
|
41936
|
+
isElement: isElement,
|
|
41937
|
+
isForwardRef: isForwardRef,
|
|
41938
|
+
isFragment: isFragment,
|
|
41939
|
+
isLazy: isLazy,
|
|
41940
|
+
isMemo: isMemo,
|
|
41941
|
+
isPortal: isPortal,
|
|
41942
|
+
isProfiler: isProfiler,
|
|
41943
|
+
isStrictMode: isStrictMode,
|
|
41944
|
+
isSuspense: isSuspense,
|
|
41945
|
+
isValidElementType: isValidElementType,
|
|
41946
|
+
typeOf: typeOf
|
|
42247
41947
|
};
|
|
42248
41948
|
|
|
42249
|
-
var
|
|
42250
|
-
var color = _ref.color;
|
|
42251
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
42252
|
-
width: "48",
|
|
42253
|
-
height: "48",
|
|
42254
|
-
viewBox: "0 0 48 48",
|
|
42255
|
-
fill: "none",
|
|
42256
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42257
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42258
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42259
|
-
fill: color
|
|
42260
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42261
|
-
fillRule: "evenodd",
|
|
42262
|
-
clipRule: "evenodd",
|
|
42263
|
-
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4062 32.8906 17.1406 32.6719 16.9219L28.0781 12.3281C27.8594 12.1094 27.5937 12 27.2812 12H27V18H33ZM18.375 16.5H22.125C22.2187 16.5 22.3047 16.4609 22.3828 16.3828C22.4609 16.3047 22.5 16.2188 22.5 16.125V15.375C22.5 15.2813 22.4609 15.1953 22.3828 15.1172C22.3047 15.0391 22.2187 15 22.125 15H18.375C18.2812 15 18.1953 15.0391 18.1172 15.1172C18.0391 15.1953 18 15.2813 18 15.375V16.125C18 16.2188 18.0391 16.3047 18.1172 16.3828C18.1953 16.4609 18.2812 16.5 18.375 16.5ZM22.125 19.5H18.375C18.2812 19.5 18.1953 19.4609 18.1172 19.3828C18.0391 19.3047 18 19.2188 18 19.125V18.375C18 18.2813 18.0391 18.1953 18.1172 18.1172C18.1953 18.0391 18.2812 18 18.375 18H22.125C22.2187 18 22.3047 18.0391 22.3828 18.1172C22.4609 18.1953 22.5 18.2813 22.5 18.375V19.125C22.5 19.2188 22.4609 19.3047 22.3828 19.3828C22.3047 19.4609 22.2187 19.5 22.125 19.5ZM23.625 33H24.375C24.4687 33 24.5547 32.9609 24.6328 32.8828C24.7109 32.8047 24.75 32.7188 24.75 32.625V31.5C25.3125 31.4688 25.7891 31.25 26.1797 30.8438C26.5703 30.4375 26.7656 29.9531 26.7656 29.3906C26.7656 28.9219 26.625 28.5 26.3437 28.125C26.0625 27.75 25.7031 27.4844 25.2656 27.3281L23.1562 26.7188C23.0312 26.6875 22.9297 26.6172 22.8516 26.5078C22.7734 26.3984 22.7344 26.2656 22.7344 26.1094C22.7344 25.9531 22.7891 25.8125 22.8984 25.6875C23.0078 25.5625 23.1406 25.5 23.2969 25.5H24.6094C24.8281 25.5 25.0312 25.5547 25.2187 25.6641C25.4062 25.7734 25.5625 25.7656 25.6875 25.6406L26.25 25.125C26.3437 25.0313 26.3828 24.9297 26.3672 24.8203C26.3516 24.7109 26.2969 24.625 26.2031 24.5625C25.7656 24.2188 25.2812 24.0313 24.75 24V22.875C24.75 22.7813 24.7109 22.6953 24.6328 22.6172C24.5547 22.5391 24.4687 22.5 24.375 22.5H23.625C23.5312 22.5 23.4453 22.5391 23.3672 22.6172C23.2891 22.6953 23.25 22.7813 23.25 22.875V24C22.6875 24.0313 22.2109 24.25 21.8203 24.6563C21.4297 25.0625 21.2344 25.5469 21.2344 26.1094C21.2344 26.5781 21.375 27 21.6562 27.375C21.9375 27.75 22.2969 28.0156 22.7344 28.1719L24.8437 28.7812C24.9687 28.8125 25.0703 28.8828 25.1484 28.9922C25.2266 29.1016 25.2656 29.2344 25.2656 29.3906C25.2656 29.5469 25.2109 29.6875 25.1016 29.8125C24.9922 29.9375 24.8594 30 24.7031 30H23.3906C23.1719 30 22.9687 29.9453 22.7812 29.8359C22.5937 29.7266 22.4375 29.7344 22.3125 29.8594L21.75 30.375C21.6562 30.4688 21.6172 30.5703 21.6328 30.6797C21.6484 30.7891 21.7031 30.875 21.7969 30.9375C22.2344 31.2812 22.7187 31.4688 23.25 31.5V32.625C23.25 32.7188 23.2891 32.8047 23.3672 32.8828C23.4453 32.9609 23.5312 33 23.625 33Z",
|
|
42264
|
-
fill: "#FEFEFE"
|
|
42265
|
-
}));
|
|
42266
|
-
};
|
|
41949
|
+
var reactIs_development = createCommonjsModule(function (module, exports) {
|
|
42267
41950
|
|
|
42268
|
-
var AccountDentalIcon = function AccountDentalIcon(_ref) {
|
|
42269
|
-
var color = _ref.color;
|
|
42270
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
42271
|
-
width: "48",
|
|
42272
|
-
height: "48",
|
|
42273
|
-
viewBox: "0 0 48 48",
|
|
42274
|
-
fill: "none",
|
|
42275
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42276
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42277
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42278
|
-
fill: color
|
|
42279
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42280
|
-
d: "M28.1548 35.14C28.4576 35.14 28.7315 35.0463 28.9766 34.8589C29.2217 34.6714 29.373 34.4191 29.4307 34.102L29.7767 32.6314C30.1516 30.9879 30.4543 28.9695 30.685 26.5763C30.858 24.6444 31.377 23.1017 32.242 21.9484C32.7322 21.2852 33.0638 20.5427 33.2368 19.7209C33.4098 18.8992 33.3954 18.0413 33.1936 17.1475C32.9629 16.1671 32.4871 15.3093 31.7663 14.574C31.0454 13.8388 30.1948 13.3558 29.2145 13.1251C28.0323 12.8079 26.7491 13.154 25.3651 14.1631C25.2786 14.2208 25.1633 14.2785 25.0191 14.3362L24.8893 14.3794L26.1436 15.2012C26.2878 15.2877 26.3815 15.4246 26.4248 15.6121C26.468 15.7995 26.4392 15.9725 26.3382 16.1311C26.2373 16.2897 26.0932 16.3906 25.9057 16.4338C25.7183 16.4771 25.5381 16.441 25.3651 16.3257L21.04 13.5576C20.0308 13.0098 19.0648 12.8656 18.1421 13.1251C17.1618 13.3558 16.3112 13.8388 15.5903 14.574C14.8695 15.3093 14.3937 16.1671 14.163 17.1475C13.9612 18.0413 13.9468 18.8992 14.1198 19.7209C14.2928 20.5427 14.6244 21.2852 15.1146 21.9484C15.9796 23.1017 16.4986 24.6444 16.6716 26.5763C16.9023 28.9695 17.205 30.9879 17.5799 32.6314L17.9259 34.102C17.9835 34.4191 18.1349 34.6714 18.38 34.8589C18.6251 35.0463 18.899 35.14 19.2018 35.14C19.5046 35.14 19.7713 35.0463 20.0019 34.8589C20.2326 34.6714 20.3912 34.4336 20.4777 34.1452L21.9482 28.1333C22.0636 27.7585 22.2798 27.4413 22.597 27.1818C22.9142 26.9223 23.2746 26.7925 23.6783 26.7925C24.082 26.7925 24.4424 26.9223 24.7596 27.1818C25.0768 27.4413 25.293 27.7585 25.4083 28.1333L26.8789 34.1452C26.9654 34.4336 27.124 34.6714 27.3547 34.8589C27.5853 35.0463 27.852 35.14 28.1548 35.14Z",
|
|
42281
|
-
fill: "#FEFEFE"
|
|
42282
|
-
}));
|
|
42283
|
-
};
|
|
42284
41951
|
|
|
42285
|
-
var AccountElectricIcon = function AccountElectricIcon(_ref) {
|
|
42286
|
-
var color = _ref.color;
|
|
42287
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
42288
|
-
width: "48",
|
|
42289
|
-
height: "48",
|
|
42290
|
-
viewBox: "0 0 48 48",
|
|
42291
|
-
fill: "none",
|
|
42292
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42293
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42294
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42295
|
-
fill: color
|
|
42296
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42297
|
-
d: "M29.8438 19.2297V14.3844C29.8438 14.0094 29.7068 13.685 29.4328 13.411C29.1588 13.137 28.8343 13 28.4594 13C28.0844 13 27.76 13.137 27.486 13.411C27.212 13.685 27.075 14.0094 27.075 14.3844V19.2297H29.8438ZM21.5375 19.2297V14.3844C21.5375 14.0094 21.4005 13.685 21.1265 13.411C20.8525 13.137 20.5281 13 20.1531 13C19.7782 13 19.4537 13.137 19.1797 13.411C18.9057 13.685 18.7687 14.0094 18.7687 14.3844V19.2297H21.5375ZM25.6906 35.15V30.8671C27.2769 30.5498 28.5964 29.7567 29.6491 28.4877C30.7018 27.2187 31.2281 25.7478 31.2281 24.075V22.6906H31.9203C32.1222 22.6906 32.288 22.6257 32.4178 22.4959C32.5476 22.3662 32.6125 22.2003 32.6125 21.9984V20.6141C32.6125 20.4122 32.5476 20.2463 32.4178 20.1166C32.288 19.9868 32.1222 19.9219 31.9203 19.9219H16.6922C16.4903 19.9219 16.3245 19.9868 16.1947 20.1166C16.0649 20.2463 16 20.4122 16 20.6141V21.9984C16 22.2003 16.0649 22.3662 16.1947 22.4959C16.3245 22.6257 16.4903 22.6906 16.6922 22.6906H17.3844V24.075C17.3844 25.7478 17.9107 27.2187 18.9634 28.4877C20.0161 29.7567 21.3356 30.5498 22.9219 30.8671V35.15H25.6906Z",
|
|
42298
|
-
fill: "#FEFEFE"
|
|
42299
|
-
}));
|
|
42300
|
-
};
|
|
42301
41952
|
|
|
42302
|
-
|
|
42303
|
-
|
|
42304
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
42305
|
-
width: "48",
|
|
42306
|
-
height: "48",
|
|
42307
|
-
viewBox: "0 0 48 48",
|
|
42308
|
-
fill: "none",
|
|
42309
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42310
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42311
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42312
|
-
fill: color
|
|
42313
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42314
|
-
fillRule: "evenodd",
|
|
42315
|
-
clipRule: "evenodd",
|
|
42316
|
-
d: "M33.4179 16.7612C33.5671 16.7612 33.694 16.7089 33.7985 16.6045C33.9029 16.5 33.9552 16.3731 33.9552 16.2239V14.9701C33.9552 14.6716 33.8507 14.4179 33.6417 14.2089C33.4328 14 33.1791 13.8955 32.8806 13.8955H27.8656L27.4627 13.0448C27.3731 12.8657 27.2388 12.7239 27.0597 12.6194C26.8806 12.5149 26.6865 12.4627 26.4776 12.4627H21.3731C21.1642 12.4627 20.9701 12.5149 20.791 12.6194C20.6119 12.7239 20.4776 12.8657 20.388 13.0448L19.9851 13.8955H14.9701C14.6716 13.8955 14.4179 14 14.209 14.2089C14 14.4179 13.8955 14.6716 13.8955 14.9701V16.2239C13.8955 16.3731 13.9478 16.5 14.0522 16.6045C14.1567 16.7089 14.2836 16.7612 14.4328 16.7612H33.4179ZM30.3731 35.388C30.9701 35.388 31.4776 35.179 31.8955 34.7611C32.3134 34.3432 32.5223 33.8358 32.5223 33.2388V18.7313C32.5223 18.5821 32.4701 18.4552 32.3656 18.3507C32.2611 18.2463 32.1343 18.194 31.985 18.194H15.8657C15.7164 18.194 15.5895 18.2463 15.4851 18.3507C15.3806 18.4552 15.3284 18.5821 15.3284 18.7313V33.2388C15.3284 33.8358 15.5373 34.3432 15.9552 34.7611C16.3731 35.179 16.8806 35.388 17.4776 35.388H30.3731ZM19.1119 32.3208C19.2463 32.4552 19.4179 32.5223 19.6269 32.5223C19.8358 32.5223 20.0074 32.4552 20.1418 32.3208C20.2761 32.1865 20.3433 32.0149 20.3433 31.8059V21.7761C20.3433 21.5671 20.2761 21.3955 20.1418 21.2612C20.0074 21.1268 19.8358 21.0597 19.6269 21.0597C19.4179 21.0597 19.2463 21.1268 19.1119 21.2612C18.9776 21.3955 18.9104 21.5671 18.9104 21.7761V31.8059C18.9104 32.0149 18.9776 32.1865 19.1119 32.3208ZM23.9254 32.5223C23.7164 32.5223 23.5448 32.4552 23.4104 32.3208C23.2761 32.1865 23.2089 32.0149 23.2089 31.8059V21.7761C23.2089 21.5671 23.2761 21.3955 23.4104 21.2612C23.5448 21.1268 23.7164 21.0597 23.9254 21.0597C24.1343 21.0597 24.3059 21.1268 24.4403 21.2612C24.5746 21.3955 24.6418 21.5671 24.6418 21.7761V31.8059C24.6418 32.0149 24.5746 32.1865 24.4403 32.3208C24.3059 32.4552 24.1343 32.5223 23.9254 32.5223ZM27.7089 32.3208C27.8433 32.4552 28.0149 32.5223 28.2238 32.5223C28.4328 32.5223 28.6044 32.4552 28.7388 32.3208C28.8731 32.1865 28.9403 32.0149 28.9403 31.8059V21.7761C28.9403 21.5671 28.8731 21.3955 28.7388 21.2612C28.6044 21.1268 28.4328 21.0597 28.2238 21.0597C28.0149 21.0597 27.8433 21.1268 27.7089 21.2612C27.5746 21.3955 27.5074 21.5671 27.5074 21.7761V31.8059C27.5074 32.0149 27.5746 32.1865 27.7089 32.3208Z",
|
|
42317
|
-
fill: "#FEFEFE"
|
|
42318
|
-
}));
|
|
42319
|
-
};
|
|
41953
|
+
if (process.env.NODE_ENV !== "production") {
|
|
41954
|
+
(function() {
|
|
42320
41955
|
|
|
42321
|
-
|
|
42322
|
-
|
|
42323
|
-
|
|
42324
|
-
|
|
42325
|
-
|
|
42326
|
-
|
|
42327
|
-
|
|
42328
|
-
|
|
42329
|
-
|
|
42330
|
-
|
|
42331
|
-
|
|
42332
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42333
|
-
d: "M23.9253 35.394C25.4776 35.394 26.9104 35.0059 28.2238 34.2298C29.5373 33.4537 30.5821 32.4089 31.3582 31.0955C32.1343 29.7821 32.5223 28.3492 32.5223 26.797C32.5223 25.4836 32.2985 24.2597 31.8507 23.1254C31.4626 22.2298 30.8955 21.3493 30.1492 20.4836C29.7015 19.9761 29 19.2746 28.0447 18.3791C27 17.4239 26.2985 16.6776 25.9403 16.1403C25.3134 15.3045 25 14.4388 25 13.5433C25 13.1851 24.8806 12.909 24.6418 12.7149C24.403 12.5209 24.1194 12.4388 23.791 12.4687C23.4627 12.4985 23.2089 12.6627 23.0298 12.9612C21.8955 14.5732 21.2537 16.006 21.1045 17.2597C20.9552 18.2746 21.1343 19.2 21.6418 20.0358C21.9403 20.5433 22.5224 21.2149 23.388 22.0507C24.0448 22.7075 24.4925 23.2149 24.7313 23.5731C25.1492 24.1403 25.3582 24.7373 25.3582 25.3642C25.3582 26.1701 25.0746 26.8492 24.5074 27.4015C23.9403 27.9537 23.2612 28.2298 22.4701 28.2298C21.6791 28.2298 21.0074 27.9463 20.4552 27.3791C19.903 26.8119 19.6269 26.1254 19.6269 25.3194V25.3194V21.5134C19.6269 21.1851 19.5224 20.9239 19.3134 20.7299C19.1045 20.5358 18.8507 20.4313 18.5522 20.4164C18.2537 20.4015 18 20.5134 17.791 20.7522C17.1045 21.4687 16.5373 22.3045 16.0895 23.2597C15.5821 24.394 15.3284 25.5731 15.3284 26.797C15.3284 28.3492 15.7164 29.7821 16.4925 31.0955C17.2686 32.4089 18.3134 33.4537 19.6269 34.2298C20.9403 35.0059 22.3731 35.394 23.9253 35.394Z",
|
|
42334
|
-
fill: "#FEFEFE"
|
|
42335
|
-
}));
|
|
42336
|
-
};
|
|
41956
|
+
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
|
|
41957
|
+
// nor polyfill, then a plain number is used for performance.
|
|
41958
|
+
var hasSymbol = typeof Symbol === 'function' && Symbol.for;
|
|
41959
|
+
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
|
|
41960
|
+
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
|
|
41961
|
+
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
|
|
41962
|
+
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
|
|
41963
|
+
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
|
|
41964
|
+
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
|
|
41965
|
+
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
|
|
41966
|
+
// (unstable) APIs that have been removed. Can we remove the symbols?
|
|
42337
41967
|
|
|
42338
|
-
var
|
|
42339
|
-
|
|
42340
|
-
|
|
42341
|
-
|
|
42342
|
-
|
|
42343
|
-
|
|
42344
|
-
|
|
42345
|
-
|
|
42346
|
-
|
|
42347
|
-
|
|
42348
|
-
|
|
42349
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42350
|
-
fillRule: "evenodd",
|
|
42351
|
-
clipRule: "evenodd",
|
|
42352
|
-
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4063 32.8906 17.1406 32.6718 16.9219L28.0781 12.3281C27.8593 12.1094 27.5937 12 27.2812 12H27V18H33ZM22.875 31.5H25.125C25.2187 31.5 25.3047 31.4609 25.3828 31.3828C25.4609 31.3047 25.5 31.2188 25.5 31.125V28.5H28.125C28.2187 28.5 28.3047 28.4609 28.3828 28.3828C28.4609 28.3047 28.5 28.2188 28.5 28.125V25.875C28.5 25.7812 28.4609 25.6953 28.3828 25.6172C28.3047 25.5391 28.2187 25.5 28.125 25.5H25.5V22.875C25.5 22.7812 25.4609 22.6953 25.3828 22.6172C25.3047 22.5391 25.2187 22.5 25.125 22.5H22.875C22.7812 22.5 22.6953 22.5391 22.6172 22.6172C22.539 22.6953 22.5 22.7812 22.5 22.875V25.5H19.875C19.7812 25.5 19.6953 25.5391 19.6172 25.6172C19.539 25.6953 19.5 25.7812 19.5 25.875V28.125C19.5 28.2188 19.539 28.3047 19.6172 28.3828C19.6953 28.4609 19.7812 28.5 19.875 28.5H22.5V31.125C22.5 31.2188 22.539 31.3047 22.6172 31.3828C22.6953 31.4609 22.7812 31.5 22.875 31.5Z",
|
|
42353
|
-
fill: "#FEFEFE"
|
|
42354
|
-
}));
|
|
42355
|
-
};
|
|
41968
|
+
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
|
|
41969
|
+
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
|
|
41970
|
+
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
|
|
41971
|
+
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
|
|
41972
|
+
var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
|
|
41973
|
+
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
|
|
41974
|
+
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
|
|
41975
|
+
var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
|
|
41976
|
+
var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
|
|
41977
|
+
var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
|
|
41978
|
+
var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
|
|
42356
41979
|
|
|
42357
|
-
|
|
42358
|
-
|
|
42359
|
-
|
|
42360
|
-
|
|
42361
|
-
height: "48",
|
|
42362
|
-
viewBox: "0 0 48 48",
|
|
42363
|
-
fill: "none",
|
|
42364
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42365
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42366
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42367
|
-
fill: color
|
|
42368
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42369
|
-
fillRule: "evenodd",
|
|
42370
|
-
clipRule: "evenodd",
|
|
42371
|
-
d: "M27.9627 35.3015C26.7537 36.0805 25.4328 36.47 24 36.47C22.5672 36.47 21.2463 36.0805 20.0373 35.3015C18.8284 34.5225 17.8731 33.4676 17.1717 32.1368C16.4702 30.8061 16.1194 29.3617 16.1194 27.8037C16.1194 26.5378 16.3881 25.2882 16.9254 24.0548C17.2537 23.3082 17.8806 22.2047 18.806 20.744C19.7313 19.2834 20.4328 18.1149 20.9104 17.2386C21.6567 15.778 22.2537 14.2362 22.7015 12.6133C22.8209 12.1589 23.0672 11.8424 23.4403 11.6639C23.8134 11.4854 24.1866 11.4854 24.5597 11.6639C24.9328 11.8424 25.1791 12.1589 25.2985 12.6133C25.7463 14.2362 26.3582 15.7942 27.1343 17.2873C27.5821 18.1636 28.2686 19.324 29.194 20.7684C30.1194 22.2128 30.7462 23.3082 31.0746 24.0548C31.6119 25.2557 31.8806 26.5054 31.8806 27.8037C31.8806 29.3617 31.5298 30.8061 30.8283 32.1368C30.1268 33.4676 29.1716 34.5225 27.9627 35.3015ZM21.4925 32.6237C22.2686 33.1106 23.1045 33.354 24 33.354C24.2089 33.354 24.3806 33.281 24.5149 33.1349C24.6492 32.9889 24.7164 32.8022 24.7164 32.575C24.7164 32.3478 24.6492 32.1612 24.5149 32.0151C24.3806 31.8691 24.2089 31.796 24 31.796C23.0149 31.796 22.1716 31.4146 21.4701 30.6519C20.7687 29.8891 20.4179 28.9722 20.4179 27.9011C20.4179 27.6739 20.3507 27.4872 20.2164 27.3412C20.0821 27.1951 19.9104 27.1221 19.7015 27.1221C19.4925 27.1221 19.3209 27.1951 19.1866 27.3412C19.0522 27.4872 18.9851 27.6739 18.9851 27.9011C18.9851 28.8748 19.209 29.7836 19.6567 30.6275C20.1045 31.4715 20.7164 32.1368 21.4925 32.6237Z",
|
|
42372
|
-
fill: "#FEFEFE"
|
|
42373
|
-
}));
|
|
42374
|
-
};
|
|
41980
|
+
function isValidElementType(type) {
|
|
41981
|
+
return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
41982
|
+
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);
|
|
41983
|
+
}
|
|
42375
41984
|
|
|
42376
|
-
|
|
42377
|
-
|
|
42378
|
-
|
|
42379
|
-
width: "48",
|
|
42380
|
-
height: "48",
|
|
42381
|
-
viewBox: "0 0 48 48",
|
|
42382
|
-
fill: "none",
|
|
42383
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42384
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42385
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42386
|
-
fill: color
|
|
42387
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42388
|
-
d: "M33.3812 35.15V34.2848C33.3812 34.1406 33.3308 34.018 33.2298 33.917C33.1289 33.8161 33.0063 33.7656 32.8621 33.7656H31.9969V14.0383C31.9969 13.7499 31.8959 13.5047 31.694 13.3028C31.4922 13.1009 31.247 13 30.9586 13H16.4227C16.1342 13 15.8891 13.1009 15.6872 13.3028C15.4853 13.5047 15.3844 13.7499 15.3844 14.0383V33.7656H14.5191C14.3749 33.7656 14.2524 33.8161 14.1514 33.917C14.0505 34.018 14 34.1406 14 34.2848V35.15H33.3812ZM21.7871 18.5375H20.0566C19.9124 18.5375 19.7899 18.487 19.6889 18.3861C19.588 18.2851 19.5375 18.1626 19.5375 18.0184V16.2879C19.5375 16.1437 19.588 16.0211 19.6889 15.9202C19.7899 15.8192 19.9124 15.7687 20.0566 15.7687H21.7871C21.9313 15.7687 22.0539 15.8192 22.1548 15.9202C22.2558 16.0211 22.3063 16.1437 22.3063 16.2879V18.0184C22.3063 18.1626 22.2558 18.2851 22.1548 18.3861C22.0539 18.487 21.9313 18.5375 21.7871 18.5375ZM27.3246 18.5375H25.5941C25.4499 18.5375 25.3274 18.487 25.2264 18.3861C25.1255 18.2851 25.075 18.1626 25.075 18.0184V16.2879C25.075 16.1437 25.1255 16.0211 25.2264 15.9202C25.3274 15.8192 25.4499 15.7687 25.5941 15.7687H27.3246C27.4688 15.7687 27.5914 15.8192 27.6923 15.9202C27.7933 16.0211 27.8438 16.1437 27.8438 16.2879V18.0184C27.8438 18.1626 27.7933 18.2851 27.6923 18.3861C27.5914 18.487 27.4688 18.5375 27.3246 18.5375ZM21.7871 22.6906H20.0566C19.9124 22.6906 19.7899 22.6402 19.6889 22.5392C19.588 22.4383 19.5375 22.3157 19.5375 22.1715V20.441C19.5375 20.2968 19.588 20.1742 19.6889 20.0733C19.7899 19.9723 19.9124 19.9219 20.0566 19.9219H21.7871C21.9313 19.9219 22.0539 19.9723 22.1548 20.0733C22.2558 20.1742 22.3063 20.2968 22.3063 20.441V22.1715C22.3063 22.3157 22.2558 22.4383 22.1548 22.5392C22.0539 22.6402 21.9313 22.6906 21.7871 22.6906ZM27.3246 22.6906H25.5941C25.4499 22.6906 25.3274 22.6402 25.2264 22.5392C25.1255 22.4383 25.075 22.3157 25.075 22.1715V20.441C25.075 20.2968 25.1255 20.1742 25.2264 20.0733C25.3274 19.9723 25.4499 19.9219 25.5941 19.9219H27.3246C27.4688 19.9219 27.5914 19.9723 27.6923 20.0733C27.7933 20.1742 27.8438 20.2968 27.8438 20.441V22.1715C27.8438 22.3157 27.7933 22.4383 27.6923 22.5392C27.5914 22.6402 27.4688 22.6906 27.3246 22.6906ZM21.7871 26.8438H20.0566C19.9124 26.8438 19.7899 26.7933 19.6889 26.6923C19.588 26.5914 19.5375 26.4688 19.5375 26.3246V24.5941C19.5375 24.4499 19.588 24.3274 19.6889 24.2264C19.7899 24.1255 19.9124 24.075 20.0566 24.075H21.7871C21.9313 24.075 22.0539 24.1255 22.1548 24.2264C22.2558 24.3274 22.3063 24.4499 22.3063 24.5941V26.3246C22.3063 26.4688 22.2558 26.5914 22.1548 26.6923C22.0539 26.7933 21.9313 26.8438 21.7871 26.8438ZM27.3246 26.8438H25.5941C25.4499 26.8438 25.3274 26.7933 25.2264 26.6923C25.1255 26.5914 25.075 26.4688 25.075 26.3246V24.5941C25.075 24.4499 25.1255 24.3274 25.2264 24.2264C25.3274 24.1255 25.4499 24.075 25.5941 24.075H27.3246C27.4688 24.075 27.5914 24.1255 27.6923 24.2264C27.7933 24.3274 27.8438 24.4499 27.8438 24.5941V26.3246C27.8438 26.4688 27.7933 26.5914 27.6923 26.6923C27.5914 26.7933 27.4688 26.8438 27.3246 26.8438ZM25.075 33.7656H22.3063V30.1316C22.3063 29.9874 22.3567 29.8649 22.4577 29.7639C22.5586 29.663 22.6812 29.6125 22.8254 29.6125H24.5559C24.7001 29.6125 24.8226 29.663 24.9236 29.7639C25.0245 29.8649 25.075 29.9874 25.075 30.1316V33.7656Z",
|
|
42389
|
-
fill: "#FEFEFE"
|
|
42390
|
-
}));
|
|
42391
|
-
};
|
|
41985
|
+
function typeOf(object) {
|
|
41986
|
+
if (typeof object === 'object' && object !== null) {
|
|
41987
|
+
var $$typeof = object.$$typeof;
|
|
42392
41988
|
|
|
42393
|
-
|
|
42394
|
-
|
|
42395
|
-
|
|
42396
|
-
height: "48",
|
|
42397
|
-
viewBox: "0 0 48 48",
|
|
42398
|
-
fill: "none",
|
|
42399
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42400
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42401
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42402
|
-
fill: "#3B5BDB"
|
|
42403
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42404
|
-
fillRule: "evenodd",
|
|
42405
|
-
clipRule: "evenodd",
|
|
42406
|
-
d: "M16.3134 14.209V16H14.0746V14.209H16.3134ZM16.3134 14.209H18.5522C18.8507 14.209 19.1045 14.3134 19.3134 14.5224C19.5224 14.7313 19.6269 14.9851 19.6269 15.2836V24.0597L25.8507 20.1194C26.2089 19.8806 26.5746 19.8657 26.9477 20.0746C27.3209 20.2836 27.5074 20.597 27.5074 21.0149V24.0597L33.7313 20.1194C34.0895 19.8806 34.4552 19.8657 34.8283 20.0746C35.2014 20.2836 35.388 20.597 35.388 21.0149V33.194C35.388 33.4925 35.2835 33.7462 35.0746 33.9552C34.8656 34.1641 34.6119 34.2686 34.3134 34.2686H13.5373C13.2388 34.2686 12.9851 34.1641 12.7761 33.9552C12.5672 33.7462 12.4627 33.4925 12.4627 33.194V15.2836C12.4627 14.9851 12.5672 14.7313 12.7761 14.5224C12.9851 14.3134 13.2388 14.209 13.5373 14.209H14.0746V13.8955H16.3134V14.209Z",
|
|
42407
|
-
fill: "#FEFEFE"
|
|
42408
|
-
}));
|
|
42409
|
-
};
|
|
41989
|
+
switch ($$typeof) {
|
|
41990
|
+
case REACT_ELEMENT_TYPE:
|
|
41991
|
+
var type = object.type;
|
|
42410
41992
|
|
|
42411
|
-
|
|
42412
|
-
|
|
42413
|
-
|
|
42414
|
-
|
|
42415
|
-
|
|
42416
|
-
|
|
42417
|
-
|
|
42418
|
-
|
|
42419
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42420
|
-
fill: "#3B5BDB"
|
|
42421
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42422
|
-
d: "M36.8919 19.7729H33.7284L32.8492 17.5748C31.9457 15.3149 29.7893 13.855 27.3551 13.855H20.6446C18.2108 13.855 16.054 15.3149 15.1499 17.5748L14.2707 19.7729H11.1077C10.6951 19.7729 10.3923 20.1607 10.4927 20.5607L10.8097 21.8288C10.88 22.111 11.1336 22.3091 11.4248 22.3091H12.4852C11.7756 22.9289 11.3186 23.8298 11.3186 24.8454V27.3816C11.3186 28.2334 11.6441 29.0022 12.164 29.5972V32.4541C12.164 33.3878 12.9212 34.145 13.8548 34.145H15.5457C16.4793 34.145 17.2365 33.3878 17.2365 32.4541V30.7633H30.7631V32.4541C30.7631 33.3878 31.5203 34.145 32.454 34.145H34.1448C35.0785 34.145 35.8356 33.3878 35.8356 32.4541V29.5972C36.3556 29.0027 36.6811 28.2339 36.6811 27.3816V24.8454C36.6811 23.8298 36.224 22.9289 35.5149 22.3091H36.5754C36.8665 22.3091 37.1202 22.111 37.1904 21.8288L37.5075 20.5607C37.6073 20.1607 37.3046 19.7729 36.8919 19.7729ZM18.2896 18.8308C18.6747 17.8681 19.6073 17.2366 20.6446 17.2366H27.3551C28.3923 17.2366 29.3249 17.8681 29.7101 18.8308L30.7631 21.4637H17.2365L18.2896 18.8308ZM15.5457 27.3711C14.5312 27.3711 13.8548 26.6969 13.8548 25.6855C13.8548 24.6742 14.5312 24 15.5457 24C16.5601 24 18.0819 25.517 18.0819 26.5283C18.0819 27.5396 16.5601 27.3711 15.5457 27.3711ZM32.454 27.3711C31.4395 27.3711 29.9177 27.5396 29.9177 26.5283C29.9177 25.517 31.4395 24 32.454 24C33.4685 24 34.1448 24.6742 34.1448 25.6855C34.1448 26.6969 33.4685 27.3711 32.454 27.3711Z",
|
|
42423
|
-
fill: "#FEFEFE"
|
|
42424
|
-
}));
|
|
42425
|
-
};
|
|
41993
|
+
switch (type) {
|
|
41994
|
+
case REACT_ASYNC_MODE_TYPE:
|
|
41995
|
+
case REACT_CONCURRENT_MODE_TYPE:
|
|
41996
|
+
case REACT_FRAGMENT_TYPE:
|
|
41997
|
+
case REACT_PROFILER_TYPE:
|
|
41998
|
+
case REACT_STRICT_MODE_TYPE:
|
|
41999
|
+
case REACT_SUSPENSE_TYPE:
|
|
42000
|
+
return type;
|
|
42426
42001
|
|
|
42427
|
-
|
|
42428
|
-
|
|
42429
|
-
width: "48",
|
|
42430
|
-
height: "48",
|
|
42431
|
-
viewBox: "0 0 48 48",
|
|
42432
|
-
fill: "none",
|
|
42433
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42434
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42435
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42436
|
-
fill: "#3B5BDB"
|
|
42437
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42438
|
-
d: "M30.7656 35.15C31.9193 35.15 32.8999 34.7462 33.7074 33.9387C34.515 33.1311 34.9188 32.1505 34.9188 30.9969H36.9953C37.1972 30.9969 37.363 30.932 37.4928 30.8022C37.6226 30.6724 37.6875 30.5066 37.6875 30.3047V28.9203C37.6875 28.7184 37.6226 28.5526 37.4928 28.4228C37.363 28.293 37.1972 28.2281 36.9953 28.2281H36.3031V23.5559C36.3031 22.979 36.1012 22.4887 35.6975 22.085L31.3713 17.7588C30.9675 17.355 30.4772 17.1531 29.9004 17.1531H27.9969V15.0766C27.9969 14.4997 27.795 14.0094 27.3912 13.6057C26.9874 13.2019 26.4971 13 25.9203 13H12.0766C11.4997 13 11.0094 13.2019 10.6057 13.6057C10.2019 14.0094 10 14.4997 10 15.0766V28.9203C10 29.4971 10.2019 29.9874 10.6057 30.3912C11.0094 30.795 11.4997 30.9969 12.0766 30.9969H12.7688C12.7688 32.1505 13.1725 33.1311 13.9801 33.9387C14.7876 34.7462 15.7682 35.15 16.9219 35.15C18.0755 35.15 19.0561 34.7462 19.8637 33.9387C20.6712 33.1311 21.075 32.1505 21.075 30.9969H26.6125C26.6125 32.1505 27.0163 33.1311 27.8238 33.9387C28.6314 34.7462 29.612 35.15 30.7656 35.15ZM34.2266 24.075H27.9969V19.2297H29.9004L34.2266 23.5559V24.075ZM16.9219 33.0734C16.3451 33.0734 15.8548 32.8715 15.451 32.4678C15.0472 32.064 14.8453 31.5737 14.8453 30.9969C14.8453 30.4201 15.0472 29.9298 15.451 29.526C15.8548 29.1222 16.3451 28.9203 16.9219 28.9203C17.4987 28.9203 17.989 29.1222 18.3928 29.526C18.7965 29.9298 18.9984 30.4201 18.9984 30.9969C18.9984 31.5737 18.7965 32.064 18.3928 32.4678C17.989 32.8715 17.4987 33.0734 16.9219 33.0734ZM30.7656 33.0734C30.1888 33.0734 29.6985 32.8715 29.2947 32.4678C28.891 32.064 28.6891 31.5737 28.6891 30.9969C28.6891 30.4201 28.891 29.9298 29.2947 29.526C29.6985 29.1222 30.1888 28.9203 30.7656 28.9203C31.3424 28.9203 31.8327 29.1222 32.2365 29.526C32.6403 29.9298 32.8422 30.4201 32.8422 30.9969C32.8422 31.5737 32.6403 32.064 32.2365 32.4678C31.8327 32.8715 31.3424 33.0734 30.7656 33.0734Z",
|
|
42439
|
-
fill: "#FEFEFE"
|
|
42440
|
-
}));
|
|
42441
|
-
};
|
|
42002
|
+
default:
|
|
42003
|
+
var $$typeofType = type && type.$$typeof;
|
|
42442
42004
|
|
|
42443
|
-
|
|
42444
|
-
|
|
42445
|
-
|
|
42446
|
-
|
|
42447
|
-
|
|
42448
|
-
|
|
42449
|
-
|
|
42450
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42451
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42452
|
-
fill: "#3B5BDB"
|
|
42453
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42454
|
-
d: "M14.463 34.1481C14.5417 34.1481 14.6138 34.1153 14.6794 34.0497C14.745 33.9841 14.7778 33.912 14.7778 33.8333V24.074C14.7778 23.733 14.9024 23.4379 15.1516 23.1886C15.4008 22.9394 15.7091 22.8148 16.0764 22.8148H31.1087C31.476 22.8148 31.7843 22.9394 32.0335 23.1886C32.2827 23.4379 32.4074 23.733 32.4074 24.074V33.8333C32.4074 33.912 32.4401 33.9841 32.5057 34.0497C32.5713 34.1153 32.6435 34.1481 32.7222 34.1481H35.8703C35.949 34.1481 36.0212 34.1153 36.0867 34.0497C36.1523 33.9841 36.1851 33.912 36.1851 33.8333V20.3356C36.1851 19.9683 36.0802 19.6273 35.8703 19.3125C35.6604 18.9977 35.3719 18.7616 35.0046 18.6042H35.0439L24.3009 14.1574C23.8287 13.9475 23.3565 13.9475 22.8842 14.1574L12.1806 18.6042C11.8133 18.7616 11.5247 18.9977 11.3148 19.3125C11.1049 19.6273 11 19.9683 11 20.3356V33.8333C11 33.912 11.0328 33.9841 11.0984 34.0497C11.164 34.1153 11.2361 34.1481 11.3148 34.1481H14.463ZM30.8333 26.5926C30.912 26.5926 30.9841 26.5598 31.0497 26.4942C31.1153 26.4286 31.1481 26.3565 31.1481 26.2778V24.3889C31.1481 24.3102 31.1153 24.238 31.0497 24.1724C30.9841 24.1068 30.912 24.074 30.8333 24.074H16.3912C16.2863 24.074 16.2075 24.1068 16.1551 24.1724C16.1026 24.238 16.0764 24.3102 16.0764 24.3889V26.2778C16.0764 26.3565 16.1026 26.4286 16.1551 26.4942C16.2075 26.5598 16.2863 26.5926 16.3912 26.5926H30.8333ZM30.8333 30.3703C30.912 30.3703 30.9841 30.3375 31.0497 30.272C31.1153 30.2064 31.1481 30.1342 31.1481 30.0555V28.1666C31.1481 28.0879 31.1153 28.0158 31.0497 27.9502C30.9841 27.8846 30.912 27.8518 30.8333 27.8518H16.3518C16.2731 27.8518 16.201 27.8846 16.1354 27.9502C16.0698 28.0158 16.037 28.0879 16.037 28.1666V30.0555C16.037 30.1342 16.0698 30.2064 16.1354 30.272C16.201 30.3375 16.2731 30.3703 16.3518 30.3703H30.8333ZM30.8333 34.1481C30.912 34.1481 30.9841 34.1153 31.0497 34.0497C31.1153 33.9841 31.1481 33.912 31.1481 33.8333V31.9444C31.1481 31.8657 31.1153 31.7936 31.0497 31.728C30.9841 31.6624 30.912 31.6296 30.8333 31.6296H16.3518C16.2731 31.6296 16.201 31.6624 16.1354 31.728C16.0698 31.7936 16.037 31.8657 16.037 31.9444V33.8333C16.037 33.912 16.0698 33.9841 16.1354 34.0497C16.201 34.1153 16.2731 34.1481 16.3518 34.1481H30.8333Z",
|
|
42455
|
-
fill: "#FEFEFE"
|
|
42456
|
-
}));
|
|
42457
|
-
};
|
|
42005
|
+
switch ($$typeofType) {
|
|
42006
|
+
case REACT_CONTEXT_TYPE:
|
|
42007
|
+
case REACT_FORWARD_REF_TYPE:
|
|
42008
|
+
case REACT_LAZY_TYPE:
|
|
42009
|
+
case REACT_MEMO_TYPE:
|
|
42010
|
+
case REACT_PROVIDER_TYPE:
|
|
42011
|
+
return $$typeofType;
|
|
42458
42012
|
|
|
42459
|
-
|
|
42460
|
-
|
|
42461
|
-
|
|
42462
|
-
height: "48",
|
|
42463
|
-
viewBox: "0 0 48 48",
|
|
42464
|
-
fill: "none",
|
|
42465
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42466
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42467
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42468
|
-
fill: "#3B5BDB"
|
|
42469
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42470
|
-
d: "M25.8629 35.15C26.1342 35.15 26.3376 35.037 26.4733 34.8109C26.6089 34.5848 26.6164 34.3512 26.4959 34.1101L25.1394 31.8945V30.8094H31.3339C31.5449 30.8094 31.7333 30.7566 31.899 30.6511C32.0648 30.5456 32.1929 30.4024 32.2834 30.2216C32.3738 30.0407 32.4039 29.8523 32.3738 29.6564C32.3437 29.4605 32.2532 29.2721 32.1025 29.0912L28.4853 25.0219H29.887C30.3391 25.0219 30.6556 24.8259 30.8365 24.4341C31.0174 24.0422 30.9721 23.6805 30.7009 23.3489L27.1289 19.2344H28.4401C28.6511 19.2344 28.847 19.1816 29.0279 19.0761C29.2088 18.9706 29.3369 18.8199 29.4122 18.624C29.4876 18.428 29.5102 18.2321 29.4801 18.0362C29.4499 17.8403 29.3595 17.6669 29.2088 17.5162L24.2351 12.2261C24.0844 12.0754 23.9036 12 23.6926 12C23.4816 12 23.3007 12.0754 23.15 12.2261L18.1763 17.5162C18.0256 17.6669 17.9352 17.8403 17.9051 18.0362C17.8749 18.2321 17.8975 18.428 17.9729 18.624C18.0482 18.8199 18.1763 18.9706 18.3572 19.0761C18.5381 19.1816 18.734 19.2344 18.945 19.2344H20.2562L16.6843 23.3489C16.413 23.6805 16.3677 24.0422 16.5486 24.4341C16.7295 24.8259 17.046 25.0219 17.4981 25.0219H18.8998L15.2826 29.0912C15.1319 29.2721 15.0414 29.4605 15.0113 29.6564C14.9812 29.8523 15.0113 30.0407 15.1017 30.2216C15.1922 30.4024 15.3203 30.5456 15.4861 30.6511C15.6518 30.7566 15.8402 30.8094 16.0512 30.8094H22.2457V31.8945L20.8892 34.1101C20.7687 34.3512 20.7762 34.5848 20.9118 34.8109C21.0475 35.037 21.251 35.15 21.5222 35.15H25.8629Z",
|
|
42471
|
-
fill: "#FEFEFE"
|
|
42472
|
-
}));
|
|
42473
|
-
};
|
|
42013
|
+
default:
|
|
42014
|
+
return $$typeof;
|
|
42015
|
+
}
|
|
42474
42016
|
|
|
42475
|
-
|
|
42476
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
42477
|
-
width: "48",
|
|
42478
|
-
height: "48",
|
|
42479
|
-
viewBox: "0 0 48 48",
|
|
42480
|
-
fill: "none",
|
|
42481
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42482
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42483
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42484
|
-
fill: "#3B5BDB"
|
|
42485
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42486
|
-
d: "M32.7935 32.11C33.8183 32.11 34.7763 31.8575 35.6675 31.3525C36.5586 30.8475 37.2567 30.1495 37.7617 29.2583C38.2666 28.3672 38.5191 27.4092 38.5191 26.3844C38.5191 25.3596 38.2592 24.4164 37.7394 23.555C37.2196 22.6936 36.5289 22.0029 35.6675 21.4831C34.806 20.9633 33.8703 20.7033 32.8604 20.7033C32.2069 20.7033 31.5831 20.8073 30.989 21.0152L29.5186 18.5646H33.1723C33.4693 18.5646 33.7218 18.4606 33.9297 18.2527C34.1377 18.0447 34.2416 17.7923 34.2416 17.4952V16.0694C34.2416 15.7723 34.1377 15.5198 33.9297 15.3119C33.7218 15.104 33.4693 15 33.1723 15H31.1672C30.8404 15 30.5731 15.1188 30.3652 15.3565L28.672 17.2279L27.6917 15.5347C27.4838 15.1782 27.1719 15 26.756 15H23.1914C22.9835 15 22.8127 15.0668 22.679 15.2005C22.5454 15.3342 22.4785 15.505 22.4785 15.7129V16.4258C22.4785 16.6338 22.5454 16.8046 22.679 16.9382C22.8127 17.0719 22.9835 17.1388 23.1914 17.1388H26.1322L27.0234 18.5646H20.1615C19.716 18.0002 19.1813 17.5695 18.5575 17.2724C17.8149 16.9457 16.8643 16.7823 15.7058 16.7823H13.2552C12.9284 16.7823 12.6611 16.8863 12.4531 17.0942C12.2452 17.3021 12.1412 17.5546 12.1412 17.8517C12.1412 18.1487 12.2452 18.4012 12.4531 18.6091C12.6611 18.8171 12.9136 18.921 13.2106 18.921H15.7058C16.6564 18.921 17.3693 19.2924 17.8446 20.035L17.3099 20.9261C16.7158 20.7479 16.1068 20.6736 15.483 20.7033C14.5028 20.733 13.5968 21.0004 12.765 21.5054C11.9333 22.0103 11.2724 22.6861 10.7822 23.5327C10.2921 24.3793 10.0322 25.2927 10.0025 26.273C9.97277 27.3127 10.2104 28.2855 10.7154 29.1915C11.2204 30.0975 11.9184 30.8104 12.8096 31.3302C13.7007 31.8501 14.6661 32.11 15.7058 32.11C17.0128 32.11 18.1787 31.709 19.2036 30.907C20.2284 30.1049 20.9042 29.0801 21.2309 27.8325H24.9737C25.2708 27.8325 25.5307 27.7211 25.7535 27.4983C25.9763 27.2755 26.0728 27.0156 26.0431 26.7186C26.0134 25.6492 26.2139 24.6244 26.6446 23.6441C27.0753 22.6639 27.7066 21.8321 28.5383 21.1489L29.1176 22.0846C28.4937 22.6193 28.0036 23.2654 27.6472 24.0229C27.2907 24.7803 27.1125 25.5898 27.1125 26.4512C27.1125 27.4612 27.365 28.3969 27.8699 29.2583C28.3749 30.1198 29.0656 30.8104 29.9419 31.3302C30.8182 31.8501 31.7687 32.11 32.7935 32.11ZM15.7058 29.9713C14.7255 29.9713 13.8864 29.6222 13.1883 28.9242C12.4903 28.2261 12.1412 27.3869 12.1412 26.4067C12.1412 25.4264 12.4903 24.5872 13.1883 23.8892C13.8864 23.1911 14.7255 22.8421 15.7058 22.8421C15.884 22.8421 16.0623 22.8569 16.2405 22.8866L14.4136 26.2284C14.2057 26.5849 14.2057 26.9414 14.4136 27.2978C14.6216 27.6543 14.9335 27.8325 15.3494 27.8325H18.9585C18.6911 28.486 18.2604 29.0058 17.6663 29.392C17.0722 29.7782 16.4187 29.9713 15.7058 29.9713ZM32.994 29.9713C31.9841 30.0307 31.1078 29.7039 30.3652 28.991C29.6225 28.2781 29.2512 27.4166 29.2512 26.4067C29.2512 25.4561 29.578 24.6392 30.2315 23.956L32.4593 27.6097C32.5485 27.7879 32.6896 27.8993 32.8826 27.9439C33.0757 27.9885 33.2465 27.9662 33.3951 27.8771L34.0189 27.476C34.1971 27.3869 34.3085 27.2458 34.353 27.0527C34.3976 26.8597 34.3753 26.6889 34.2862 26.5403L32.1029 22.9312C32.3405 22.8718 32.5782 22.8421 32.8158 22.8421C33.8258 22.8421 34.6872 23.2134 35.4001 23.956C36.113 24.6986 36.4398 25.5749 36.3804 26.5849C36.321 27.5057 35.9719 28.2855 35.3333 28.9242C34.6946 29.5628 33.9149 29.9118 32.994 29.9713Z",
|
|
42487
|
-
fill: "#FEFEFE"
|
|
42488
|
-
}));
|
|
42489
|
-
};
|
|
42017
|
+
}
|
|
42490
42018
|
|
|
42491
|
-
|
|
42492
|
-
|
|
42493
|
-
|
|
42494
|
-
|
|
42495
|
-
viewBox: "0 0 48 48",
|
|
42496
|
-
fill: "none",
|
|
42497
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
42498
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
42499
|
-
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
42500
|
-
fill: "#3B5BDB"
|
|
42501
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
42502
|
-
d: "M36.5244 20.7878C36.8705 20.7878 37.1734 20.6724 37.4329 20.4417C37.6925 20.2109 37.8439 19.9297 37.8872 19.5981C37.9305 19.2664 37.8656 18.9419 37.6925 18.6247L33.972 13.0872C33.7124 12.6834 33.3375 12.4815 32.8472 12.4815H15.2829C14.7926 12.4815 14.4177 12.6834 14.1581 13.0872L10.4809 18.6247C10.279 18.9419 10.1997 19.2664 10.243 19.5981C10.2862 19.9297 10.4376 20.2109 10.6972 20.4417C10.9568 20.6724 11.2596 20.7878 11.6057 20.7878H36.5244ZM25.4495 34.6315C25.8244 34.6315 26.1488 34.4945 26.4228 34.2205C26.6968 33.9465 26.8338 33.6221 26.8338 33.2471V22.1721H24.0651V29.094H15.7588V22.1721H12.9901V33.2471C12.9901 33.6221 13.1271 33.9465 13.4011 34.2205C13.6751 34.4945 13.9995 34.6315 14.3745 34.6315H25.4495ZM34.4479 34.6315C34.6498 34.6315 34.8156 34.5666 34.9454 34.4368C35.0752 34.307 35.1401 34.1412 35.1401 33.9393V22.1721H32.3713V33.9393C32.3713 34.1412 32.4362 34.307 32.566 34.4368C32.6958 34.5666 32.8616 34.6315 33.0635 34.6315H34.4479Z",
|
|
42503
|
-
fill: "#FEFEFE"
|
|
42504
|
-
}));
|
|
42505
|
-
};
|
|
42019
|
+
case REACT_PORTAL_TYPE:
|
|
42020
|
+
return $$typeof;
|
|
42021
|
+
}
|
|
42022
|
+
}
|
|
42506
42023
|
|
|
42507
|
-
|
|
42508
|
-
|
|
42509
|
-
var ACCOUNTS_CONSTRUCTION_ICON = "ACCOUNTS_CONSTRUCTION";
|
|
42510
|
-
var ACCOUNTS_HEALTH_ICON = "ACCOUNTS_HEALTH";
|
|
42511
|
-
var ACCOUNTS_DENTAL_ICON = "ACCOUNTS_DENTAL";
|
|
42512
|
-
var ACCOUNTS_UTILITY_ELECTRIC_ICON = "ACCOUNTS_UTILITY_ELECTRIC";
|
|
42513
|
-
var ACCOUNTS_UTILITY_GAS_ICON = "ACCOUNTS_UTILITY_GAS";
|
|
42514
|
-
var ACCOUNTS_UTILITY_GARBAGE_ICON = "ACCOUNTS_UTILITY_GARBAGE";
|
|
42515
|
-
var ACCOUNTS_UTILITY_WATER_ICON = "ACCOUNTS_UTILITY_WATER";
|
|
42516
|
-
var PROPERTIES_PERSONAL_ICON = "PROPERTIES_PERSONAL";
|
|
42517
|
-
var PROPERTIES_GARAGE_ICON = "PROPERTIES_GARAGE";
|
|
42518
|
-
var PROPERTIES_BUSINESS_ICON = "PROPERTIES_BUSINESS";
|
|
42519
|
-
var PROPERTIES_STOREFRONT_ICON = "PROPERTIES_STOREFRONT";
|
|
42520
|
-
var PROPERTIES_APARTMENT_ICON = "PROPERTIES_APARTMENT";
|
|
42521
|
-
var PROPERTIES_LAND_ICON = "PROPERTIES_LAND";
|
|
42522
|
-
var PROPERTIES_CAR_ICON = "PROPERTIES_CAR";
|
|
42523
|
-
var PROPERTIES_MOTORCYCLE_ICON = "PROPERTIES_MOTORCYCLE";
|
|
42524
|
-
var PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
42525
|
-
var MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
42526
|
-
var iconsMap = (_iconsMap = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_iconsMap, ACCOUNTS_GENERIC_ICON, function (_ref) {
|
|
42527
|
-
var color = _ref.color;
|
|
42528
|
-
return /*#__PURE__*/React__default.createElement(AccountGenericIcon, {
|
|
42529
|
-
color: color
|
|
42530
|
-
});
|
|
42531
|
-
}), ACCOUNTS_CONSTRUCTION_ICON, function (_ref2) {
|
|
42532
|
-
var color = _ref2.color;
|
|
42533
|
-
return /*#__PURE__*/React__default.createElement(AccountConstructionIcon, {
|
|
42534
|
-
color: color
|
|
42535
|
-
});
|
|
42536
|
-
}), ACCOUNTS_HEALTH_ICON, function (_ref3) {
|
|
42537
|
-
var color = _ref3.color;
|
|
42538
|
-
return /*#__PURE__*/React__default.createElement(AccountMedicalIcon, {
|
|
42539
|
-
color: color
|
|
42540
|
-
});
|
|
42541
|
-
}), ACCOUNTS_DENTAL_ICON, function (_ref4) {
|
|
42542
|
-
var color = _ref4.color;
|
|
42543
|
-
return /*#__PURE__*/React__default.createElement(AccountDentalIcon, {
|
|
42544
|
-
color: color
|
|
42545
|
-
});
|
|
42546
|
-
}), ACCOUNTS_UTILITY_ELECTRIC_ICON, function (_ref5) {
|
|
42547
|
-
var color = _ref5.color;
|
|
42548
|
-
return /*#__PURE__*/React__default.createElement(AccountElectricIcon, {
|
|
42549
|
-
color: color
|
|
42550
|
-
});
|
|
42551
|
-
}), ACCOUNTS_UTILITY_GARBAGE_ICON, function (_ref6) {
|
|
42552
|
-
var color = _ref6.color;
|
|
42553
|
-
return /*#__PURE__*/React__default.createElement(AccountGarbageIcon, {
|
|
42554
|
-
color: color
|
|
42555
|
-
});
|
|
42556
|
-
}), ACCOUNTS_UTILITY_GAS_ICON, function (_ref7) {
|
|
42557
|
-
var color = _ref7.color;
|
|
42558
|
-
return /*#__PURE__*/React__default.createElement(AccountGasIcon, {
|
|
42559
|
-
color: color
|
|
42560
|
-
});
|
|
42561
|
-
}), ACCOUNTS_UTILITY_WATER_ICON, function (_ref8) {
|
|
42562
|
-
var color = _ref8.color;
|
|
42563
|
-
return /*#__PURE__*/React__default.createElement(AccountWaterIcon, {
|
|
42564
|
-
color: color
|
|
42565
|
-
});
|
|
42566
|
-
}), PROPERTIES_PERSONAL_ICON, function (_ref9) {
|
|
42567
|
-
var color = _ref9.color;
|
|
42568
|
-
return /*#__PURE__*/React__default.createElement(PropertyPersonalIcon, {
|
|
42569
|
-
color: color
|
|
42570
|
-
});
|
|
42571
|
-
}), PROPERTIES_GARAGE_ICON, function (_ref10) {
|
|
42572
|
-
var color = _ref10.color;
|
|
42573
|
-
return /*#__PURE__*/React__default.createElement(PropertyGarageIcon, {
|
|
42574
|
-
color: color
|
|
42575
|
-
});
|
|
42576
|
-
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_iconsMap, PROPERTIES_BUSINESS_ICON, function (_ref11) {
|
|
42577
|
-
var color = _ref11.color;
|
|
42578
|
-
return /*#__PURE__*/React__default.createElement(PropertyBusinessIcon, {
|
|
42579
|
-
color: color
|
|
42580
|
-
});
|
|
42581
|
-
}), PROPERTIES_STOREFRONT_ICON, function (_ref12) {
|
|
42582
|
-
var color = _ref12.color;
|
|
42583
|
-
return /*#__PURE__*/React__default.createElement(PropertyStorefrontIcon, {
|
|
42584
|
-
color: color
|
|
42585
|
-
});
|
|
42586
|
-
}), PROPERTIES_APARTMENT_ICON, function (_ref13) {
|
|
42587
|
-
var color = _ref13.color;
|
|
42588
|
-
return /*#__PURE__*/React__default.createElement(PropertyApartmentIcon, {
|
|
42589
|
-
color: color
|
|
42590
|
-
});
|
|
42591
|
-
}), PROPERTIES_LAND_ICON, function (_ref14) {
|
|
42592
|
-
var color = _ref14.color;
|
|
42593
|
-
return /*#__PURE__*/React__default.createElement(PropertyLandIcon, {
|
|
42594
|
-
color: color
|
|
42595
|
-
});
|
|
42596
|
-
}), PROPERTIES_CAR_ICON, function (_ref15) {
|
|
42597
|
-
var color = _ref15.color;
|
|
42598
|
-
return /*#__PURE__*/React__default.createElement(PropertyCarIcon, {
|
|
42599
|
-
color: color
|
|
42600
|
-
});
|
|
42601
|
-
}), PROPERTIES_MOTORCYCLE_ICON, function (_ref16) {
|
|
42602
|
-
var color = _ref16.color;
|
|
42603
|
-
return /*#__PURE__*/React__default.createElement(PropertyMotorcycleIcon, {
|
|
42604
|
-
color: color
|
|
42605
|
-
});
|
|
42606
|
-
}), PROPERTIES_COMMERCIAL_AUTO_ICON, function (_ref17) {
|
|
42607
|
-
var color = _ref17.color;
|
|
42608
|
-
return /*#__PURE__*/React__default.createElement(PropertyCommercialVehicleIcon, {
|
|
42609
|
-
color: color
|
|
42610
|
-
});
|
|
42611
|
-
}), MISC_BILL_ICON, function (_ref18) {
|
|
42612
|
-
var color = _ref18.color;
|
|
42613
|
-
return /*#__PURE__*/React__default.createElement(AccountBillIcon, {
|
|
42614
|
-
color: color
|
|
42615
|
-
});
|
|
42616
|
-
}));
|
|
42617
|
-
|
|
42618
|
-
var disabledBackgroundColor$1 = TRANSPARENT;
|
|
42619
|
-
var disabledBorderColor$1 = GHOST_GREY;
|
|
42620
|
-
var disabledColor$1 = MANATEE_GREY;
|
|
42621
|
-
var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
42622
|
-
var backgroundColor$a = LINK_WATER;
|
|
42623
|
-
var borderColor$5 = MOON_RAKER;
|
|
42624
|
-
var color$b = ROYAL_BLUE_VIVID;
|
|
42625
|
-
var fallbackValues$L = {
|
|
42626
|
-
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
42627
|
-
disabledBorderColor: disabledBorderColor$1,
|
|
42628
|
-
disabledColor: disabledColor$1,
|
|
42629
|
-
activeBackgroundColor: activeBackgroundColor$1,
|
|
42630
|
-
backgroundColor: backgroundColor$a,
|
|
42631
|
-
borderColor: borderColor$5,
|
|
42632
|
-
color: color$b
|
|
42633
|
-
};
|
|
42634
|
-
|
|
42635
|
-
var Container = styled__default(Box).withConfig({
|
|
42636
|
-
displayName: "LinkCardstyled__Container",
|
|
42637
|
-
componentId: "sc-l5q1h2-0"
|
|
42638
|
-
})(["display:flex;flex-direction:column;align-items:flex-start;width:100%;gap:40px;flex-shrink:0;align-self:stretch;border-radius:8px;", " transition:all .2s ease-in-out;", ""], function (_ref) {
|
|
42639
|
-
var isDisabled = _ref.isDisabled,
|
|
42640
|
-
theme = _ref.theme;
|
|
42641
|
-
return "\n background-color: ".concat(isDisabled ? theme.disabledBackgroundColor : theme.backgroundColor, ";\n border: 1px solid ").concat(isDisabled ? theme.disabledBorderColor : theme.borderColor, ";\n ");
|
|
42642
|
-
}, function (_ref2) {
|
|
42643
|
-
var isDisabled = _ref2.isDisabled,
|
|
42644
|
-
theme = _ref2.theme;
|
|
42645
|
-
return isDisabled ? "\n &:hover,\n &:active {\n cursor: default;\n box-shadow: none;\n border: 1px solid ".concat(theme.disabledBorderColor, ";\n }\n ") : "\n &:hover,\n &:active {\n cursor: pointer;\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.1),\n 0px 5px 11px 0px rgba(41, 42, 51, 0.1),\n 0px 4px 19px 0px rgba(41, 42, 51, 0.09),\n 0px 27px 26px 0px rgba(41, 42, 51, 0.05),\n 0px 56px 31px 0px rgba(41, 42, 51, 0.01),\n 0px 80px 33px 0px rgba(41, 42, 51, 0);\n }\n\n &:hover:not(:active) {\n border: 1px solid ".concat(theme.borderColor, ";\n }\n\n &:active {\n background-color: ").concat(theme.activeBackgroundColor, ";\n border: 1px solid ").concat(theme.borderColor, ";\n }\n ");
|
|
42646
|
-
});
|
|
42647
|
-
var Title$2 = styled__default(Heading$1).withConfig({
|
|
42648
|
-
displayName: "LinkCardstyled__Title",
|
|
42649
|
-
componentId: "sc-l5q1h2-1"
|
|
42650
|
-
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref3) {
|
|
42651
|
-
var isDisabled = _ref3.isDisabled,
|
|
42652
|
-
theme = _ref3.theme;
|
|
42653
|
-
return "color: ".concat(isDisabled ? theme.disabledColor : theme.color, ";");
|
|
42654
|
-
});
|
|
42655
|
-
var Subtitle = styled__default(Paragraph$1).withConfig({
|
|
42656
|
-
displayName: "LinkCardstyled__Subtitle",
|
|
42657
|
-
componentId: "sc-l5q1h2-2"
|
|
42658
|
-
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150%;letter-spacing:0.14px;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref4) {
|
|
42659
|
-
var isDisabled = _ref4.isDisabled,
|
|
42660
|
-
theme = _ref4.theme;
|
|
42661
|
-
return "color: ".concat(isDisabled ? theme.disabledColor : theme.color, ";");
|
|
42662
|
-
});
|
|
42663
|
-
var Footer = styled__default(Stack).withConfig({
|
|
42664
|
-
displayName: "LinkCardstyled__Footer",
|
|
42665
|
-
componentId: "sc-l5q1h2-3"
|
|
42666
|
-
})(["align-items:center;width:100%;"]);
|
|
42667
|
-
|
|
42668
|
-
var LinkCard = function LinkCard(_ref) {
|
|
42669
|
-
var _ref$title = _ref.title,
|
|
42670
|
-
title = _ref$title === void 0 ? "Test Workflow" : _ref$title,
|
|
42671
|
-
_ref$subtitle = _ref.subtitle,
|
|
42672
|
-
subtitle = _ref$subtitle === void 0 ? "Link your benefit plan" : _ref$subtitle,
|
|
42673
|
-
showLeft = _ref.showLeft,
|
|
42674
|
-
leftContent = _ref.leftContent,
|
|
42675
|
-
showRight = _ref.showRight,
|
|
42676
|
-
rightContent = _ref.rightContent,
|
|
42677
|
-
onClick = _ref.onClick,
|
|
42678
|
-
_ref$extraStyles = _ref.extraStyles,
|
|
42679
|
-
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
42680
|
-
_ref$extraHoverStyles = _ref.extraHoverStyles,
|
|
42681
|
-
extraHoverStyles = _ref$extraHoverStyles === void 0 ? "" : _ref$extraHoverStyles,
|
|
42682
|
-
_ref$extraActiveStyle = _ref.extraActiveStyles,
|
|
42683
|
-
extraActiveStyles = _ref$extraActiveStyle === void 0 ? "" : _ref$extraActiveStyle,
|
|
42684
|
-
themeValues = _ref.themeValues,
|
|
42685
|
-
_ref$titleVariant = _ref.titleVariant,
|
|
42686
|
-
titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant,
|
|
42687
|
-
_ref$disabled = _ref.disabled,
|
|
42688
|
-
disabled = _ref$disabled === void 0 ? false : _ref$disabled;
|
|
42689
|
-
var _useContext = React.useContext(styled.ThemeContext),
|
|
42690
|
-
isMobile = _useContext.isMobile;
|
|
42691
|
-
var regex = /\W/g;
|
|
42692
|
-
var locatorSlug = title.toLowerCase().replaceAll(regex, "-");
|
|
42693
|
-
return /*#__PURE__*/React__default.createElement(Container, {
|
|
42694
|
-
borderRadius: "8px",
|
|
42695
|
-
dataQa: "link-card-".concat(locatorSlug),
|
|
42696
|
-
width: "100%",
|
|
42697
|
-
maxWidth: isMobile ? "100%" : "288px",
|
|
42698
|
-
minWidth: isMobile ? "240px" : "288px",
|
|
42699
|
-
minHeight: "141px",
|
|
42700
|
-
padding: "24px",
|
|
42701
|
-
theme: themeValues,
|
|
42702
|
-
extraStyles: extraStyles,
|
|
42703
|
-
hoverStyles: extraHoverStyles,
|
|
42704
|
-
activeStyles: extraActiveStyles,
|
|
42705
|
-
onClick: disabled ? noop$1 : onClick,
|
|
42706
|
-
"aria-disabled": disabled,
|
|
42707
|
-
isDisabled: disabled,
|
|
42708
|
-
role: "group",
|
|
42709
|
-
"aria-label": "".concat(title, ", ").concat(subtitle)
|
|
42710
|
-
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
42711
|
-
childGap: 0,
|
|
42712
|
-
bottomItem: 3,
|
|
42713
|
-
justify: "space-between",
|
|
42714
|
-
style: {
|
|
42715
|
-
width: "100%"
|
|
42716
|
-
},
|
|
42717
|
-
fullHeight: true
|
|
42718
|
-
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
42719
|
-
padding: 0,
|
|
42720
|
-
width: "100%"
|
|
42721
|
-
}, /*#__PURE__*/React__default.createElement(Title$2, {
|
|
42722
|
-
variant: titleVariant,
|
|
42723
|
-
theme: themeValues,
|
|
42724
|
-
margin: 0,
|
|
42725
|
-
isDisabled: disabled
|
|
42726
|
-
}, title)), /*#__PURE__*/React__default.createElement(Box, {
|
|
42727
|
-
padding: "0 0 40px",
|
|
42728
|
-
width: "100%"
|
|
42729
|
-
}, /*#__PURE__*/React__default.createElement(Subtitle, {
|
|
42730
|
-
variant: "pS",
|
|
42731
|
-
theme: themeValues,
|
|
42732
|
-
isDisabled: disabled
|
|
42733
|
-
}, subtitle)), /*#__PURE__*/React__default.createElement(Box, {
|
|
42734
|
-
background: "transparent",
|
|
42735
|
-
borderWidthOverride: "0 0 0 0",
|
|
42736
|
-
padding: "0",
|
|
42737
|
-
width: "100%"
|
|
42738
|
-
}, /*#__PURE__*/React__default.createElement(Footer, {
|
|
42739
|
-
direction: "row",
|
|
42740
|
-
childGap: "6px",
|
|
42741
|
-
justify: "space-between"
|
|
42742
|
-
}, showLeft && !!leftContent ? leftContent : /*#__PURE__*/React__default.createElement(Box, {
|
|
42743
|
-
extraStyles: "margin-right: auto;"
|
|
42744
|
-
}), showRight && !!rightContent && rightContent))));
|
|
42745
|
-
};
|
|
42746
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
|
|
42747
|
-
|
|
42748
|
-
var LoginForm = function LoginForm(_ref) {
|
|
42749
|
-
var clearOnDismount = _ref.clearOnDismount,
|
|
42750
|
-
fields = _ref.fields,
|
|
42751
|
-
actions = _ref.actions,
|
|
42752
|
-
showErrors = _ref.showErrors,
|
|
42753
|
-
_ref$handleSubmit = _ref.handleSubmit,
|
|
42754
|
-
handleSubmit = _ref$handleSubmit === void 0 ? noop$1 : _ref$handleSubmit;
|
|
42755
|
-
if (clearOnDismount) {
|
|
42756
|
-
React.useEffect(function () {
|
|
42757
|
-
return function () {
|
|
42758
|
-
return actions.form.clear();
|
|
42759
|
-
};
|
|
42760
|
-
}, []);
|
|
42761
|
-
}
|
|
42762
|
-
var emailErrorMessages = _defineProperty(_defineProperty({}, required.error, "Email address is required"), isProbablyEmail.error, "Invalid email address");
|
|
42763
|
-
var passwordErrorMessages = _defineProperty({}, required.error, "Password is required");
|
|
42764
|
-
return /*#__PURE__*/React__default.createElement(FormInputColumn, {
|
|
42765
|
-
role: "form",
|
|
42766
|
-
"aria-label": "Login"
|
|
42767
|
-
}, /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
42768
|
-
labelTextWhenNoError: "Email address",
|
|
42769
|
-
errorMessages: emailErrorMessages,
|
|
42770
|
-
type: "email",
|
|
42771
|
-
field: fields.email,
|
|
42772
|
-
fieldActions: actions.fields.email,
|
|
42773
|
-
showErrors: showErrors,
|
|
42774
|
-
onKeyDown: function onKeyDown(e) {
|
|
42775
|
-
return e.key === "Enter" && handleSubmit(e);
|
|
42776
|
-
},
|
|
42777
|
-
isEmail: true,
|
|
42778
|
-
autocompleteValue: "email"
|
|
42779
|
-
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
42780
|
-
labelTextWhenNoError: "Password",
|
|
42781
|
-
errorMessages: passwordErrorMessages,
|
|
42782
|
-
type: "password",
|
|
42783
|
-
field: fields.password,
|
|
42784
|
-
fieldActions: actions.fields.password,
|
|
42785
|
-
showErrors: showErrors,
|
|
42786
|
-
onKeyDown: function onKeyDown(e) {
|
|
42787
|
-
return e.key === "Enter" && handleSubmit(e);
|
|
42788
|
-
},
|
|
42789
|
-
autocompleteValue: "current-password"
|
|
42790
|
-
}));
|
|
42791
|
-
};
|
|
42792
|
-
|
|
42793
|
-
var formConfig$5 = {
|
|
42794
|
-
email: {
|
|
42795
|
-
validators: [required(), isProbablyEmail()]
|
|
42796
|
-
},
|
|
42797
|
-
password: {
|
|
42798
|
-
validators: [required()]
|
|
42799
|
-
}
|
|
42800
|
-
};
|
|
42801
|
-
var _createFormState$5 = createFormState(formConfig$5),
|
|
42802
|
-
reducer$5 = _createFormState$5.reducer,
|
|
42803
|
-
mapStateToProps$6 = _createFormState$5.mapStateToProps,
|
|
42804
|
-
mapDispatchToProps$5 = _createFormState$5.mapDispatchToProps;
|
|
42805
|
-
|
|
42806
|
-
LoginForm.reducer = reducer$5;
|
|
42807
|
-
LoginForm.mapStateToProps = mapStateToProps$6;
|
|
42808
|
-
LoginForm.mapDispatchToProps = mapDispatchToProps$5;
|
|
42809
|
-
|
|
42810
|
-
/** @license React v16.13.1
|
|
42811
|
-
* react-is.production.min.js
|
|
42812
|
-
*
|
|
42813
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
42814
|
-
*
|
|
42815
|
-
* This source code is licensed under the MIT license found in the
|
|
42816
|
-
* LICENSE file in the root directory of this source tree.
|
|
42817
|
-
*/
|
|
42818
|
-
var b$2="function"===typeof Symbol&&Symbol.for,c$2=b$2?Symbol.for("react.element"):60103,d$1=b$2?Symbol.for("react.portal"):60106,e=b$2?Symbol.for("react.fragment"):60107,f$7=b$2?Symbol.for("react.strict_mode"):60108,g$1=b$2?Symbol.for("react.profiler"):60114,h$1=b$2?Symbol.for("react.provider"):60109,k$1=b$2?Symbol.for("react.context"):60110,l$1=b$2?Symbol.for("react.async_mode"):60111,m=b$2?Symbol.for("react.concurrent_mode"):60111,n$1=b$2?Symbol.for("react.forward_ref"):60112,p$1=b$2?Symbol.for("react.suspense"):60113,q$1=b$2?
|
|
42819
|
-
Symbol.for("react.suspense_list"):60120,r$1=b$2?Symbol.for("react.memo"):60115,t$1=b$2?Symbol.for("react.lazy"):60116,v$1=b$2?Symbol.for("react.block"):60121,w$1=b$2?Symbol.for("react.fundamental"):60117,x$1=b$2?Symbol.for("react.responder"):60118,y$1=b$2?Symbol.for("react.scope"):60119;
|
|
42820
|
-
function z$1(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c$2:switch(a=a.type,a){case l$1:case m:case e:case g$1:case f$7:case p$1:return a;default:switch(a=a&&a.$$typeof,a){case k$1:case n$1:case t$1:case r$1:case h$1:return a;default:return u}}case d$1:return u}}}function A$1(a){return z$1(a)===m}var AsyncMode=l$1;var ConcurrentMode=m;var ContextConsumer=k$1;var ContextProvider=h$1;var Element$1=c$2;var ForwardRef=n$1;var Fragment=e;var Lazy=t$1;var Memo=r$1;var Portal=d$1;
|
|
42821
|
-
var Profiler=g$1;var StrictMode=f$7;var Suspense=p$1;var isAsyncMode=function(a){return A$1(a)||z$1(a)===l$1};var isConcurrentMode=A$1;var isContextConsumer=function(a){return z$1(a)===k$1};var isContextProvider=function(a){return z$1(a)===h$1};var isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c$2};var isForwardRef=function(a){return z$1(a)===n$1};var isFragment=function(a){return z$1(a)===e};var isLazy=function(a){return z$1(a)===t$1};
|
|
42822
|
-
var isMemo=function(a){return z$1(a)===r$1};var isPortal=function(a){return z$1(a)===d$1};var isProfiler=function(a){return z$1(a)===g$1};var isStrictMode=function(a){return z$1(a)===f$7};var isSuspense=function(a){return z$1(a)===p$1};
|
|
42823
|
-
var isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g$1||a===f$7||a===p$1||a===q$1||"object"===typeof a&&null!==a&&(a.$$typeof===t$1||a.$$typeof===r$1||a.$$typeof===h$1||a.$$typeof===k$1||a.$$typeof===n$1||a.$$typeof===w$1||a.$$typeof===x$1||a.$$typeof===y$1||a.$$typeof===v$1)};var typeOf=z$1;
|
|
42824
|
-
|
|
42825
|
-
var reactIs_production_min = {
|
|
42826
|
-
AsyncMode: AsyncMode,
|
|
42827
|
-
ConcurrentMode: ConcurrentMode,
|
|
42828
|
-
ContextConsumer: ContextConsumer,
|
|
42829
|
-
ContextProvider: ContextProvider,
|
|
42830
|
-
Element: Element$1,
|
|
42831
|
-
ForwardRef: ForwardRef,
|
|
42832
|
-
Fragment: Fragment,
|
|
42833
|
-
Lazy: Lazy,
|
|
42834
|
-
Memo: Memo,
|
|
42835
|
-
Portal: Portal,
|
|
42836
|
-
Profiler: Profiler,
|
|
42837
|
-
StrictMode: StrictMode,
|
|
42838
|
-
Suspense: Suspense,
|
|
42839
|
-
isAsyncMode: isAsyncMode,
|
|
42840
|
-
isConcurrentMode: isConcurrentMode,
|
|
42841
|
-
isContextConsumer: isContextConsumer,
|
|
42842
|
-
isContextProvider: isContextProvider,
|
|
42843
|
-
isElement: isElement,
|
|
42844
|
-
isForwardRef: isForwardRef,
|
|
42845
|
-
isFragment: isFragment,
|
|
42846
|
-
isLazy: isLazy,
|
|
42847
|
-
isMemo: isMemo,
|
|
42848
|
-
isPortal: isPortal,
|
|
42849
|
-
isProfiler: isProfiler,
|
|
42850
|
-
isStrictMode: isStrictMode,
|
|
42851
|
-
isSuspense: isSuspense,
|
|
42852
|
-
isValidElementType: isValidElementType,
|
|
42853
|
-
typeOf: typeOf
|
|
42854
|
-
};
|
|
42855
|
-
|
|
42856
|
-
var reactIs_development = createCommonjsModule(function (module, exports) {
|
|
42857
|
-
|
|
42858
|
-
|
|
42859
|
-
|
|
42860
|
-
if (process.env.NODE_ENV !== "production") {
|
|
42861
|
-
(function() {
|
|
42862
|
-
|
|
42863
|
-
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
|
|
42864
|
-
// nor polyfill, then a plain number is used for performance.
|
|
42865
|
-
var hasSymbol = typeof Symbol === 'function' && Symbol.for;
|
|
42866
|
-
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
|
|
42867
|
-
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
|
|
42868
|
-
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
|
|
42869
|
-
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
|
|
42870
|
-
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
|
|
42871
|
-
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
|
|
42872
|
-
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
|
|
42873
|
-
// (unstable) APIs that have been removed. Can we remove the symbols?
|
|
42874
|
-
|
|
42875
|
-
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
|
|
42876
|
-
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
|
|
42877
|
-
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
|
|
42878
|
-
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
|
|
42879
|
-
var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
|
|
42880
|
-
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
|
|
42881
|
-
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
|
|
42882
|
-
var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
|
|
42883
|
-
var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
|
|
42884
|
-
var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
|
|
42885
|
-
var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
|
|
42886
|
-
|
|
42887
|
-
function isValidElementType(type) {
|
|
42888
|
-
return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
42889
|
-
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);
|
|
42890
|
-
}
|
|
42891
|
-
|
|
42892
|
-
function typeOf(object) {
|
|
42893
|
-
if (typeof object === 'object' && object !== null) {
|
|
42894
|
-
var $$typeof = object.$$typeof;
|
|
42895
|
-
|
|
42896
|
-
switch ($$typeof) {
|
|
42897
|
-
case REACT_ELEMENT_TYPE:
|
|
42898
|
-
var type = object.type;
|
|
42899
|
-
|
|
42900
|
-
switch (type) {
|
|
42901
|
-
case REACT_ASYNC_MODE_TYPE:
|
|
42902
|
-
case REACT_CONCURRENT_MODE_TYPE:
|
|
42903
|
-
case REACT_FRAGMENT_TYPE:
|
|
42904
|
-
case REACT_PROFILER_TYPE:
|
|
42905
|
-
case REACT_STRICT_MODE_TYPE:
|
|
42906
|
-
case REACT_SUSPENSE_TYPE:
|
|
42907
|
-
return type;
|
|
42908
|
-
|
|
42909
|
-
default:
|
|
42910
|
-
var $$typeofType = type && type.$$typeof;
|
|
42911
|
-
|
|
42912
|
-
switch ($$typeofType) {
|
|
42913
|
-
case REACT_CONTEXT_TYPE:
|
|
42914
|
-
case REACT_FORWARD_REF_TYPE:
|
|
42915
|
-
case REACT_LAZY_TYPE:
|
|
42916
|
-
case REACT_MEMO_TYPE:
|
|
42917
|
-
case REACT_PROVIDER_TYPE:
|
|
42918
|
-
return $$typeofType;
|
|
42919
|
-
|
|
42920
|
-
default:
|
|
42921
|
-
return $$typeof;
|
|
42922
|
-
}
|
|
42923
|
-
|
|
42924
|
-
}
|
|
42925
|
-
|
|
42926
|
-
case REACT_PORTAL_TYPE:
|
|
42927
|
-
return $$typeof;
|
|
42928
|
-
}
|
|
42929
|
-
}
|
|
42930
|
-
|
|
42931
|
-
return undefined;
|
|
42932
|
-
} // AsyncMode is deprecated along with isAsyncMode
|
|
42024
|
+
return undefined;
|
|
42025
|
+
} // AsyncMode is deprecated along with isAsyncMode
|
|
42933
42026
|
|
|
42934
42027
|
var AsyncMode = REACT_ASYNC_MODE_TYPE;
|
|
42935
42028
|
var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
|
|
@@ -46444,301 +45537,997 @@ var CancelButton = function CancelButton(_ref) {
|
|
|
46444
45537
|
textExtraStyles: "".concat(fontSize),
|
|
46445
45538
|
variant: cancelButtonVariant
|
|
46446
45539
|
});
|
|
46447
|
-
};
|
|
46448
|
-
|
|
46449
|
-
var CloseButton = function CloseButton(_ref) {
|
|
46450
|
-
var _ref$buttonExtraStyle = _ref.buttonExtraStyles,
|
|
46451
|
-
buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
|
|
46452
|
-
_ref$closeButtonText = _ref.closeButtonText,
|
|
46453
|
-
closeButtonText = _ref$closeButtonText === void 0 ? "" : _ref$closeButtonText,
|
|
46454
|
-
_ref$closeButtonVaria = _ref.closeButtonVariant,
|
|
46455
|
-
closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
|
|
46456
|
-
_ref$hideModal = _ref.hideModal,
|
|
46457
|
-
hideModal = _ref$hideModal === void 0 ? noop$1 : _ref$hideModal,
|
|
46458
|
-
_ref$isMobile = _ref.isMobile,
|
|
46459
|
-
isMobile = _ref$isMobile === void 0 ? false : _ref$isMobile;
|
|
46460
|
-
var fontSize = "font-size: ".concat(isMobile ? FONT_SIZE.XS : FONT_SIZE.SM, ";");
|
|
46461
|
-
var width = isMobile ? "width: 100%;" : "";
|
|
46462
|
-
return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
46463
|
-
action: hideModal,
|
|
46464
|
-
borderRadius: BORDER_RADIUS.MD,
|
|
46465
|
-
className: "modal-close-button",
|
|
46466
|
-
dataQa: closeButtonText,
|
|
46467
|
-
extraStyles: "".concat(buttonExtraStyles, "; margin: 0; ").concat(width),
|
|
46468
|
-
name: closeButtonText,
|
|
46469
|
-
role: "button",
|
|
46470
|
-
text: closeButtonText,
|
|
46471
|
-
textExtraStyles: "".concat(fontSize),
|
|
46472
|
-
variant: closeButtonVariant
|
|
45540
|
+
};
|
|
45541
|
+
|
|
45542
|
+
var CloseButton = function CloseButton(_ref) {
|
|
45543
|
+
var _ref$buttonExtraStyle = _ref.buttonExtraStyles,
|
|
45544
|
+
buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
|
|
45545
|
+
_ref$closeButtonText = _ref.closeButtonText,
|
|
45546
|
+
closeButtonText = _ref$closeButtonText === void 0 ? "" : _ref$closeButtonText,
|
|
45547
|
+
_ref$closeButtonVaria = _ref.closeButtonVariant,
|
|
45548
|
+
closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
|
|
45549
|
+
_ref$hideModal = _ref.hideModal,
|
|
45550
|
+
hideModal = _ref$hideModal === void 0 ? noop$1 : _ref$hideModal,
|
|
45551
|
+
_ref$isMobile = _ref.isMobile,
|
|
45552
|
+
isMobile = _ref$isMobile === void 0 ? false : _ref$isMobile;
|
|
45553
|
+
var fontSize = "font-size: ".concat(isMobile ? FONT_SIZE.XS : FONT_SIZE.SM, ";");
|
|
45554
|
+
var width = isMobile ? "width: 100%;" : "";
|
|
45555
|
+
return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
45556
|
+
action: hideModal,
|
|
45557
|
+
borderRadius: BORDER_RADIUS.MD,
|
|
45558
|
+
className: "modal-close-button",
|
|
45559
|
+
dataQa: closeButtonText,
|
|
45560
|
+
extraStyles: "".concat(buttonExtraStyles, "; margin: 0; ").concat(width),
|
|
45561
|
+
name: closeButtonText,
|
|
45562
|
+
role: "button",
|
|
45563
|
+
text: closeButtonText,
|
|
45564
|
+
textExtraStyles: "".concat(fontSize),
|
|
45565
|
+
variant: closeButtonVariant
|
|
45566
|
+
});
|
|
45567
|
+
};
|
|
45568
|
+
|
|
45569
|
+
var CloseIconButton = function CloseIconButton(_ref) {
|
|
45570
|
+
var _ref$buttonExtraStyle = _ref.buttonExtraStyles,
|
|
45571
|
+
_ref$hideModal = _ref.hideModal,
|
|
45572
|
+
hideModal = _ref$hideModal === void 0 ? noop$1 : _ref$hideModal,
|
|
45573
|
+
_ref$iconWidth = _ref.iconWidth,
|
|
45574
|
+
iconWidth = _ref$iconWidth === void 0 ? "24px" : _ref$iconWidth,
|
|
45575
|
+
_ref$iconHeight = _ref.iconHeight,
|
|
45576
|
+
iconHeight = _ref$iconHeight === void 0 ? "24px" : _ref$iconHeight,
|
|
45577
|
+
_ref$ariaLabel = _ref.ariaLabel,
|
|
45578
|
+
ariaLabel = _ref$ariaLabel === void 0 ? "Close Modal" : _ref$ariaLabel;
|
|
45579
|
+
return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
45580
|
+
action: hideModal,
|
|
45581
|
+
"aria-label": ariaLabel,
|
|
45582
|
+
contentOverride: true,
|
|
45583
|
+
extraStyles: "\n min-height: auto;\n min-width: auto;\n height: 1.5rem;\n margin: 0 0 0 0.5rem;\n &:focus {\n outline-offset: -3px;\n }\n ",
|
|
45584
|
+
variant: "smallGhost"
|
|
45585
|
+
}, /*#__PURE__*/React__default.createElement(CloseIcon, {
|
|
45586
|
+
role: "img",
|
|
45587
|
+
"aria-hidden": "true",
|
|
45588
|
+
iconWidth: iconWidth,
|
|
45589
|
+
iconHeight: iconHeight
|
|
45590
|
+
}));
|
|
45591
|
+
};
|
|
45592
|
+
|
|
45593
|
+
var ContinueButton = function ContinueButton(_ref) {
|
|
45594
|
+
var _ref$buttonExtraStyle = _ref.buttonExtraStyles,
|
|
45595
|
+
buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
|
|
45596
|
+
_ref$continueAction = _ref.continueAction,
|
|
45597
|
+
continueAction = _ref$continueAction === void 0 ? noop$1 : _ref$continueAction,
|
|
45598
|
+
_ref$continueButtonTe = _ref.continueButtonText,
|
|
45599
|
+
continueButtonText = _ref$continueButtonTe === void 0 ? "" : _ref$continueButtonTe,
|
|
45600
|
+
_ref$continueURL = _ref.continueURL,
|
|
45601
|
+
continueURL = _ref$continueURL === void 0 ? "" : _ref$continueURL,
|
|
45602
|
+
_ref$continueButtonVa = _ref.continueButtonVariant,
|
|
45603
|
+
continueButtonVariant = _ref$continueButtonVa === void 0 ? "primary" : _ref$continueButtonVa,
|
|
45604
|
+
_ref$isContinueAction = _ref.isContinueActionDisabled,
|
|
45605
|
+
isContinueActionDisabled = _ref$isContinueAction === void 0 ? false : _ref$isContinueAction,
|
|
45606
|
+
_ref$isLoading = _ref.isLoading,
|
|
45607
|
+
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading,
|
|
45608
|
+
_ref$isMobile = _ref.isMobile,
|
|
45609
|
+
isMobile = _ref$isMobile === void 0 ? false : _ref$isMobile,
|
|
45610
|
+
_ref$useDangerButton = _ref.useDangerButton,
|
|
45611
|
+
useDangerButton = _ref$useDangerButton === void 0 ? false : _ref$useDangerButton;
|
|
45612
|
+
var ContinueButtonAtom = continueURL ? ButtonWithLink : ButtonWithAction;
|
|
45613
|
+
var fontSize = "font-size: ".concat(isMobile ? FONT_SIZE.XS : FONT_SIZE.SM, ";");
|
|
45614
|
+
var width = isMobile ? "width: 100%;" : "";
|
|
45615
|
+
return /*#__PURE__*/React__default.createElement(ContinueButtonAtom, {
|
|
45616
|
+
action: continueAction,
|
|
45617
|
+
borderRadius: BORDER_RADIUS.MD,
|
|
45618
|
+
className: "modal-continue-button",
|
|
45619
|
+
dataQa: continueButtonText,
|
|
45620
|
+
disabled: isContinueActionDisabled,
|
|
45621
|
+
extraStyles: "".concat(buttonExtraStyles, "; margin: 0; ").concat(width),
|
|
45622
|
+
isLoading: isLoading,
|
|
45623
|
+
linkExtraStyles: "display: inline-block; ".concat(width),
|
|
45624
|
+
name: continueButtonText,
|
|
45625
|
+
role: "button",
|
|
45626
|
+
text: continueButtonText,
|
|
45627
|
+
textExtraStyles: "".concat(fontSize),
|
|
45628
|
+
url: continueURL,
|
|
45629
|
+
variant: useDangerButton ? "danger" : continueButtonVariant
|
|
45630
|
+
});
|
|
45631
|
+
};
|
|
45632
|
+
|
|
45633
|
+
/*
|
|
45634
|
+
Default Modal molecule
|
|
45635
|
+
Uses react-aria-modal behind the scenes for a11y purposes
|
|
45636
|
+
Styling accomplished with our atoms / layout primitives
|
|
45637
|
+
|
|
45638
|
+
Cancel button will (for now) always use hideModal as its action
|
|
45639
|
+
Continue button takes an action, if you want to navigate to
|
|
45640
|
+
a different route (as with a link) connect() and use "push" from @thecb/connected-react-router
|
|
45641
|
+
*/
|
|
45642
|
+
|
|
45643
|
+
var getApplicationNode$1 = function getApplicationNode() {
|
|
45644
|
+
return document.getElementById("root");
|
|
45645
|
+
};
|
|
45646
|
+
var Modal$2 = function Modal(_ref) {
|
|
45647
|
+
var _ref$blurUnderlay = _ref.blurUnderlay,
|
|
45648
|
+
blurUnderlay = _ref$blurUnderlay === void 0 ? true : _ref$blurUnderlay,
|
|
45649
|
+
_ref$buttonExtraStyle = _ref.buttonExtraStyles,
|
|
45650
|
+
buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
|
|
45651
|
+
_ref$cancelAction = _ref.cancelAction,
|
|
45652
|
+
cancelAction = _ref$cancelAction === void 0 ? noop$1 : _ref$cancelAction,
|
|
45653
|
+
_ref$cancelButtonText = _ref.cancelButtonText,
|
|
45654
|
+
cancelButtonText = _ref$cancelButtonText === void 0 ? "Cancel" : _ref$cancelButtonText,
|
|
45655
|
+
_ref$cancelButtonVari = _ref.cancelButtonVariant,
|
|
45656
|
+
cancelButtonVariant = _ref$cancelButtonVari === void 0 ? "secondary" : _ref$cancelButtonVari,
|
|
45657
|
+
_ref$children = _ref.children,
|
|
45658
|
+
children = _ref$children === void 0 ? [] : _ref$children,
|
|
45659
|
+
_ref$closeButtonText = _ref.closeButtonText,
|
|
45660
|
+
closeButtonText = _ref$closeButtonText === void 0 ? "Close" : _ref$closeButtonText,
|
|
45661
|
+
_ref$closeButtonVaria = _ref.closeButtonVariant,
|
|
45662
|
+
closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
|
|
45663
|
+
_ref$continueAction = _ref.continueAction,
|
|
45664
|
+
continueAction = _ref$continueAction === void 0 ? noop$1 : _ref$continueAction,
|
|
45665
|
+
_ref$continueButtonTe = _ref.continueButtonText,
|
|
45666
|
+
continueButtonText = _ref$continueButtonTe === void 0 ? "Continue" : _ref$continueButtonTe,
|
|
45667
|
+
_ref$continueButtonVa = _ref.continueButtonVariant,
|
|
45668
|
+
continueButtonVariant = _ref$continueButtonVa === void 0 ? "primary" : _ref$continueButtonVa,
|
|
45669
|
+
_ref$continueURL = _ref.continueURL,
|
|
45670
|
+
continueURL = _ref$continueURL === void 0 ? "" : _ref$continueURL,
|
|
45671
|
+
_ref$customWidth = _ref.customWidth,
|
|
45672
|
+
customWidth = _ref$customWidth === void 0 ? "" : _ref$customWidth,
|
|
45673
|
+
_ref$dataQa = _ref.dataQa,
|
|
45674
|
+
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa,
|
|
45675
|
+
_ref$defaultWrapper = _ref.defaultWrapper,
|
|
45676
|
+
defaultWrapper = _ref$defaultWrapper === void 0 ? true : _ref$defaultWrapper,
|
|
45677
|
+
_ref$hideModal = _ref.hideModal,
|
|
45678
|
+
hideModal = _ref$hideModal === void 0 ? noop$1 : _ref$hideModal,
|
|
45679
|
+
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
45680
|
+
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele,
|
|
45681
|
+
_ref$isContinueAction = _ref.isContinueActionDisabled,
|
|
45682
|
+
isContinueActionDisabled = _ref$isContinueAction === void 0 ? false : _ref$isContinueAction,
|
|
45683
|
+
_ref$isLoading = _ref.isLoading,
|
|
45684
|
+
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading,
|
|
45685
|
+
_ref$maxHeight = _ref.maxHeight,
|
|
45686
|
+
maxHeight = _ref$maxHeight === void 0 ? "" : _ref$maxHeight,
|
|
45687
|
+
_ref$modalBodyBg = _ref.modalBodyBg,
|
|
45688
|
+
modalBodyBg = _ref$modalBodyBg === void 0 ? "" : _ref$modalBodyBg,
|
|
45689
|
+
_ref$modalBodyText = _ref.modalBodyText,
|
|
45690
|
+
modalBodyText = _ref$modalBodyText === void 0 ? "" : _ref$modalBodyText,
|
|
45691
|
+
_ref$modalHeaderBg = _ref.modalHeaderBg,
|
|
45692
|
+
modalHeaderBg = _ref$modalHeaderBg === void 0 ? "" : _ref$modalHeaderBg,
|
|
45693
|
+
_ref$modalHeaderText = _ref.modalHeaderText,
|
|
45694
|
+
modalHeaderText = _ref$modalHeaderText === void 0 ? "" : _ref$modalHeaderText,
|
|
45695
|
+
_ref$modalOpen = _ref.modalOpen,
|
|
45696
|
+
modalOpen = _ref$modalOpen === void 0 ? false : _ref$modalOpen,
|
|
45697
|
+
_ref$noButtons = _ref.noButtons,
|
|
45698
|
+
noButtons = _ref$noButtons === void 0 ? false : _ref$noButtons,
|
|
45699
|
+
_ref$onExit = _ref.onExit,
|
|
45700
|
+
onExit = _ref$onExit === void 0 ? hideModal : _ref$onExit,
|
|
45701
|
+
_ref$onlyCloseButton = _ref.onlyCloseButton,
|
|
45702
|
+
onlyCloseButton = _ref$onlyCloseButton === void 0 ? false : _ref$onlyCloseButton,
|
|
45703
|
+
_ref$onlyContinueButt = _ref.onlyContinueButton,
|
|
45704
|
+
onlyContinueButton = _ref$onlyContinueButt === void 0 ? false : _ref$onlyContinueButt,
|
|
45705
|
+
_ref$showCloseIconBut = _ref.showCloseIconButton,
|
|
45706
|
+
showCloseIconButton = _ref$showCloseIconBut === void 0 ? false : _ref$showCloseIconBut,
|
|
45707
|
+
_ref$underlayClickExi = _ref.underlayClickExits,
|
|
45708
|
+
underlayClickExits = _ref$underlayClickExi === void 0 ? true : _ref$underlayClickExi,
|
|
45709
|
+
_ref$useDangerButton = _ref.useDangerButton,
|
|
45710
|
+
useDangerButton = _ref$useDangerButton === void 0 ? false : _ref$useDangerButton;
|
|
45711
|
+
var _useContext = React.useContext(styled.ThemeContext),
|
|
45712
|
+
isMobile = _useContext.isMobile;
|
|
45713
|
+
|
|
45714
|
+
// `AriaModal` uses `focus-trap` as a transient dependency. It automatically looks
|
|
45715
|
+
// for a tabbable node when the modal mounts. When it doesn't find one, it looks to
|
|
45716
|
+
// the `fallbackFocus` option. However, React does not guarantee the ref supplied to
|
|
45717
|
+
// this option will be populated on initial render when `focus-trap` is checking
|
|
45718
|
+
// these option. When there are no buttons in the modal, this causes an error.
|
|
45719
|
+
// Because `focus-trap` cannot be disabled, the ref itself requires a default value
|
|
45720
|
+
// to satisfy `focus-trap` until React populates it with the real ref value.
|
|
45721
|
+
//
|
|
45722
|
+
// See:
|
|
45723
|
+
// - https://react.dev/reference/react/useRef#caveats
|
|
45724
|
+
// - https://github.com/davidtheclark/react-aria-modal/pull/103
|
|
45725
|
+
// - https://github.com/focus-trap/focus-trap?tab=readme-ov-file#createoptions
|
|
45726
|
+
var modalContainerRef = React.useRef("#react-aria-modal-dialog");
|
|
45727
|
+
var hasCloseButton = onlyCloseButton && !noButtons;
|
|
45728
|
+
var hasCancelButton = !onlyContinueButton && !onlyCloseButton && !noButtons;
|
|
45729
|
+
var hasContinueButton = onlyContinueButton && !noButtons || !onlyCloseButton && !noButtons;
|
|
45730
|
+
return /*#__PURE__*/React__default.createElement("div", {
|
|
45731
|
+
ref: modalContainerRef,
|
|
45732
|
+
tabIndex: "-1",
|
|
45733
|
+
"data-qa": dataQa
|
|
45734
|
+
}, modalOpen && /*#__PURE__*/React__default.createElement(reactAriaModal, {
|
|
45735
|
+
focusTrapOptions: {
|
|
45736
|
+
// fallback to resolve Jest unit test errors when tabbable doesn't exist in jsdom https://github.com/focus-trap/focus-trap-react/issues/91
|
|
45737
|
+
fallbackFocus: modalContainerRef === null || modalContainerRef === void 0 ? void 0 : modalContainerRef.current
|
|
45738
|
+
},
|
|
45739
|
+
onExit: onExit,
|
|
45740
|
+
getApplicationNode: getApplicationNode$1,
|
|
45741
|
+
titleText: modalHeaderText,
|
|
45742
|
+
underlayStyle: {
|
|
45743
|
+
display: "flex",
|
|
45744
|
+
flexDirection: "column",
|
|
45745
|
+
justifyContent: "center",
|
|
45746
|
+
alignItems: "center",
|
|
45747
|
+
background: "rgba(41, 42, 51, 0.45)",
|
|
45748
|
+
backdropFilter: blurUnderlay ? "blur(4px)" : "none",
|
|
45749
|
+
WebkitBackdropFilter: blurUnderlay ? "blur(4px)" : "none"
|
|
45750
|
+
},
|
|
45751
|
+
dialogStyle: {
|
|
45752
|
+
borderRadius: BORDER_RADIUS.MD,
|
|
45753
|
+
margin: SPACING.XS,
|
|
45754
|
+
overflow: "auto",
|
|
45755
|
+
width: isMobile ? "" : customWidth || "576px"
|
|
45756
|
+
},
|
|
45757
|
+
underlayClickExits: underlayClickExits,
|
|
45758
|
+
"aria-modal": true,
|
|
45759
|
+
initialFocus: initialFocusSelector,
|
|
45760
|
+
focusDialog: !initialFocusSelector // Focus the dialogue box itself if no selector for initial focus was provided
|
|
45761
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
45762
|
+
padding: "0",
|
|
45763
|
+
boxShadow: "inset 0px -2px 0px 0px rgb(0, 80, 149)"
|
|
45764
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
45765
|
+
background: modalHeaderBg || WHITE,
|
|
45766
|
+
borderColor: SILVER_GREY,
|
|
45767
|
+
borderWidthOverride: "0 0 ".concat(BORDER_THIN, " 0"),
|
|
45768
|
+
padding: "".concat(SPACING.XS, " ").concat(SPACING.MD)
|
|
45769
|
+
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
45770
|
+
justify: showCloseIconButton ? "space-between" : "flex-start",
|
|
45771
|
+
align: showCloseIconButton && isMobile ? "flex-start" : "center",
|
|
45772
|
+
nowrap: true
|
|
45773
|
+
}, /*#__PURE__*/React__default.createElement(Title$1, {
|
|
45774
|
+
as: "h2",
|
|
45775
|
+
weight: FONT_WEIGHT_SEMIBOLD,
|
|
45776
|
+
fontSize: isMobile ? FONT_SIZE.MD : FONT_SIZE.LG
|
|
45777
|
+
}, modalHeaderText), showCloseIconButton && /*#__PURE__*/React__default.createElement(CloseIconButton, {
|
|
45778
|
+
hideModal: hideModal,
|
|
45779
|
+
iconHeight: isMobile ? "20px" : "24px",
|
|
45780
|
+
iconWidth: isMobile ? "20px" : "24px"
|
|
45781
|
+
}))), /*#__PURE__*/React__default.createElement(Box, {
|
|
45782
|
+
background: modalBodyBg || ATHENS_GREY,
|
|
45783
|
+
padding: "0"
|
|
45784
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
45785
|
+
padding: SPACING.MD,
|
|
45786
|
+
borderWidthOverride: !noButtons && "0 0 ".concat(BORDER_THIN, " 0"),
|
|
45787
|
+
borderColor: !noButtons && SILVER_GREY,
|
|
45788
|
+
extraStyles: maxHeight ? "max-height: ".concat(maxHeight, "; overflow: auto;") : ""
|
|
45789
|
+
}, defaultWrapper ? /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
45790
|
+
variant: isMobile ? "pS" : "p"
|
|
45791
|
+
}, modalBodyText) : /*#__PURE__*/React__default.createElement(Box, {
|
|
45792
|
+
padding: maxHeight ? "0 0 ".concat(SPACING.XS, " 0") : "0"
|
|
45793
|
+
}, modalBodyText)), noButtons ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null) : /*#__PURE__*/React__default.createElement(ButtonLayoutWrapper, {
|
|
45794
|
+
isMobile: isMobile
|
|
45795
|
+
}, [hasCancelButton && /*#__PURE__*/React__default.createElement(CancelButton, {
|
|
45796
|
+
buttonExtraStyles: buttonExtraStyles,
|
|
45797
|
+
cancelAction: cancelAction,
|
|
45798
|
+
cancelButtonText: cancelButtonText,
|
|
45799
|
+
cancelButtonVariant: cancelButtonVariant,
|
|
45800
|
+
hideModal: hideModal,
|
|
45801
|
+
isMobile: isMobile,
|
|
45802
|
+
key: "cancel"
|
|
45803
|
+
}), hasContinueButton && /*#__PURE__*/React__default.createElement(ContinueButton, {
|
|
45804
|
+
buttonExtraStyles: buttonExtraStyles,
|
|
45805
|
+
continueAction: continueAction,
|
|
45806
|
+
continueButtonText: continueButtonText,
|
|
45807
|
+
continueURL: continueURL,
|
|
45808
|
+
continueButtonVariant: continueButtonVariant,
|
|
45809
|
+
isContinueActionDisabled: isContinueActionDisabled,
|
|
45810
|
+
isLoading: isLoading,
|
|
45811
|
+
isMobile: isMobile,
|
|
45812
|
+
key: "continue",
|
|
45813
|
+
useDangerButton: useDangerButton
|
|
45814
|
+
}), hasCloseButton && /*#__PURE__*/React__default.createElement(CloseButton, {
|
|
45815
|
+
buttonExtraStyles: buttonExtraStyles,
|
|
45816
|
+
closeButtonText: closeButtonText,
|
|
45817
|
+
closeButtonVariant: closeButtonVariant,
|
|
45818
|
+
hideModal: hideModal,
|
|
45819
|
+
isMobile: isMobile,
|
|
45820
|
+
key: "close"
|
|
45821
|
+
})].filter(function (button) {
|
|
45822
|
+
return button;
|
|
45823
|
+
}))))), children);
|
|
45824
|
+
};
|
|
45825
|
+
var ModalControlV2 = withWindowSize(Modal$2);
|
|
45826
|
+
|
|
45827
|
+
var _excluded$F = ["version"];
|
|
45828
|
+
var Modal$3 = function Modal(_ref) {
|
|
45829
|
+
var _ref$version = _ref.version,
|
|
45830
|
+
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
45831
|
+
rest = _objectWithoutProperties(_ref, _excluded$F);
|
|
45832
|
+
var ModalControl = version === "v1" ? Modal$1 : ModalControlV2;
|
|
45833
|
+
return /*#__PURE__*/React__default.createElement(ModalControl, rest);
|
|
45834
|
+
};
|
|
45835
|
+
|
|
45836
|
+
var IdleModal = function IdleModal(_ref) {
|
|
45837
|
+
var modalOpen = _ref.modalOpen,
|
|
45838
|
+
toggleModal = _ref.toggleModal,
|
|
45839
|
+
_ref$timeLeftToLogout = _ref.timeLeftToLogout,
|
|
45840
|
+
timeLeftToLogout = _ref$timeLeftToLogout === void 0 ? 0 : _ref$timeLeftToLogout,
|
|
45841
|
+
_ref$totalLogoutTime = _ref.totalLogoutTime,
|
|
45842
|
+
totalLogoutTime = _ref$totalLogoutTime === void 0 ? 30 : _ref$totalLogoutTime,
|
|
45843
|
+
logout = _ref.logout,
|
|
45844
|
+
cancelLogout = _ref.cancelLogout,
|
|
45845
|
+
useCheckoutContent = _ref.useCheckoutContent;
|
|
45846
|
+
var percent = (totalLogoutTime - timeLeftToLogout) * (100 / totalLogoutTime);
|
|
45847
|
+
var transition = {
|
|
45848
|
+
ease: "easeInOut",
|
|
45849
|
+
duration: totalLogoutTime
|
|
45850
|
+
};
|
|
45851
|
+
var variants = {
|
|
45852
|
+
enter: {
|
|
45853
|
+
x: "-100%",
|
|
45854
|
+
backgroundColor: "#317D4F"
|
|
45855
|
+
},
|
|
45856
|
+
animate: {
|
|
45857
|
+
x: ["-100%", "".concat(percent, "%")],
|
|
45858
|
+
backgroundColor: ["#317D4F", "#93A441", "#F4CB32", "#E36E43", "#D11053"],
|
|
45859
|
+
times: [0, 0.4, 0.5, 0.6, 0.8],
|
|
45860
|
+
transition: transition
|
|
45861
|
+
}
|
|
45862
|
+
};
|
|
45863
|
+
var continueText = useCheckoutContent ? "Continue" : "Stay Logged In";
|
|
45864
|
+
var cancelText = useCheckoutContent ? "End Session" : "Log Off";
|
|
45865
|
+
var paragraphText = useCheckoutContent ? "Are you still there? Your payment will be cancelled in ".concat(timeLeftToLogout, " seconds.") : "Are you still there? For your security, you will be logged out in ".concat(timeLeftToLogout, " seconds.");
|
|
45866
|
+
var modalBody = /*#__PURE__*/React__default.createElement(Box, {
|
|
45867
|
+
padding: "0"
|
|
45868
|
+
}, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Paragraph$1, null, paragraphText), /*#__PURE__*/React__default.createElement(Motion, null, /*#__PURE__*/React__default.createElement(Box, {
|
|
45869
|
+
padding: "0 0 1px 0",
|
|
45870
|
+
minHeight: "10px",
|
|
45871
|
+
width: "100%",
|
|
45872
|
+
borderRadius: "6px",
|
|
45873
|
+
extraStyles: "position: relative; overflow: hidden;"
|
|
45874
|
+
}, /*#__PURE__*/React__default.createElement(Motion, {
|
|
45875
|
+
padding: "0 0 1px 0",
|
|
45876
|
+
height: "10px",
|
|
45877
|
+
width: "100%",
|
|
45878
|
+
borderRadius: "6px",
|
|
45879
|
+
extraStyles: "position: absolute;",
|
|
45880
|
+
variants: variants,
|
|
45881
|
+
initial: "enter",
|
|
45882
|
+
animate: modalOpen ? "animate" : "enter",
|
|
45883
|
+
exit: "enter"
|
|
45884
|
+
})))));
|
|
45885
|
+
var modalExtraProps = {
|
|
45886
|
+
modalHeaderText: "Your session is about to expire!",
|
|
45887
|
+
modalBodyText: modalBody,
|
|
45888
|
+
continueButtonText: continueText,
|
|
45889
|
+
cancelButtonText: cancelText,
|
|
45890
|
+
continueAction: function continueAction() {
|
|
45891
|
+
cancelLogout();
|
|
45892
|
+
toggleModal(false);
|
|
45893
|
+
},
|
|
45894
|
+
cancelAction: function cancelAction() {
|
|
45895
|
+
logout();
|
|
45896
|
+
toggleModal(false);
|
|
45897
|
+
}
|
|
45898
|
+
};
|
|
45899
|
+
return /*#__PURE__*/React__default.createElement(Modal$3, _extends({
|
|
45900
|
+
showModal: function showModal() {
|
|
45901
|
+
return toggleModal(true);
|
|
45902
|
+
},
|
|
45903
|
+
hideModal: function hideModal() {
|
|
45904
|
+
cancelLogout();
|
|
45905
|
+
toggleModal(false);
|
|
45906
|
+
},
|
|
45907
|
+
modalOpen: modalOpen,
|
|
45908
|
+
defaultWrapper: false,
|
|
45909
|
+
underlayClickExits: false
|
|
45910
|
+
}, modalExtraProps), /*#__PURE__*/React__default.createElement(Box, {
|
|
45911
|
+
padding: "0"
|
|
45912
|
+
}));
|
|
45913
|
+
};
|
|
45914
|
+
|
|
45915
|
+
var AccountBillIcon = function AccountBillIcon(_ref) {
|
|
45916
|
+
var color = _ref.color;
|
|
45917
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
45918
|
+
width: "48",
|
|
45919
|
+
height: "48",
|
|
45920
|
+
viewBox: "0 0 48 48",
|
|
45921
|
+
fill: "none",
|
|
45922
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45923
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
45924
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
45925
|
+
fill: color
|
|
45926
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
45927
|
+
fillRule: "evenodd",
|
|
45928
|
+
clipRule: "evenodd",
|
|
45929
|
+
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4062 32.8906 17.1406 32.6719 16.9219L28.0781 12.3281C27.8594 12.1094 27.5937 12 27.2812 12H27V18H33ZM18.375 16.5H22.125C22.2187 16.5 22.3047 16.4609 22.3828 16.3828C22.4609 16.3047 22.5 16.2188 22.5 16.125V15.375C22.5 15.2813 22.4609 15.1953 22.3828 15.1172C22.3047 15.0391 22.2187 15 22.125 15H18.375C18.2812 15 18.1953 15.0391 18.1172 15.1172C18.0391 15.1953 18 15.2813 18 15.375V16.125C18 16.2188 18.0391 16.3047 18.1172 16.3828C18.1953 16.4609 18.2812 16.5 18.375 16.5ZM22.125 19.5H18.375C18.2812 19.5 18.1953 19.4609 18.1172 19.3828C18.0391 19.3047 18 19.2188 18 19.125V18.375C18 18.2813 18.0391 18.1953 18.1172 18.1172C18.1953 18.0391 18.2812 18 18.375 18H22.125C22.2187 18 22.3047 18.0391 22.3828 18.1172C22.4609 18.1953 22.5 18.2813 22.5 18.375V19.125C22.5 19.2188 22.4609 19.3047 22.3828 19.3828C22.3047 19.4609 22.2187 19.5 22.125 19.5ZM23.625 33H24.375C24.4687 33 24.5547 32.9609 24.6328 32.8828C24.7109 32.8047 24.75 32.7188 24.75 32.625V31.5C25.3125 31.4688 25.7891 31.25 26.1797 30.8438C26.5703 30.4375 26.7656 29.9531 26.7656 29.3906C26.7656 28.9219 26.625 28.5 26.3437 28.125C26.0625 27.75 25.7031 27.4844 25.2656 27.3281L23.1562 26.7188C23.0312 26.6875 22.9297 26.6172 22.8516 26.5078C22.7734 26.3984 22.7344 26.2656 22.7344 26.1094C22.7344 25.9531 22.7891 25.8125 22.8984 25.6875C23.0078 25.5625 23.1406 25.5 23.2969 25.5H24.6094C24.8281 25.5 25.0312 25.5547 25.2187 25.6641C25.4062 25.7734 25.5625 25.7656 25.6875 25.6406L26.25 25.125C26.3437 25.0313 26.3828 24.9297 26.3672 24.8203C26.3516 24.7109 26.2969 24.625 26.2031 24.5625C25.7656 24.2188 25.2812 24.0313 24.75 24V22.875C24.75 22.7813 24.7109 22.6953 24.6328 22.6172C24.5547 22.5391 24.4687 22.5 24.375 22.5H23.625C23.5312 22.5 23.4453 22.5391 23.3672 22.6172C23.2891 22.6953 23.25 22.7813 23.25 22.875V24C22.6875 24.0313 22.2109 24.25 21.8203 24.6563C21.4297 25.0625 21.2344 25.5469 21.2344 26.1094C21.2344 26.5781 21.375 27 21.6562 27.375C21.9375 27.75 22.2969 28.0156 22.7344 28.1719L24.8437 28.7812C24.9687 28.8125 25.0703 28.8828 25.1484 28.9922C25.2266 29.1016 25.2656 29.2344 25.2656 29.3906C25.2656 29.5469 25.2109 29.6875 25.1016 29.8125C24.9922 29.9375 24.8594 30 24.7031 30H23.3906C23.1719 30 22.9687 29.9453 22.7812 29.8359C22.5937 29.7266 22.4375 29.7344 22.3125 29.8594L21.75 30.375C21.6562 30.4688 21.6172 30.5703 21.6328 30.6797C21.6484 30.7891 21.7031 30.875 21.7969 30.9375C22.2344 31.2812 22.7187 31.4688 23.25 31.5V32.625C23.25 32.7188 23.2891 32.8047 23.3672 32.8828C23.4453 32.9609 23.5312 33 23.625 33Z",
|
|
45930
|
+
fill: "#FEFEFE"
|
|
45931
|
+
}));
|
|
45932
|
+
};
|
|
45933
|
+
|
|
45934
|
+
var AccountGenericIcon = function AccountGenericIcon(_ref) {
|
|
45935
|
+
var color = _ref.color;
|
|
45936
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
45937
|
+
width: "48",
|
|
45938
|
+
height: "48",
|
|
45939
|
+
viewBox: "0 0 48 48",
|
|
45940
|
+
fill: "none",
|
|
45941
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45942
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
45943
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
45944
|
+
fill: color
|
|
45945
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
45946
|
+
fillRule: "evenodd",
|
|
45947
|
+
clipRule: "evenodd",
|
|
45948
|
+
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4062 32.8906 17.1406 32.6719 16.9219L28.0781 12.3281C27.8594 12.1094 27.5937 12 27.2812 12H27V18H33ZM18.375 16.5H22.125C22.2187 16.5 22.3047 16.4609 22.3828 16.3828C22.4609 16.3047 22.5 16.2187 22.5 16.125V15.375C22.5 15.2812 22.4609 15.1953 22.3828 15.1172C22.3047 15.0391 22.2187 15 22.125 15H18.375C18.2812 15 18.1953 15.0391 18.1172 15.1172C18.0391 15.1953 18 15.2812 18 15.375V16.125C18 16.2187 18.0391 16.3047 18.1172 16.3828C18.1953 16.4609 18.2812 16.5 18.375 16.5ZM22.125 19.5H18.375C18.2812 19.5 18.1953 19.4609 18.1172 19.3828C18.0391 19.3047 18 19.2187 18 19.125V18.375C18 18.2812 18.0391 18.1953 18.1172 18.1172C18.1953 18.0391 18.2812 18 18.375 18H22.125C22.2187 18 22.3047 18.0391 22.3828 18.1172C22.4609 18.1953 22.5 18.2812 22.5 18.375V19.125C22.5 19.2187 22.4609 19.3047 22.3828 19.3828C22.3047 19.4609 22.2187 19.5 22.125 19.5ZM18.75 28.5H29.25C29.4687 28.5 29.6484 28.4297 29.7891 28.2891C29.9297 28.1484 30 27.9688 30 27.75V23.25C30 23.0313 29.9297 22.8516 29.7891 22.7109C29.6484 22.5703 29.4687 22.5 29.25 22.5H18.75C18.5312 22.5 18.3516 22.5703 18.2109 22.7109C18.0703 22.8516 18 23.0313 18 23.25V27.75C18 27.9688 18.0703 28.1484 18.2109 28.2891C18.3516 28.4297 18.5312 28.5 18.75 28.5ZM28.5 27V24H19.5V27H28.5ZM25.875 33H29.625C29.7188 33 29.8047 32.9609 29.8828 32.8828C29.9609 32.8047 30 32.7187 30 32.625V31.875C30 31.7813 29.9609 31.6953 29.8828 31.6172C29.8047 31.5391 29.7188 31.5 29.625 31.5H25.875C25.7812 31.5 25.6953 31.5391 25.6172 31.6172C25.5391 31.6953 25.5 31.7813 25.5 31.875V32.625C25.5 32.7187 25.5391 32.8047 25.6172 32.8828C25.6953 32.9609 25.7812 33 25.875 33Z",
|
|
45949
|
+
fill: "#FEFEFE"
|
|
45950
|
+
}));
|
|
45951
|
+
};
|
|
45952
|
+
|
|
45953
|
+
var AccountConstructionIcon = function AccountConstructionIcon(_ref) {
|
|
45954
|
+
var color = _ref.color;
|
|
45955
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
45956
|
+
width: "48",
|
|
45957
|
+
height: "48",
|
|
45958
|
+
viewBox: "0 0 48 48",
|
|
45959
|
+
fill: "none",
|
|
45960
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45961
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
45962
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
45963
|
+
fill: color
|
|
45964
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
45965
|
+
fillRule: "evenodd",
|
|
45966
|
+
clipRule: "evenodd",
|
|
45967
|
+
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4062 32.8906 17.1406 32.6719 16.9219L28.0781 12.3281C27.8594 12.1094 27.5937 12 27.2812 12H27V18H33ZM18.375 16.5H22.125C22.2187 16.5 22.3047 16.4609 22.3828 16.3828C22.4609 16.3047 22.5 16.2188 22.5 16.125V15.375C22.5 15.2813 22.4609 15.1953 22.3828 15.1172C22.3047 15.0391 22.2187 15 22.125 15H18.375C18.2812 15 18.1953 15.0391 18.1172 15.1172C18.0391 15.1953 18 15.2813 18 15.375V16.125C18 16.2188 18.0391 16.3047 18.1172 16.3828C18.1953 16.4609 18.2812 16.5 18.375 16.5ZM22.125 19.5H18.375C18.2812 19.5 18.1953 19.4609 18.1172 19.3828C18.0391 19.3047 18 19.2188 18 19.125V18.375C18 18.2813 18.0391 18.1953 18.1172 18.1172C18.1953 18.0391 18.2812 18 18.375 18H22.125C22.2187 18 22.3047 18.0391 22.3828 18.1172C22.4609 18.1953 22.5 18.2813 22.5 18.375V19.125C22.5 19.2188 22.4609 19.3047 22.3828 19.3828C22.3047 19.4609 22.2187 19.5 22.125 19.5ZM23.625 33H24.375C24.4687 33 24.5547 32.9609 24.6328 32.8828C24.7109 32.8047 24.75 32.7188 24.75 32.625V31.5C25.3125 31.4688 25.7891 31.25 26.1797 30.8438C26.5703 30.4375 26.7656 29.9531 26.7656 29.3906C26.7656 28.9219 26.625 28.5 26.3437 28.125C26.0625 27.75 25.7031 27.4844 25.2656 27.3281L23.1562 26.7188C23.0312 26.6875 22.9297 26.6172 22.8516 26.5078C22.7734 26.3984 22.7344 26.2656 22.7344 26.1094C22.7344 25.9531 22.7891 25.8125 22.8984 25.6875C23.0078 25.5625 23.1406 25.5 23.2969 25.5H24.6094C24.8281 25.5 25.0312 25.5547 25.2187 25.6641C25.4062 25.7734 25.5625 25.7656 25.6875 25.6406L26.25 25.125C26.3437 25.0313 26.3828 24.9297 26.3672 24.8203C26.3516 24.7109 26.2969 24.625 26.2031 24.5625C25.7656 24.2188 25.2812 24.0313 24.75 24V22.875C24.75 22.7813 24.7109 22.6953 24.6328 22.6172C24.5547 22.5391 24.4687 22.5 24.375 22.5H23.625C23.5312 22.5 23.4453 22.5391 23.3672 22.6172C23.2891 22.6953 23.25 22.7813 23.25 22.875V24C22.6875 24.0313 22.2109 24.25 21.8203 24.6563C21.4297 25.0625 21.2344 25.5469 21.2344 26.1094C21.2344 26.5781 21.375 27 21.6562 27.375C21.9375 27.75 22.2969 28.0156 22.7344 28.1719L24.8437 28.7812C24.9687 28.8125 25.0703 28.8828 25.1484 28.9922C25.2266 29.1016 25.2656 29.2344 25.2656 29.3906C25.2656 29.5469 25.2109 29.6875 25.1016 29.8125C24.9922 29.9375 24.8594 30 24.7031 30H23.3906C23.1719 30 22.9687 29.9453 22.7812 29.8359C22.5937 29.7266 22.4375 29.7344 22.3125 29.8594L21.75 30.375C21.6562 30.4688 21.6172 30.5703 21.6328 30.6797C21.6484 30.7891 21.7031 30.875 21.7969 30.9375C22.2344 31.2812 22.7187 31.4688 23.25 31.5V32.625C23.25 32.7188 23.2891 32.8047 23.3672 32.8828C23.4453 32.9609 23.5312 33 23.625 33Z",
|
|
45968
|
+
fill: "#FEFEFE"
|
|
45969
|
+
}));
|
|
45970
|
+
};
|
|
45971
|
+
|
|
45972
|
+
var AccountDentalIcon = function AccountDentalIcon(_ref) {
|
|
45973
|
+
var color = _ref.color;
|
|
45974
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
45975
|
+
width: "48",
|
|
45976
|
+
height: "48",
|
|
45977
|
+
viewBox: "0 0 48 48",
|
|
45978
|
+
fill: "none",
|
|
45979
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45980
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
45981
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
45982
|
+
fill: color
|
|
45983
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
45984
|
+
d: "M28.1548 35.14C28.4576 35.14 28.7315 35.0463 28.9766 34.8589C29.2217 34.6714 29.373 34.4191 29.4307 34.102L29.7767 32.6314C30.1516 30.9879 30.4543 28.9695 30.685 26.5763C30.858 24.6444 31.377 23.1017 32.242 21.9484C32.7322 21.2852 33.0638 20.5427 33.2368 19.7209C33.4098 18.8992 33.3954 18.0413 33.1936 17.1475C32.9629 16.1671 32.4871 15.3093 31.7663 14.574C31.0454 13.8388 30.1948 13.3558 29.2145 13.1251C28.0323 12.8079 26.7491 13.154 25.3651 14.1631C25.2786 14.2208 25.1633 14.2785 25.0191 14.3362L24.8893 14.3794L26.1436 15.2012C26.2878 15.2877 26.3815 15.4246 26.4248 15.6121C26.468 15.7995 26.4392 15.9725 26.3382 16.1311C26.2373 16.2897 26.0932 16.3906 25.9057 16.4338C25.7183 16.4771 25.5381 16.441 25.3651 16.3257L21.04 13.5576C20.0308 13.0098 19.0648 12.8656 18.1421 13.1251C17.1618 13.3558 16.3112 13.8388 15.5903 14.574C14.8695 15.3093 14.3937 16.1671 14.163 17.1475C13.9612 18.0413 13.9468 18.8992 14.1198 19.7209C14.2928 20.5427 14.6244 21.2852 15.1146 21.9484C15.9796 23.1017 16.4986 24.6444 16.6716 26.5763C16.9023 28.9695 17.205 30.9879 17.5799 32.6314L17.9259 34.102C17.9835 34.4191 18.1349 34.6714 18.38 34.8589C18.6251 35.0463 18.899 35.14 19.2018 35.14C19.5046 35.14 19.7713 35.0463 20.0019 34.8589C20.2326 34.6714 20.3912 34.4336 20.4777 34.1452L21.9482 28.1333C22.0636 27.7585 22.2798 27.4413 22.597 27.1818C22.9142 26.9223 23.2746 26.7925 23.6783 26.7925C24.082 26.7925 24.4424 26.9223 24.7596 27.1818C25.0768 27.4413 25.293 27.7585 25.4083 28.1333L26.8789 34.1452C26.9654 34.4336 27.124 34.6714 27.3547 34.8589C27.5853 35.0463 27.852 35.14 28.1548 35.14Z",
|
|
45985
|
+
fill: "#FEFEFE"
|
|
45986
|
+
}));
|
|
45987
|
+
};
|
|
45988
|
+
|
|
45989
|
+
var AccountElectricIcon = function AccountElectricIcon(_ref) {
|
|
45990
|
+
var color = _ref.color;
|
|
45991
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
45992
|
+
width: "48",
|
|
45993
|
+
height: "48",
|
|
45994
|
+
viewBox: "0 0 48 48",
|
|
45995
|
+
fill: "none",
|
|
45996
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
45997
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
45998
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
45999
|
+
fill: color
|
|
46000
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46001
|
+
d: "M29.8438 19.2297V14.3844C29.8438 14.0094 29.7068 13.685 29.4328 13.411C29.1588 13.137 28.8343 13 28.4594 13C28.0844 13 27.76 13.137 27.486 13.411C27.212 13.685 27.075 14.0094 27.075 14.3844V19.2297H29.8438ZM21.5375 19.2297V14.3844C21.5375 14.0094 21.4005 13.685 21.1265 13.411C20.8525 13.137 20.5281 13 20.1531 13C19.7782 13 19.4537 13.137 19.1797 13.411C18.9057 13.685 18.7687 14.0094 18.7687 14.3844V19.2297H21.5375ZM25.6906 35.15V30.8671C27.2769 30.5498 28.5964 29.7567 29.6491 28.4877C30.7018 27.2187 31.2281 25.7478 31.2281 24.075V22.6906H31.9203C32.1222 22.6906 32.288 22.6257 32.4178 22.4959C32.5476 22.3662 32.6125 22.2003 32.6125 21.9984V20.6141C32.6125 20.4122 32.5476 20.2463 32.4178 20.1166C32.288 19.9868 32.1222 19.9219 31.9203 19.9219H16.6922C16.4903 19.9219 16.3245 19.9868 16.1947 20.1166C16.0649 20.2463 16 20.4122 16 20.6141V21.9984C16 22.2003 16.0649 22.3662 16.1947 22.4959C16.3245 22.6257 16.4903 22.6906 16.6922 22.6906H17.3844V24.075C17.3844 25.7478 17.9107 27.2187 18.9634 28.4877C20.0161 29.7567 21.3356 30.5498 22.9219 30.8671V35.15H25.6906Z",
|
|
46002
|
+
fill: "#FEFEFE"
|
|
46003
|
+
}));
|
|
46004
|
+
};
|
|
46005
|
+
|
|
46006
|
+
var AccountGarbageIcon = function AccountGarbageIcon(_ref) {
|
|
46007
|
+
var color = _ref.color;
|
|
46008
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46009
|
+
width: "48",
|
|
46010
|
+
height: "48",
|
|
46011
|
+
viewBox: "0 0 48 48",
|
|
46012
|
+
fill: "none",
|
|
46013
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46014
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46015
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46016
|
+
fill: color
|
|
46017
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46018
|
+
fillRule: "evenodd",
|
|
46019
|
+
clipRule: "evenodd",
|
|
46020
|
+
d: "M33.4179 16.7612C33.5671 16.7612 33.694 16.7089 33.7985 16.6045C33.9029 16.5 33.9552 16.3731 33.9552 16.2239V14.9701C33.9552 14.6716 33.8507 14.4179 33.6417 14.2089C33.4328 14 33.1791 13.8955 32.8806 13.8955H27.8656L27.4627 13.0448C27.3731 12.8657 27.2388 12.7239 27.0597 12.6194C26.8806 12.5149 26.6865 12.4627 26.4776 12.4627H21.3731C21.1642 12.4627 20.9701 12.5149 20.791 12.6194C20.6119 12.7239 20.4776 12.8657 20.388 13.0448L19.9851 13.8955H14.9701C14.6716 13.8955 14.4179 14 14.209 14.2089C14 14.4179 13.8955 14.6716 13.8955 14.9701V16.2239C13.8955 16.3731 13.9478 16.5 14.0522 16.6045C14.1567 16.7089 14.2836 16.7612 14.4328 16.7612H33.4179ZM30.3731 35.388C30.9701 35.388 31.4776 35.179 31.8955 34.7611C32.3134 34.3432 32.5223 33.8358 32.5223 33.2388V18.7313C32.5223 18.5821 32.4701 18.4552 32.3656 18.3507C32.2611 18.2463 32.1343 18.194 31.985 18.194H15.8657C15.7164 18.194 15.5895 18.2463 15.4851 18.3507C15.3806 18.4552 15.3284 18.5821 15.3284 18.7313V33.2388C15.3284 33.8358 15.5373 34.3432 15.9552 34.7611C16.3731 35.179 16.8806 35.388 17.4776 35.388H30.3731ZM19.1119 32.3208C19.2463 32.4552 19.4179 32.5223 19.6269 32.5223C19.8358 32.5223 20.0074 32.4552 20.1418 32.3208C20.2761 32.1865 20.3433 32.0149 20.3433 31.8059V21.7761C20.3433 21.5671 20.2761 21.3955 20.1418 21.2612C20.0074 21.1268 19.8358 21.0597 19.6269 21.0597C19.4179 21.0597 19.2463 21.1268 19.1119 21.2612C18.9776 21.3955 18.9104 21.5671 18.9104 21.7761V31.8059C18.9104 32.0149 18.9776 32.1865 19.1119 32.3208ZM23.9254 32.5223C23.7164 32.5223 23.5448 32.4552 23.4104 32.3208C23.2761 32.1865 23.2089 32.0149 23.2089 31.8059V21.7761C23.2089 21.5671 23.2761 21.3955 23.4104 21.2612C23.5448 21.1268 23.7164 21.0597 23.9254 21.0597C24.1343 21.0597 24.3059 21.1268 24.4403 21.2612C24.5746 21.3955 24.6418 21.5671 24.6418 21.7761V31.8059C24.6418 32.0149 24.5746 32.1865 24.4403 32.3208C24.3059 32.4552 24.1343 32.5223 23.9254 32.5223ZM27.7089 32.3208C27.8433 32.4552 28.0149 32.5223 28.2238 32.5223C28.4328 32.5223 28.6044 32.4552 28.7388 32.3208C28.8731 32.1865 28.9403 32.0149 28.9403 31.8059V21.7761C28.9403 21.5671 28.8731 21.3955 28.7388 21.2612C28.6044 21.1268 28.4328 21.0597 28.2238 21.0597C28.0149 21.0597 27.8433 21.1268 27.7089 21.2612C27.5746 21.3955 27.5074 21.5671 27.5074 21.7761V31.8059C27.5074 32.0149 27.5746 32.1865 27.7089 32.3208Z",
|
|
46021
|
+
fill: "#FEFEFE"
|
|
46022
|
+
}));
|
|
46023
|
+
};
|
|
46024
|
+
|
|
46025
|
+
var AccountGasIcon = function AccountGasIcon(_ref) {
|
|
46026
|
+
var color = _ref.color;
|
|
46027
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46028
|
+
width: "48",
|
|
46029
|
+
height: "48",
|
|
46030
|
+
viewBox: "0 0 48 48",
|
|
46031
|
+
fill: "none",
|
|
46032
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46033
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46034
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46035
|
+
fill: color
|
|
46036
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46037
|
+
d: "M23.9253 35.394C25.4776 35.394 26.9104 35.0059 28.2238 34.2298C29.5373 33.4537 30.5821 32.4089 31.3582 31.0955C32.1343 29.7821 32.5223 28.3492 32.5223 26.797C32.5223 25.4836 32.2985 24.2597 31.8507 23.1254C31.4626 22.2298 30.8955 21.3493 30.1492 20.4836C29.7015 19.9761 29 19.2746 28.0447 18.3791C27 17.4239 26.2985 16.6776 25.9403 16.1403C25.3134 15.3045 25 14.4388 25 13.5433C25 13.1851 24.8806 12.909 24.6418 12.7149C24.403 12.5209 24.1194 12.4388 23.791 12.4687C23.4627 12.4985 23.2089 12.6627 23.0298 12.9612C21.8955 14.5732 21.2537 16.006 21.1045 17.2597C20.9552 18.2746 21.1343 19.2 21.6418 20.0358C21.9403 20.5433 22.5224 21.2149 23.388 22.0507C24.0448 22.7075 24.4925 23.2149 24.7313 23.5731C25.1492 24.1403 25.3582 24.7373 25.3582 25.3642C25.3582 26.1701 25.0746 26.8492 24.5074 27.4015C23.9403 27.9537 23.2612 28.2298 22.4701 28.2298C21.6791 28.2298 21.0074 27.9463 20.4552 27.3791C19.903 26.8119 19.6269 26.1254 19.6269 25.3194V25.3194V21.5134C19.6269 21.1851 19.5224 20.9239 19.3134 20.7299C19.1045 20.5358 18.8507 20.4313 18.5522 20.4164C18.2537 20.4015 18 20.5134 17.791 20.7522C17.1045 21.4687 16.5373 22.3045 16.0895 23.2597C15.5821 24.394 15.3284 25.5731 15.3284 26.797C15.3284 28.3492 15.7164 29.7821 16.4925 31.0955C17.2686 32.4089 18.3134 33.4537 19.6269 34.2298C20.9403 35.0059 22.3731 35.394 23.9253 35.394Z",
|
|
46038
|
+
fill: "#FEFEFE"
|
|
46039
|
+
}));
|
|
46040
|
+
};
|
|
46041
|
+
|
|
46042
|
+
var AccountMedicalIcon = function AccountMedicalIcon(_ref) {
|
|
46043
|
+
var color = _ref.color;
|
|
46044
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46045
|
+
width: "48",
|
|
46046
|
+
height: "48",
|
|
46047
|
+
viewBox: "0 0 48 48",
|
|
46048
|
+
fill: "none",
|
|
46049
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46050
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46051
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46052
|
+
fill: color
|
|
46053
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46054
|
+
fillRule: "evenodd",
|
|
46055
|
+
clipRule: "evenodd",
|
|
46056
|
+
d: "M31.875 36C32.1875 36 32.4531 35.8906 32.6719 35.6719C32.8906 35.4531 33 35.1875 33 34.875V19.5H26.625C26.3125 19.5 26.0469 19.3906 25.8281 19.1719C25.6094 18.9531 25.5 18.6875 25.5 18.375V12H16.125C15.8125 12 15.5469 12.1094 15.3281 12.3281C15.1094 12.5469 15 12.8125 15 13.125V34.875C15 35.1875 15.1094 35.4531 15.3281 35.6719C15.5469 35.8906 15.8125 36 16.125 36H31.875ZM33 18V17.7188C33 17.4063 32.8906 17.1406 32.6718 16.9219L28.0781 12.3281C27.8593 12.1094 27.5937 12 27.2812 12H27V18H33ZM22.875 31.5H25.125C25.2187 31.5 25.3047 31.4609 25.3828 31.3828C25.4609 31.3047 25.5 31.2188 25.5 31.125V28.5H28.125C28.2187 28.5 28.3047 28.4609 28.3828 28.3828C28.4609 28.3047 28.5 28.2188 28.5 28.125V25.875C28.5 25.7812 28.4609 25.6953 28.3828 25.6172C28.3047 25.5391 28.2187 25.5 28.125 25.5H25.5V22.875C25.5 22.7812 25.4609 22.6953 25.3828 22.6172C25.3047 22.5391 25.2187 22.5 25.125 22.5H22.875C22.7812 22.5 22.6953 22.5391 22.6172 22.6172C22.539 22.6953 22.5 22.7812 22.5 22.875V25.5H19.875C19.7812 25.5 19.6953 25.5391 19.6172 25.6172C19.539 25.6953 19.5 25.7812 19.5 25.875V28.125C19.5 28.2188 19.539 28.3047 19.6172 28.3828C19.6953 28.4609 19.7812 28.5 19.875 28.5H22.5V31.125C22.5 31.2188 22.539 31.3047 22.6172 31.3828C22.6953 31.4609 22.7812 31.5 22.875 31.5Z",
|
|
46057
|
+
fill: "#FEFEFE"
|
|
46058
|
+
}));
|
|
46059
|
+
};
|
|
46060
|
+
|
|
46061
|
+
var AccountWaterIcon = function AccountWaterIcon(_ref) {
|
|
46062
|
+
var color = _ref.color;
|
|
46063
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46064
|
+
width: "48",
|
|
46065
|
+
height: "48",
|
|
46066
|
+
viewBox: "0 0 48 48",
|
|
46067
|
+
fill: "none",
|
|
46068
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46069
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46070
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46071
|
+
fill: color
|
|
46072
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46073
|
+
fillRule: "evenodd",
|
|
46074
|
+
clipRule: "evenodd",
|
|
46075
|
+
d: "M27.9627 35.3015C26.7537 36.0805 25.4328 36.47 24 36.47C22.5672 36.47 21.2463 36.0805 20.0373 35.3015C18.8284 34.5225 17.8731 33.4676 17.1717 32.1368C16.4702 30.8061 16.1194 29.3617 16.1194 27.8037C16.1194 26.5378 16.3881 25.2882 16.9254 24.0548C17.2537 23.3082 17.8806 22.2047 18.806 20.744C19.7313 19.2834 20.4328 18.1149 20.9104 17.2386C21.6567 15.778 22.2537 14.2362 22.7015 12.6133C22.8209 12.1589 23.0672 11.8424 23.4403 11.6639C23.8134 11.4854 24.1866 11.4854 24.5597 11.6639C24.9328 11.8424 25.1791 12.1589 25.2985 12.6133C25.7463 14.2362 26.3582 15.7942 27.1343 17.2873C27.5821 18.1636 28.2686 19.324 29.194 20.7684C30.1194 22.2128 30.7462 23.3082 31.0746 24.0548C31.6119 25.2557 31.8806 26.5054 31.8806 27.8037C31.8806 29.3617 31.5298 30.8061 30.8283 32.1368C30.1268 33.4676 29.1716 34.5225 27.9627 35.3015ZM21.4925 32.6237C22.2686 33.1106 23.1045 33.354 24 33.354C24.2089 33.354 24.3806 33.281 24.5149 33.1349C24.6492 32.9889 24.7164 32.8022 24.7164 32.575C24.7164 32.3478 24.6492 32.1612 24.5149 32.0151C24.3806 31.8691 24.2089 31.796 24 31.796C23.0149 31.796 22.1716 31.4146 21.4701 30.6519C20.7687 29.8891 20.4179 28.9722 20.4179 27.9011C20.4179 27.6739 20.3507 27.4872 20.2164 27.3412C20.0821 27.1951 19.9104 27.1221 19.7015 27.1221C19.4925 27.1221 19.3209 27.1951 19.1866 27.3412C19.0522 27.4872 18.9851 27.6739 18.9851 27.9011C18.9851 28.8748 19.209 29.7836 19.6567 30.6275C20.1045 31.4715 20.7164 32.1368 21.4925 32.6237Z",
|
|
46076
|
+
fill: "#FEFEFE"
|
|
46077
|
+
}));
|
|
46078
|
+
};
|
|
46079
|
+
|
|
46080
|
+
var PropertyApartmentIcon = function PropertyApartmentIcon(_ref) {
|
|
46081
|
+
var color = _ref.color;
|
|
46082
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46083
|
+
width: "48",
|
|
46084
|
+
height: "48",
|
|
46085
|
+
viewBox: "0 0 48 48",
|
|
46086
|
+
fill: "none",
|
|
46087
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46088
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46089
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46090
|
+
fill: color
|
|
46091
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46092
|
+
d: "M33.3812 35.15V34.2848C33.3812 34.1406 33.3308 34.018 33.2298 33.917C33.1289 33.8161 33.0063 33.7656 32.8621 33.7656H31.9969V14.0383C31.9969 13.7499 31.8959 13.5047 31.694 13.3028C31.4922 13.1009 31.247 13 30.9586 13H16.4227C16.1342 13 15.8891 13.1009 15.6872 13.3028C15.4853 13.5047 15.3844 13.7499 15.3844 14.0383V33.7656H14.5191C14.3749 33.7656 14.2524 33.8161 14.1514 33.917C14.0505 34.018 14 34.1406 14 34.2848V35.15H33.3812ZM21.7871 18.5375H20.0566C19.9124 18.5375 19.7899 18.487 19.6889 18.3861C19.588 18.2851 19.5375 18.1626 19.5375 18.0184V16.2879C19.5375 16.1437 19.588 16.0211 19.6889 15.9202C19.7899 15.8192 19.9124 15.7687 20.0566 15.7687H21.7871C21.9313 15.7687 22.0539 15.8192 22.1548 15.9202C22.2558 16.0211 22.3063 16.1437 22.3063 16.2879V18.0184C22.3063 18.1626 22.2558 18.2851 22.1548 18.3861C22.0539 18.487 21.9313 18.5375 21.7871 18.5375ZM27.3246 18.5375H25.5941C25.4499 18.5375 25.3274 18.487 25.2264 18.3861C25.1255 18.2851 25.075 18.1626 25.075 18.0184V16.2879C25.075 16.1437 25.1255 16.0211 25.2264 15.9202C25.3274 15.8192 25.4499 15.7687 25.5941 15.7687H27.3246C27.4688 15.7687 27.5914 15.8192 27.6923 15.9202C27.7933 16.0211 27.8438 16.1437 27.8438 16.2879V18.0184C27.8438 18.1626 27.7933 18.2851 27.6923 18.3861C27.5914 18.487 27.4688 18.5375 27.3246 18.5375ZM21.7871 22.6906H20.0566C19.9124 22.6906 19.7899 22.6402 19.6889 22.5392C19.588 22.4383 19.5375 22.3157 19.5375 22.1715V20.441C19.5375 20.2968 19.588 20.1742 19.6889 20.0733C19.7899 19.9723 19.9124 19.9219 20.0566 19.9219H21.7871C21.9313 19.9219 22.0539 19.9723 22.1548 20.0733C22.2558 20.1742 22.3063 20.2968 22.3063 20.441V22.1715C22.3063 22.3157 22.2558 22.4383 22.1548 22.5392C22.0539 22.6402 21.9313 22.6906 21.7871 22.6906ZM27.3246 22.6906H25.5941C25.4499 22.6906 25.3274 22.6402 25.2264 22.5392C25.1255 22.4383 25.075 22.3157 25.075 22.1715V20.441C25.075 20.2968 25.1255 20.1742 25.2264 20.0733C25.3274 19.9723 25.4499 19.9219 25.5941 19.9219H27.3246C27.4688 19.9219 27.5914 19.9723 27.6923 20.0733C27.7933 20.1742 27.8438 20.2968 27.8438 20.441V22.1715C27.8438 22.3157 27.7933 22.4383 27.6923 22.5392C27.5914 22.6402 27.4688 22.6906 27.3246 22.6906ZM21.7871 26.8438H20.0566C19.9124 26.8438 19.7899 26.7933 19.6889 26.6923C19.588 26.5914 19.5375 26.4688 19.5375 26.3246V24.5941C19.5375 24.4499 19.588 24.3274 19.6889 24.2264C19.7899 24.1255 19.9124 24.075 20.0566 24.075H21.7871C21.9313 24.075 22.0539 24.1255 22.1548 24.2264C22.2558 24.3274 22.3063 24.4499 22.3063 24.5941V26.3246C22.3063 26.4688 22.2558 26.5914 22.1548 26.6923C22.0539 26.7933 21.9313 26.8438 21.7871 26.8438ZM27.3246 26.8438H25.5941C25.4499 26.8438 25.3274 26.7933 25.2264 26.6923C25.1255 26.5914 25.075 26.4688 25.075 26.3246V24.5941C25.075 24.4499 25.1255 24.3274 25.2264 24.2264C25.3274 24.1255 25.4499 24.075 25.5941 24.075H27.3246C27.4688 24.075 27.5914 24.1255 27.6923 24.2264C27.7933 24.3274 27.8438 24.4499 27.8438 24.5941V26.3246C27.8438 26.4688 27.7933 26.5914 27.6923 26.6923C27.5914 26.7933 27.4688 26.8438 27.3246 26.8438ZM25.075 33.7656H22.3063V30.1316C22.3063 29.9874 22.3567 29.8649 22.4577 29.7639C22.5586 29.663 22.6812 29.6125 22.8254 29.6125H24.5559C24.7001 29.6125 24.8226 29.663 24.9236 29.7639C25.0245 29.8649 25.075 29.9874 25.075 30.1316V33.7656Z",
|
|
46093
|
+
fill: "#FEFEFE"
|
|
46094
|
+
}));
|
|
46095
|
+
};
|
|
46096
|
+
|
|
46097
|
+
var PropertyBusinessIcon = function PropertyBusinessIcon() {
|
|
46098
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46099
|
+
width: "48",
|
|
46100
|
+
height: "48",
|
|
46101
|
+
viewBox: "0 0 48 48",
|
|
46102
|
+
fill: "none",
|
|
46103
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46104
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46105
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46106
|
+
fill: "#3B5BDB"
|
|
46107
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46108
|
+
fillRule: "evenodd",
|
|
46109
|
+
clipRule: "evenodd",
|
|
46110
|
+
d: "M16.3134 14.209V16H14.0746V14.209H16.3134ZM16.3134 14.209H18.5522C18.8507 14.209 19.1045 14.3134 19.3134 14.5224C19.5224 14.7313 19.6269 14.9851 19.6269 15.2836V24.0597L25.8507 20.1194C26.2089 19.8806 26.5746 19.8657 26.9477 20.0746C27.3209 20.2836 27.5074 20.597 27.5074 21.0149V24.0597L33.7313 20.1194C34.0895 19.8806 34.4552 19.8657 34.8283 20.0746C35.2014 20.2836 35.388 20.597 35.388 21.0149V33.194C35.388 33.4925 35.2835 33.7462 35.0746 33.9552C34.8656 34.1641 34.6119 34.2686 34.3134 34.2686H13.5373C13.2388 34.2686 12.9851 34.1641 12.7761 33.9552C12.5672 33.7462 12.4627 33.4925 12.4627 33.194V15.2836C12.4627 14.9851 12.5672 14.7313 12.7761 14.5224C12.9851 14.3134 13.2388 14.209 13.5373 14.209H14.0746V13.8955H16.3134V14.209Z",
|
|
46111
|
+
fill: "#FEFEFE"
|
|
46112
|
+
}));
|
|
46113
|
+
};
|
|
46114
|
+
|
|
46115
|
+
var PropertyCarIcon = function PropertyCarIcon() {
|
|
46116
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46117
|
+
width: "48",
|
|
46118
|
+
height: "48",
|
|
46119
|
+
viewBox: "0 0 48 48",
|
|
46120
|
+
fill: "none",
|
|
46121
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46122
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46123
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46124
|
+
fill: "#3B5BDB"
|
|
46125
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46126
|
+
d: "M36.8919 19.7729H33.7284L32.8492 17.5748C31.9457 15.3149 29.7893 13.855 27.3551 13.855H20.6446C18.2108 13.855 16.054 15.3149 15.1499 17.5748L14.2707 19.7729H11.1077C10.6951 19.7729 10.3923 20.1607 10.4927 20.5607L10.8097 21.8288C10.88 22.111 11.1336 22.3091 11.4248 22.3091H12.4852C11.7756 22.9289 11.3186 23.8298 11.3186 24.8454V27.3816C11.3186 28.2334 11.6441 29.0022 12.164 29.5972V32.4541C12.164 33.3878 12.9212 34.145 13.8548 34.145H15.5457C16.4793 34.145 17.2365 33.3878 17.2365 32.4541V30.7633H30.7631V32.4541C30.7631 33.3878 31.5203 34.145 32.454 34.145H34.1448C35.0785 34.145 35.8356 33.3878 35.8356 32.4541V29.5972C36.3556 29.0027 36.6811 28.2339 36.6811 27.3816V24.8454C36.6811 23.8298 36.224 22.9289 35.5149 22.3091H36.5754C36.8665 22.3091 37.1202 22.111 37.1904 21.8288L37.5075 20.5607C37.6073 20.1607 37.3046 19.7729 36.8919 19.7729ZM18.2896 18.8308C18.6747 17.8681 19.6073 17.2366 20.6446 17.2366H27.3551C28.3923 17.2366 29.3249 17.8681 29.7101 18.8308L30.7631 21.4637H17.2365L18.2896 18.8308ZM15.5457 27.3711C14.5312 27.3711 13.8548 26.6969 13.8548 25.6855C13.8548 24.6742 14.5312 24 15.5457 24C16.5601 24 18.0819 25.517 18.0819 26.5283C18.0819 27.5396 16.5601 27.3711 15.5457 27.3711ZM32.454 27.3711C31.4395 27.3711 29.9177 27.5396 29.9177 26.5283C29.9177 25.517 31.4395 24 32.454 24C33.4685 24 34.1448 24.6742 34.1448 25.6855C34.1448 26.6969 33.4685 27.3711 32.454 27.3711Z",
|
|
46127
|
+
fill: "#FEFEFE"
|
|
46128
|
+
}));
|
|
46129
|
+
};
|
|
46130
|
+
|
|
46131
|
+
var PropertyCommercialVehicleIcon = function PropertyCommercialVehicleIcon() {
|
|
46132
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46133
|
+
width: "48",
|
|
46134
|
+
height: "48",
|
|
46135
|
+
viewBox: "0 0 48 48",
|
|
46136
|
+
fill: "none",
|
|
46137
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46138
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46139
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46140
|
+
fill: "#3B5BDB"
|
|
46141
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46142
|
+
d: "M30.7656 35.15C31.9193 35.15 32.8999 34.7462 33.7074 33.9387C34.515 33.1311 34.9188 32.1505 34.9188 30.9969H36.9953C37.1972 30.9969 37.363 30.932 37.4928 30.8022C37.6226 30.6724 37.6875 30.5066 37.6875 30.3047V28.9203C37.6875 28.7184 37.6226 28.5526 37.4928 28.4228C37.363 28.293 37.1972 28.2281 36.9953 28.2281H36.3031V23.5559C36.3031 22.979 36.1012 22.4887 35.6975 22.085L31.3713 17.7588C30.9675 17.355 30.4772 17.1531 29.9004 17.1531H27.9969V15.0766C27.9969 14.4997 27.795 14.0094 27.3912 13.6057C26.9874 13.2019 26.4971 13 25.9203 13H12.0766C11.4997 13 11.0094 13.2019 10.6057 13.6057C10.2019 14.0094 10 14.4997 10 15.0766V28.9203C10 29.4971 10.2019 29.9874 10.6057 30.3912C11.0094 30.795 11.4997 30.9969 12.0766 30.9969H12.7688C12.7688 32.1505 13.1725 33.1311 13.9801 33.9387C14.7876 34.7462 15.7682 35.15 16.9219 35.15C18.0755 35.15 19.0561 34.7462 19.8637 33.9387C20.6712 33.1311 21.075 32.1505 21.075 30.9969H26.6125C26.6125 32.1505 27.0163 33.1311 27.8238 33.9387C28.6314 34.7462 29.612 35.15 30.7656 35.15ZM34.2266 24.075H27.9969V19.2297H29.9004L34.2266 23.5559V24.075ZM16.9219 33.0734C16.3451 33.0734 15.8548 32.8715 15.451 32.4678C15.0472 32.064 14.8453 31.5737 14.8453 30.9969C14.8453 30.4201 15.0472 29.9298 15.451 29.526C15.8548 29.1222 16.3451 28.9203 16.9219 28.9203C17.4987 28.9203 17.989 29.1222 18.3928 29.526C18.7965 29.9298 18.9984 30.4201 18.9984 30.9969C18.9984 31.5737 18.7965 32.064 18.3928 32.4678C17.989 32.8715 17.4987 33.0734 16.9219 33.0734ZM30.7656 33.0734C30.1888 33.0734 29.6985 32.8715 29.2947 32.4678C28.891 32.064 28.6891 31.5737 28.6891 30.9969C28.6891 30.4201 28.891 29.9298 29.2947 29.526C29.6985 29.1222 30.1888 28.9203 30.7656 28.9203C31.3424 28.9203 31.8327 29.1222 32.2365 29.526C32.6403 29.9298 32.8422 30.4201 32.8422 30.9969C32.8422 31.5737 32.6403 32.064 32.2365 32.4678C31.8327 32.8715 31.3424 33.0734 30.7656 33.0734Z",
|
|
46143
|
+
fill: "#FEFEFE"
|
|
46144
|
+
}));
|
|
46145
|
+
};
|
|
46146
|
+
|
|
46147
|
+
var PropertyGarageIcon = function PropertyGarageIcon() {
|
|
46148
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46149
|
+
width: "48",
|
|
46150
|
+
height: "48",
|
|
46151
|
+
viewBox: "0 0 48 48",
|
|
46152
|
+
fill: "none",
|
|
46153
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46154
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46155
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46156
|
+
fill: "#3B5BDB"
|
|
46157
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46158
|
+
d: "M14.463 34.1481C14.5417 34.1481 14.6138 34.1153 14.6794 34.0497C14.745 33.9841 14.7778 33.912 14.7778 33.8333V24.074C14.7778 23.733 14.9024 23.4379 15.1516 23.1886C15.4008 22.9394 15.7091 22.8148 16.0764 22.8148H31.1087C31.476 22.8148 31.7843 22.9394 32.0335 23.1886C32.2827 23.4379 32.4074 23.733 32.4074 24.074V33.8333C32.4074 33.912 32.4401 33.9841 32.5057 34.0497C32.5713 34.1153 32.6435 34.1481 32.7222 34.1481H35.8703C35.949 34.1481 36.0212 34.1153 36.0867 34.0497C36.1523 33.9841 36.1851 33.912 36.1851 33.8333V20.3356C36.1851 19.9683 36.0802 19.6273 35.8703 19.3125C35.6604 18.9977 35.3719 18.7616 35.0046 18.6042H35.0439L24.3009 14.1574C23.8287 13.9475 23.3565 13.9475 22.8842 14.1574L12.1806 18.6042C11.8133 18.7616 11.5247 18.9977 11.3148 19.3125C11.1049 19.6273 11 19.9683 11 20.3356V33.8333C11 33.912 11.0328 33.9841 11.0984 34.0497C11.164 34.1153 11.2361 34.1481 11.3148 34.1481H14.463ZM30.8333 26.5926C30.912 26.5926 30.9841 26.5598 31.0497 26.4942C31.1153 26.4286 31.1481 26.3565 31.1481 26.2778V24.3889C31.1481 24.3102 31.1153 24.238 31.0497 24.1724C30.9841 24.1068 30.912 24.074 30.8333 24.074H16.3912C16.2863 24.074 16.2075 24.1068 16.1551 24.1724C16.1026 24.238 16.0764 24.3102 16.0764 24.3889V26.2778C16.0764 26.3565 16.1026 26.4286 16.1551 26.4942C16.2075 26.5598 16.2863 26.5926 16.3912 26.5926H30.8333ZM30.8333 30.3703C30.912 30.3703 30.9841 30.3375 31.0497 30.272C31.1153 30.2064 31.1481 30.1342 31.1481 30.0555V28.1666C31.1481 28.0879 31.1153 28.0158 31.0497 27.9502C30.9841 27.8846 30.912 27.8518 30.8333 27.8518H16.3518C16.2731 27.8518 16.201 27.8846 16.1354 27.9502C16.0698 28.0158 16.037 28.0879 16.037 28.1666V30.0555C16.037 30.1342 16.0698 30.2064 16.1354 30.272C16.201 30.3375 16.2731 30.3703 16.3518 30.3703H30.8333ZM30.8333 34.1481C30.912 34.1481 30.9841 34.1153 31.0497 34.0497C31.1153 33.9841 31.1481 33.912 31.1481 33.8333V31.9444C31.1481 31.8657 31.1153 31.7936 31.0497 31.728C30.9841 31.6624 30.912 31.6296 30.8333 31.6296H16.3518C16.2731 31.6296 16.201 31.6624 16.1354 31.728C16.0698 31.7936 16.037 31.8657 16.037 31.9444V33.8333C16.037 33.912 16.0698 33.9841 16.1354 34.0497C16.201 34.1153 16.2731 34.1481 16.3518 34.1481H30.8333Z",
|
|
46159
|
+
fill: "#FEFEFE"
|
|
46160
|
+
}));
|
|
46161
|
+
};
|
|
46162
|
+
|
|
46163
|
+
var PropertyLandIcon = function PropertyLandIcon() {
|
|
46164
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46165
|
+
width: "48",
|
|
46166
|
+
height: "48",
|
|
46167
|
+
viewBox: "0 0 48 48",
|
|
46168
|
+
fill: "none",
|
|
46169
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46170
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46171
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46172
|
+
fill: "#3B5BDB"
|
|
46173
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46174
|
+
d: "M25.8629 35.15C26.1342 35.15 26.3376 35.037 26.4733 34.8109C26.6089 34.5848 26.6164 34.3512 26.4959 34.1101L25.1394 31.8945V30.8094H31.3339C31.5449 30.8094 31.7333 30.7566 31.899 30.6511C32.0648 30.5456 32.1929 30.4024 32.2834 30.2216C32.3738 30.0407 32.4039 29.8523 32.3738 29.6564C32.3437 29.4605 32.2532 29.2721 32.1025 29.0912L28.4853 25.0219H29.887C30.3391 25.0219 30.6556 24.8259 30.8365 24.4341C31.0174 24.0422 30.9721 23.6805 30.7009 23.3489L27.1289 19.2344H28.4401C28.6511 19.2344 28.847 19.1816 29.0279 19.0761C29.2088 18.9706 29.3369 18.8199 29.4122 18.624C29.4876 18.428 29.5102 18.2321 29.4801 18.0362C29.4499 17.8403 29.3595 17.6669 29.2088 17.5162L24.2351 12.2261C24.0844 12.0754 23.9036 12 23.6926 12C23.4816 12 23.3007 12.0754 23.15 12.2261L18.1763 17.5162C18.0256 17.6669 17.9352 17.8403 17.9051 18.0362C17.8749 18.2321 17.8975 18.428 17.9729 18.624C18.0482 18.8199 18.1763 18.9706 18.3572 19.0761C18.5381 19.1816 18.734 19.2344 18.945 19.2344H20.2562L16.6843 23.3489C16.413 23.6805 16.3677 24.0422 16.5486 24.4341C16.7295 24.8259 17.046 25.0219 17.4981 25.0219H18.8998L15.2826 29.0912C15.1319 29.2721 15.0414 29.4605 15.0113 29.6564C14.9812 29.8523 15.0113 30.0407 15.1017 30.2216C15.1922 30.4024 15.3203 30.5456 15.4861 30.6511C15.6518 30.7566 15.8402 30.8094 16.0512 30.8094H22.2457V31.8945L20.8892 34.1101C20.7687 34.3512 20.7762 34.5848 20.9118 34.8109C21.0475 35.037 21.251 35.15 21.5222 35.15H25.8629Z",
|
|
46175
|
+
fill: "#FEFEFE"
|
|
46176
|
+
}));
|
|
46177
|
+
};
|
|
46178
|
+
|
|
46179
|
+
var PropertyMotorcycleIcon = function PropertyMotorcycleIcon() {
|
|
46180
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46181
|
+
width: "48",
|
|
46182
|
+
height: "48",
|
|
46183
|
+
viewBox: "0 0 48 48",
|
|
46184
|
+
fill: "none",
|
|
46185
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46186
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46187
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46188
|
+
fill: "#3B5BDB"
|
|
46189
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46190
|
+
d: "M32.7935 32.11C33.8183 32.11 34.7763 31.8575 35.6675 31.3525C36.5586 30.8475 37.2567 30.1495 37.7617 29.2583C38.2666 28.3672 38.5191 27.4092 38.5191 26.3844C38.5191 25.3596 38.2592 24.4164 37.7394 23.555C37.2196 22.6936 36.5289 22.0029 35.6675 21.4831C34.806 20.9633 33.8703 20.7033 32.8604 20.7033C32.2069 20.7033 31.5831 20.8073 30.989 21.0152L29.5186 18.5646H33.1723C33.4693 18.5646 33.7218 18.4606 33.9297 18.2527C34.1377 18.0447 34.2416 17.7923 34.2416 17.4952V16.0694C34.2416 15.7723 34.1377 15.5198 33.9297 15.3119C33.7218 15.104 33.4693 15 33.1723 15H31.1672C30.8404 15 30.5731 15.1188 30.3652 15.3565L28.672 17.2279L27.6917 15.5347C27.4838 15.1782 27.1719 15 26.756 15H23.1914C22.9835 15 22.8127 15.0668 22.679 15.2005C22.5454 15.3342 22.4785 15.505 22.4785 15.7129V16.4258C22.4785 16.6338 22.5454 16.8046 22.679 16.9382C22.8127 17.0719 22.9835 17.1388 23.1914 17.1388H26.1322L27.0234 18.5646H20.1615C19.716 18.0002 19.1813 17.5695 18.5575 17.2724C17.8149 16.9457 16.8643 16.7823 15.7058 16.7823H13.2552C12.9284 16.7823 12.6611 16.8863 12.4531 17.0942C12.2452 17.3021 12.1412 17.5546 12.1412 17.8517C12.1412 18.1487 12.2452 18.4012 12.4531 18.6091C12.6611 18.8171 12.9136 18.921 13.2106 18.921H15.7058C16.6564 18.921 17.3693 19.2924 17.8446 20.035L17.3099 20.9261C16.7158 20.7479 16.1068 20.6736 15.483 20.7033C14.5028 20.733 13.5968 21.0004 12.765 21.5054C11.9333 22.0103 11.2724 22.6861 10.7822 23.5327C10.2921 24.3793 10.0322 25.2927 10.0025 26.273C9.97277 27.3127 10.2104 28.2855 10.7154 29.1915C11.2204 30.0975 11.9184 30.8104 12.8096 31.3302C13.7007 31.8501 14.6661 32.11 15.7058 32.11C17.0128 32.11 18.1787 31.709 19.2036 30.907C20.2284 30.1049 20.9042 29.0801 21.2309 27.8325H24.9737C25.2708 27.8325 25.5307 27.7211 25.7535 27.4983C25.9763 27.2755 26.0728 27.0156 26.0431 26.7186C26.0134 25.6492 26.2139 24.6244 26.6446 23.6441C27.0753 22.6639 27.7066 21.8321 28.5383 21.1489L29.1176 22.0846C28.4937 22.6193 28.0036 23.2654 27.6472 24.0229C27.2907 24.7803 27.1125 25.5898 27.1125 26.4512C27.1125 27.4612 27.365 28.3969 27.8699 29.2583C28.3749 30.1198 29.0656 30.8104 29.9419 31.3302C30.8182 31.8501 31.7687 32.11 32.7935 32.11ZM15.7058 29.9713C14.7255 29.9713 13.8864 29.6222 13.1883 28.9242C12.4903 28.2261 12.1412 27.3869 12.1412 26.4067C12.1412 25.4264 12.4903 24.5872 13.1883 23.8892C13.8864 23.1911 14.7255 22.8421 15.7058 22.8421C15.884 22.8421 16.0623 22.8569 16.2405 22.8866L14.4136 26.2284C14.2057 26.5849 14.2057 26.9414 14.4136 27.2978C14.6216 27.6543 14.9335 27.8325 15.3494 27.8325H18.9585C18.6911 28.486 18.2604 29.0058 17.6663 29.392C17.0722 29.7782 16.4187 29.9713 15.7058 29.9713ZM32.994 29.9713C31.9841 30.0307 31.1078 29.7039 30.3652 28.991C29.6225 28.2781 29.2512 27.4166 29.2512 26.4067C29.2512 25.4561 29.578 24.6392 30.2315 23.956L32.4593 27.6097C32.5485 27.7879 32.6896 27.8993 32.8826 27.9439C33.0757 27.9885 33.2465 27.9662 33.3951 27.8771L34.0189 27.476C34.1971 27.3869 34.3085 27.2458 34.353 27.0527C34.3976 26.8597 34.3753 26.6889 34.2862 26.5403L32.1029 22.9312C32.3405 22.8718 32.5782 22.8421 32.8158 22.8421C33.8258 22.8421 34.6872 23.2134 35.4001 23.956C36.113 24.6986 36.4398 25.5749 36.3804 26.5849C36.321 27.5057 35.9719 28.2855 35.3333 28.9242C34.6946 29.5628 33.9149 29.9118 32.994 29.9713Z",
|
|
46191
|
+
fill: "#FEFEFE"
|
|
46192
|
+
}));
|
|
46193
|
+
};
|
|
46194
|
+
|
|
46195
|
+
var PropertyStorefrontIcon = function PropertyStorefrontIcon() {
|
|
46196
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46197
|
+
width: "48",
|
|
46198
|
+
height: "48",
|
|
46199
|
+
viewBox: "0 0 48 48",
|
|
46200
|
+
fill: "none",
|
|
46201
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46202
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46203
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46204
|
+
fill: "#3B5BDB"
|
|
46205
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46206
|
+
d: "M36.5244 20.7878C36.8705 20.7878 37.1734 20.6724 37.4329 20.4417C37.6925 20.2109 37.8439 19.9297 37.8872 19.5981C37.9305 19.2664 37.8656 18.9419 37.6925 18.6247L33.972 13.0872C33.7124 12.6834 33.3375 12.4815 32.8472 12.4815H15.2829C14.7926 12.4815 14.4177 12.6834 14.1581 13.0872L10.4809 18.6247C10.279 18.9419 10.1997 19.2664 10.243 19.5981C10.2862 19.9297 10.4376 20.2109 10.6972 20.4417C10.9568 20.6724 11.2596 20.7878 11.6057 20.7878H36.5244ZM25.4495 34.6315C25.8244 34.6315 26.1488 34.4945 26.4228 34.2205C26.6968 33.9465 26.8338 33.6221 26.8338 33.2471V22.1721H24.0651V29.094H15.7588V22.1721H12.9901V33.2471C12.9901 33.6221 13.1271 33.9465 13.4011 34.2205C13.6751 34.4945 13.9995 34.6315 14.3745 34.6315H25.4495ZM34.4479 34.6315C34.6498 34.6315 34.8156 34.5666 34.9454 34.4368C35.0752 34.307 35.1401 34.1412 35.1401 33.9393V22.1721H32.3713V33.9393C32.3713 34.1412 32.4362 34.307 32.566 34.4368C32.6958 34.5666 32.8616 34.6315 33.0635 34.6315H34.4479Z",
|
|
46207
|
+
fill: "#FEFEFE"
|
|
46208
|
+
}));
|
|
46209
|
+
};
|
|
46210
|
+
|
|
46211
|
+
var PropertyPersonalIcon = function PropertyPersonalIcon() {
|
|
46212
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
46213
|
+
width: "48",
|
|
46214
|
+
height: "48",
|
|
46215
|
+
viewBox: "0 0 48 48",
|
|
46216
|
+
fill: "none",
|
|
46217
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
46218
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
46219
|
+
d: "M0 18C0 9.51472 0 5.27208 2.63604 2.63604C5.27208 0 9.51472 0 18 0H30C38.4853 0 42.7279 0 45.364 2.63604C48 5.27208 48 9.51472 48 18V30C48 38.4853 48 42.7279 45.364 45.364C42.7279 48 38.4853 48 30 48H18C9.51472 48 5.27208 48 2.63604 45.364C0 42.7279 0 38.4853 0 30V18Z",
|
|
46220
|
+
fill: "#3B5BDB"
|
|
46221
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
46222
|
+
fillRule: "evenodd",
|
|
46223
|
+
clipRule: "evenodd",
|
|
46224
|
+
d: "M36.1674 26.0625C36.0736 26.1875 35.9486 26.25 35.7924 26.25C35.6361 26.25 35.4955 26.2031 35.3705 26.1093L24.3549 17.0625C24.2299 16.9687 24.1049 16.9219 23.9799 16.9219C23.8549 16.9219 23.7299 16.9687 23.6049 17.0625L12.5893 26.1093C12.4643 26.2031 12.3237 26.25 12.1674 26.25C12.0112 26.25 11.8862 26.1875 11.7924 26.0625L10.6205 24.6093C10.5268 24.4843 10.4877 24.3437 10.5033 24.1875C10.519 24.0312 10.5737 23.9062 10.6674 23.8125L22.5736 14.0156C22.9799 13.6719 23.4486 13.5 23.9799 13.5C24.5111 13.5 24.9955 13.6719 25.433 14.0156L29.6049 17.4844V14.0625C29.6049 13.9062 29.6596 13.7734 29.7689 13.664C29.8783 13.5547 30.0111 13.5 30.1674 13.5H32.7924C32.9486 13.5 33.0814 13.5547 33.1908 13.664C33.3002 13.7734 33.3549 13.9062 33.3549 14.0625V20.5781L37.2924 23.8125C37.3861 23.9062 37.4408 24.0312 37.4564 24.1875C37.472 24.3437 37.433 24.4843 37.3392 24.6093L36.1674 26.0625ZM21.5658 34.3359C21.4565 34.4453 21.3236 34.4999 21.1674 34.4999H15.7299C15.4174 34.4999 15.1518 34.3906 14.933 34.1718C14.7143 33.9531 14.6049 33.6874 14.6049 33.375V26.6718C14.6049 26.4843 14.6674 26.3281 14.7924 26.2031L23.6049 18.9844C23.7299 18.8906 23.8549 18.8437 23.9799 18.8437C24.1049 18.8437 24.2299 18.8906 24.3549 18.9844L33.1674 26.2031C33.2924 26.3281 33.3549 26.4843 33.3549 26.6718V33.375C33.3549 33.6874 33.2455 33.9531 33.0267 34.1718C32.808 34.3906 32.5424 34.4999 32.2299 34.4999H26.7924C26.6361 34.4999 26.5033 34.4453 26.3939 34.3359C26.2846 34.2265 26.2299 34.0937 26.2299 33.9374V28.6875C26.2299 28.5312 26.1752 28.3984 26.0658 28.289C25.9565 28.1797 25.8236 28.125 25.6674 28.125H22.2924C22.1361 28.125 22.0033 28.1797 21.894 28.289C21.7846 28.3984 21.7299 28.5312 21.7299 28.6875V33.9374C21.7299 34.0937 21.6752 34.2265 21.5658 34.3359Z",
|
|
46225
|
+
fill: "#FEFEFE"
|
|
46226
|
+
}));
|
|
46227
|
+
};
|
|
46228
|
+
|
|
46229
|
+
var _iconsMap;
|
|
46230
|
+
var ACCOUNTS_GENERIC_ICON = "ACCOUNTS_GENERIC";
|
|
46231
|
+
var ACCOUNTS_CONSTRUCTION_ICON = "ACCOUNTS_CONSTRUCTION";
|
|
46232
|
+
var ACCOUNTS_HEALTH_ICON = "ACCOUNTS_HEALTH";
|
|
46233
|
+
var ACCOUNTS_DENTAL_ICON = "ACCOUNTS_DENTAL";
|
|
46234
|
+
var ACCOUNTS_UTILITY_ELECTRIC_ICON = "ACCOUNTS_UTILITY_ELECTRIC";
|
|
46235
|
+
var ACCOUNTS_UTILITY_GAS_ICON = "ACCOUNTS_UTILITY_GAS";
|
|
46236
|
+
var ACCOUNTS_UTILITY_GARBAGE_ICON = "ACCOUNTS_UTILITY_GARBAGE";
|
|
46237
|
+
var ACCOUNTS_UTILITY_WATER_ICON = "ACCOUNTS_UTILITY_WATER";
|
|
46238
|
+
var PROPERTIES_PERSONAL_ICON = "PROPERTIES_PERSONAL";
|
|
46239
|
+
var PROPERTIES_GARAGE_ICON = "PROPERTIES_GARAGE";
|
|
46240
|
+
var PROPERTIES_BUSINESS_ICON = "PROPERTIES_BUSINESS";
|
|
46241
|
+
var PROPERTIES_STOREFRONT_ICON = "PROPERTIES_STOREFRONT";
|
|
46242
|
+
var PROPERTIES_APARTMENT_ICON = "PROPERTIES_APARTMENT";
|
|
46243
|
+
var PROPERTIES_LAND_ICON = "PROPERTIES_LAND";
|
|
46244
|
+
var PROPERTIES_CAR_ICON = "PROPERTIES_CAR";
|
|
46245
|
+
var PROPERTIES_MOTORCYCLE_ICON = "PROPERTIES_MOTORCYCLE";
|
|
46246
|
+
var PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
46247
|
+
var MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
46248
|
+
var iconsMap = (_iconsMap = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_iconsMap, ACCOUNTS_GENERIC_ICON, function (_ref) {
|
|
46249
|
+
var color = _ref.color;
|
|
46250
|
+
return /*#__PURE__*/React__default.createElement(AccountGenericIcon, {
|
|
46251
|
+
color: color
|
|
46252
|
+
});
|
|
46253
|
+
}), ACCOUNTS_CONSTRUCTION_ICON, function (_ref2) {
|
|
46254
|
+
var color = _ref2.color;
|
|
46255
|
+
return /*#__PURE__*/React__default.createElement(AccountConstructionIcon, {
|
|
46256
|
+
color: color
|
|
46257
|
+
});
|
|
46258
|
+
}), ACCOUNTS_HEALTH_ICON, function (_ref3) {
|
|
46259
|
+
var color = _ref3.color;
|
|
46260
|
+
return /*#__PURE__*/React__default.createElement(AccountMedicalIcon, {
|
|
46261
|
+
color: color
|
|
46262
|
+
});
|
|
46263
|
+
}), ACCOUNTS_DENTAL_ICON, function (_ref4) {
|
|
46264
|
+
var color = _ref4.color;
|
|
46265
|
+
return /*#__PURE__*/React__default.createElement(AccountDentalIcon, {
|
|
46266
|
+
color: color
|
|
46267
|
+
});
|
|
46268
|
+
}), ACCOUNTS_UTILITY_ELECTRIC_ICON, function (_ref5) {
|
|
46269
|
+
var color = _ref5.color;
|
|
46270
|
+
return /*#__PURE__*/React__default.createElement(AccountElectricIcon, {
|
|
46271
|
+
color: color
|
|
46272
|
+
});
|
|
46273
|
+
}), ACCOUNTS_UTILITY_GARBAGE_ICON, function (_ref6) {
|
|
46274
|
+
var color = _ref6.color;
|
|
46275
|
+
return /*#__PURE__*/React__default.createElement(AccountGarbageIcon, {
|
|
46276
|
+
color: color
|
|
46277
|
+
});
|
|
46278
|
+
}), ACCOUNTS_UTILITY_GAS_ICON, function (_ref7) {
|
|
46279
|
+
var color = _ref7.color;
|
|
46280
|
+
return /*#__PURE__*/React__default.createElement(AccountGasIcon, {
|
|
46281
|
+
color: color
|
|
46282
|
+
});
|
|
46283
|
+
}), ACCOUNTS_UTILITY_WATER_ICON, function (_ref8) {
|
|
46284
|
+
var color = _ref8.color;
|
|
46285
|
+
return /*#__PURE__*/React__default.createElement(AccountWaterIcon, {
|
|
46286
|
+
color: color
|
|
46287
|
+
});
|
|
46288
|
+
}), PROPERTIES_PERSONAL_ICON, function (_ref9) {
|
|
46289
|
+
var color = _ref9.color;
|
|
46290
|
+
return /*#__PURE__*/React__default.createElement(PropertyPersonalIcon, {
|
|
46291
|
+
color: color
|
|
46292
|
+
});
|
|
46293
|
+
}), PROPERTIES_GARAGE_ICON, function (_ref10) {
|
|
46294
|
+
var color = _ref10.color;
|
|
46295
|
+
return /*#__PURE__*/React__default.createElement(PropertyGarageIcon, {
|
|
46296
|
+
color: color
|
|
46297
|
+
});
|
|
46298
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_iconsMap, PROPERTIES_BUSINESS_ICON, function (_ref11) {
|
|
46299
|
+
var color = _ref11.color;
|
|
46300
|
+
return /*#__PURE__*/React__default.createElement(PropertyBusinessIcon, {
|
|
46301
|
+
color: color
|
|
46302
|
+
});
|
|
46303
|
+
}), PROPERTIES_STOREFRONT_ICON, function (_ref12) {
|
|
46304
|
+
var color = _ref12.color;
|
|
46305
|
+
return /*#__PURE__*/React__default.createElement(PropertyStorefrontIcon, {
|
|
46306
|
+
color: color
|
|
46473
46307
|
});
|
|
46474
|
-
}
|
|
46475
|
-
|
|
46476
|
-
|
|
46477
|
-
|
|
46478
|
-
_ref$hideModal = _ref.hideModal,
|
|
46479
|
-
hideModal = _ref$hideModal === void 0 ? noop$1 : _ref$hideModal,
|
|
46480
|
-
_ref$iconWidth = _ref.iconWidth,
|
|
46481
|
-
iconWidth = _ref$iconWidth === void 0 ? "24px" : _ref$iconWidth,
|
|
46482
|
-
_ref$iconHeight = _ref.iconHeight,
|
|
46483
|
-
iconHeight = _ref$iconHeight === void 0 ? "24px" : _ref$iconHeight,
|
|
46484
|
-
_ref$ariaLabel = _ref.ariaLabel,
|
|
46485
|
-
ariaLabel = _ref$ariaLabel === void 0 ? "Close Modal" : _ref$ariaLabel;
|
|
46486
|
-
return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
46487
|
-
action: hideModal,
|
|
46488
|
-
"aria-label": ariaLabel,
|
|
46489
|
-
contentOverride: true,
|
|
46490
|
-
extraStyles: "\n min-height: auto;\n min-width: auto;\n height: 1.5rem;\n margin: 0 0 0 0.5rem;\n &:focus {\n outline-offset: -3px;\n }\n ",
|
|
46491
|
-
variant: "smallGhost"
|
|
46492
|
-
}, /*#__PURE__*/React__default.createElement(CloseIcon, {
|
|
46493
|
-
role: "img",
|
|
46494
|
-
"aria-hidden": "true",
|
|
46495
|
-
iconWidth: iconWidth,
|
|
46496
|
-
iconHeight: iconHeight
|
|
46497
|
-
}));
|
|
46498
|
-
};
|
|
46499
|
-
|
|
46500
|
-
var ContinueButton = function ContinueButton(_ref) {
|
|
46501
|
-
var _ref$buttonExtraStyle = _ref.buttonExtraStyles,
|
|
46502
|
-
buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
|
|
46503
|
-
_ref$continueAction = _ref.continueAction,
|
|
46504
|
-
continueAction = _ref$continueAction === void 0 ? noop$1 : _ref$continueAction,
|
|
46505
|
-
_ref$continueButtonTe = _ref.continueButtonText,
|
|
46506
|
-
continueButtonText = _ref$continueButtonTe === void 0 ? "" : _ref$continueButtonTe,
|
|
46507
|
-
_ref$continueURL = _ref.continueURL,
|
|
46508
|
-
continueURL = _ref$continueURL === void 0 ? "" : _ref$continueURL,
|
|
46509
|
-
_ref$continueButtonVa = _ref.continueButtonVariant,
|
|
46510
|
-
continueButtonVariant = _ref$continueButtonVa === void 0 ? "primary" : _ref$continueButtonVa,
|
|
46511
|
-
_ref$isContinueAction = _ref.isContinueActionDisabled,
|
|
46512
|
-
isContinueActionDisabled = _ref$isContinueAction === void 0 ? false : _ref$isContinueAction,
|
|
46513
|
-
_ref$isLoading = _ref.isLoading,
|
|
46514
|
-
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading,
|
|
46515
|
-
_ref$isMobile = _ref.isMobile,
|
|
46516
|
-
isMobile = _ref$isMobile === void 0 ? false : _ref$isMobile,
|
|
46517
|
-
_ref$useDangerButton = _ref.useDangerButton,
|
|
46518
|
-
useDangerButton = _ref$useDangerButton === void 0 ? false : _ref$useDangerButton;
|
|
46519
|
-
var ContinueButtonAtom = continueURL ? ButtonWithLink : ButtonWithAction;
|
|
46520
|
-
var fontSize = "font-size: ".concat(isMobile ? FONT_SIZE.XS : FONT_SIZE.SM, ";");
|
|
46521
|
-
var width = isMobile ? "width: 100%;" : "";
|
|
46522
|
-
return /*#__PURE__*/React__default.createElement(ContinueButtonAtom, {
|
|
46523
|
-
action: continueAction,
|
|
46524
|
-
borderRadius: BORDER_RADIUS.MD,
|
|
46525
|
-
className: "modal-continue-button",
|
|
46526
|
-
dataQa: continueButtonText,
|
|
46527
|
-
disabled: isContinueActionDisabled,
|
|
46528
|
-
extraStyles: "".concat(buttonExtraStyles, "; margin: 0; ").concat(width),
|
|
46529
|
-
isLoading: isLoading,
|
|
46530
|
-
linkExtraStyles: "display: inline-block; ".concat(width),
|
|
46531
|
-
name: continueButtonText,
|
|
46532
|
-
role: "button",
|
|
46533
|
-
text: continueButtonText,
|
|
46534
|
-
textExtraStyles: "".concat(fontSize),
|
|
46535
|
-
url: continueURL,
|
|
46536
|
-
variant: useDangerButton ? "danger" : continueButtonVariant
|
|
46308
|
+
}), PROPERTIES_APARTMENT_ICON, function (_ref13) {
|
|
46309
|
+
var color = _ref13.color;
|
|
46310
|
+
return /*#__PURE__*/React__default.createElement(PropertyApartmentIcon, {
|
|
46311
|
+
color: color
|
|
46537
46312
|
});
|
|
46538
|
-
}
|
|
46313
|
+
}), PROPERTIES_LAND_ICON, function (_ref14) {
|
|
46314
|
+
var color = _ref14.color;
|
|
46315
|
+
return /*#__PURE__*/React__default.createElement(PropertyLandIcon, {
|
|
46316
|
+
color: color
|
|
46317
|
+
});
|
|
46318
|
+
}), PROPERTIES_CAR_ICON, function (_ref15) {
|
|
46319
|
+
var color = _ref15.color;
|
|
46320
|
+
return /*#__PURE__*/React__default.createElement(PropertyCarIcon, {
|
|
46321
|
+
color: color
|
|
46322
|
+
});
|
|
46323
|
+
}), PROPERTIES_MOTORCYCLE_ICON, function (_ref16) {
|
|
46324
|
+
var color = _ref16.color;
|
|
46325
|
+
return /*#__PURE__*/React__default.createElement(PropertyMotorcycleIcon, {
|
|
46326
|
+
color: color
|
|
46327
|
+
});
|
|
46328
|
+
}), PROPERTIES_COMMERCIAL_AUTO_ICON, function (_ref17) {
|
|
46329
|
+
var color = _ref17.color;
|
|
46330
|
+
return /*#__PURE__*/React__default.createElement(PropertyCommercialVehicleIcon, {
|
|
46331
|
+
color: color
|
|
46332
|
+
});
|
|
46333
|
+
}), MISC_BILL_ICON, function (_ref18) {
|
|
46334
|
+
var color = _ref18.color;
|
|
46335
|
+
return /*#__PURE__*/React__default.createElement(AccountBillIcon, {
|
|
46336
|
+
color: color
|
|
46337
|
+
});
|
|
46338
|
+
}));
|
|
46539
46339
|
|
|
46540
|
-
|
|
46541
|
-
|
|
46542
|
-
|
|
46543
|
-
|
|
46340
|
+
var disabledBackgroundColor$1 = TRANSPARENT;
|
|
46341
|
+
var disabledBorderColor$1 = GHOST_GREY;
|
|
46342
|
+
var disabledColor$1 = MANATEE_GREY;
|
|
46343
|
+
var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
46344
|
+
var backgroundColor$a = LINK_WATER;
|
|
46345
|
+
var borderColor$5 = MOON_RAKER;
|
|
46346
|
+
var color$b = ROYAL_BLUE_VIVID;
|
|
46347
|
+
var fallbackValues$L = {
|
|
46348
|
+
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
46349
|
+
disabledBorderColor: disabledBorderColor$1,
|
|
46350
|
+
disabledColor: disabledColor$1,
|
|
46351
|
+
activeBackgroundColor: activeBackgroundColor$1,
|
|
46352
|
+
backgroundColor: backgroundColor$a,
|
|
46353
|
+
borderColor: borderColor$5,
|
|
46354
|
+
color: color$b
|
|
46355
|
+
};
|
|
46544
46356
|
|
|
46545
|
-
|
|
46546
|
-
|
|
46547
|
-
|
|
46548
|
-
|
|
46357
|
+
var Container = styled__default(Box).withConfig({
|
|
46358
|
+
displayName: "LinkCardstyled__Container",
|
|
46359
|
+
componentId: "sc-l5q1h2-0"
|
|
46360
|
+
})(["display:flex;flex-direction:column;align-items:flex-start;width:100%;gap:40px;flex-shrink:0;align-self:stretch;border-radius:8px;", " transition:all .2s ease-in-out;", ""], function (_ref) {
|
|
46361
|
+
var isDisabled = _ref.isDisabled,
|
|
46362
|
+
theme = _ref.theme;
|
|
46363
|
+
return "\n background-color: ".concat(isDisabled ? theme.disabledBackgroundColor : theme.backgroundColor, ";\n border: 1px solid ").concat(isDisabled ? theme.disabledBorderColor : theme.borderColor, ";\n ");
|
|
46364
|
+
}, function (_ref2) {
|
|
46365
|
+
var isDisabled = _ref2.isDisabled,
|
|
46366
|
+
theme = _ref2.theme;
|
|
46367
|
+
return isDisabled ? "\n &:hover,\n &:active {\n cursor: default;\n box-shadow: none;\n border: 1px solid ".concat(theme.disabledBorderColor, ";\n }\n ") : "\n &:hover,\n &:active {\n cursor: pointer;\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.1),\n 0px 5px 11px 0px rgba(41, 42, 51, 0.1),\n 0px 4px 19px 0px rgba(41, 42, 51, 0.09),\n 0px 27px 26px 0px rgba(41, 42, 51, 0.05),\n 0px 56px 31px 0px rgba(41, 42, 51, 0.01),\n 0px 80px 33px 0px rgba(41, 42, 51, 0);\n }\n\n &:hover:not(:active) {\n border: 1px solid ".concat(theme.borderColor, ";\n }\n\n &:active {\n background-color: ").concat(theme.activeBackgroundColor, ";\n border: 1px solid ").concat(theme.borderColor, ";\n }\n ");
|
|
46368
|
+
});
|
|
46369
|
+
var Title$2 = styled__default(Heading$1).withConfig({
|
|
46370
|
+
displayName: "LinkCardstyled__Title",
|
|
46371
|
+
componentId: "sc-l5q1h2-1"
|
|
46372
|
+
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref3) {
|
|
46373
|
+
var isDisabled = _ref3.isDisabled,
|
|
46374
|
+
theme = _ref3.theme;
|
|
46375
|
+
return "color: ".concat(isDisabled ? theme.disabledColor : theme.color, ";");
|
|
46376
|
+
});
|
|
46377
|
+
var Subtitle = styled__default(Paragraph$1).withConfig({
|
|
46378
|
+
displayName: "LinkCardstyled__Subtitle",
|
|
46379
|
+
componentId: "sc-l5q1h2-2"
|
|
46380
|
+
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150%;letter-spacing:0.14px;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref4) {
|
|
46381
|
+
var isDisabled = _ref4.isDisabled,
|
|
46382
|
+
theme = _ref4.theme;
|
|
46383
|
+
return "color: ".concat(isDisabled ? theme.disabledColor : theme.color, ";");
|
|
46384
|
+
});
|
|
46385
|
+
var Footer = styled__default(Stack).withConfig({
|
|
46386
|
+
displayName: "LinkCardstyled__Footer",
|
|
46387
|
+
componentId: "sc-l5q1h2-3"
|
|
46388
|
+
})(["align-items:center;width:100%;"]);
|
|
46549
46389
|
|
|
46550
|
-
var
|
|
46551
|
-
|
|
46552
|
-
|
|
46553
|
-
|
|
46554
|
-
|
|
46555
|
-
|
|
46556
|
-
|
|
46557
|
-
|
|
46558
|
-
|
|
46559
|
-
|
|
46560
|
-
_ref$
|
|
46561
|
-
|
|
46562
|
-
_ref$
|
|
46563
|
-
|
|
46564
|
-
_ref$
|
|
46565
|
-
|
|
46566
|
-
|
|
46567
|
-
|
|
46568
|
-
_ref$
|
|
46569
|
-
|
|
46570
|
-
_ref$
|
|
46571
|
-
continueAction = _ref$continueAction === void 0 ? noop$1 : _ref$continueAction,
|
|
46572
|
-
_ref$continueButtonTe = _ref.continueButtonText,
|
|
46573
|
-
continueButtonText = _ref$continueButtonTe === void 0 ? "Continue" : _ref$continueButtonTe,
|
|
46574
|
-
_ref$continueButtonVa = _ref.continueButtonVariant,
|
|
46575
|
-
continueButtonVariant = _ref$continueButtonVa === void 0 ? "primary" : _ref$continueButtonVa,
|
|
46576
|
-
_ref$continueURL = _ref.continueURL,
|
|
46577
|
-
continueURL = _ref$continueURL === void 0 ? "" : _ref$continueURL,
|
|
46578
|
-
_ref$customWidth = _ref.customWidth,
|
|
46579
|
-
customWidth = _ref$customWidth === void 0 ? "" : _ref$customWidth,
|
|
46580
|
-
_ref$dataQa = _ref.dataQa,
|
|
46581
|
-
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa,
|
|
46582
|
-
_ref$defaultWrapper = _ref.defaultWrapper,
|
|
46583
|
-
defaultWrapper = _ref$defaultWrapper === void 0 ? true : _ref$defaultWrapper,
|
|
46584
|
-
_ref$hideModal = _ref.hideModal,
|
|
46585
|
-
hideModal = _ref$hideModal === void 0 ? noop$1 : _ref$hideModal,
|
|
46586
|
-
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
46587
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele,
|
|
46588
|
-
_ref$isContinueAction = _ref.isContinueActionDisabled,
|
|
46589
|
-
isContinueActionDisabled = _ref$isContinueAction === void 0 ? false : _ref$isContinueAction,
|
|
46590
|
-
_ref$isLoading = _ref.isLoading,
|
|
46591
|
-
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading,
|
|
46592
|
-
_ref$maxHeight = _ref.maxHeight,
|
|
46593
|
-
maxHeight = _ref$maxHeight === void 0 ? "" : _ref$maxHeight,
|
|
46594
|
-
_ref$modalBodyBg = _ref.modalBodyBg,
|
|
46595
|
-
modalBodyBg = _ref$modalBodyBg === void 0 ? "" : _ref$modalBodyBg,
|
|
46596
|
-
_ref$modalBodyText = _ref.modalBodyText,
|
|
46597
|
-
modalBodyText = _ref$modalBodyText === void 0 ? "" : _ref$modalBodyText,
|
|
46598
|
-
_ref$modalHeaderBg = _ref.modalHeaderBg,
|
|
46599
|
-
modalHeaderBg = _ref$modalHeaderBg === void 0 ? "" : _ref$modalHeaderBg,
|
|
46600
|
-
_ref$modalHeaderText = _ref.modalHeaderText,
|
|
46601
|
-
modalHeaderText = _ref$modalHeaderText === void 0 ? "" : _ref$modalHeaderText,
|
|
46602
|
-
_ref$modalOpen = _ref.modalOpen,
|
|
46603
|
-
modalOpen = _ref$modalOpen === void 0 ? false : _ref$modalOpen,
|
|
46604
|
-
_ref$noButtons = _ref.noButtons,
|
|
46605
|
-
noButtons = _ref$noButtons === void 0 ? false : _ref$noButtons,
|
|
46606
|
-
_ref$onExit = _ref.onExit,
|
|
46607
|
-
onExit = _ref$onExit === void 0 ? hideModal : _ref$onExit,
|
|
46608
|
-
_ref$onlyCloseButton = _ref.onlyCloseButton,
|
|
46609
|
-
onlyCloseButton = _ref$onlyCloseButton === void 0 ? false : _ref$onlyCloseButton,
|
|
46610
|
-
_ref$onlyContinueButt = _ref.onlyContinueButton,
|
|
46611
|
-
onlyContinueButton = _ref$onlyContinueButt === void 0 ? false : _ref$onlyContinueButt,
|
|
46612
|
-
_ref$showCloseIconBut = _ref.showCloseIconButton,
|
|
46613
|
-
showCloseIconButton = _ref$showCloseIconBut === void 0 ? false : _ref$showCloseIconBut,
|
|
46614
|
-
_ref$underlayClickExi = _ref.underlayClickExits,
|
|
46615
|
-
underlayClickExits = _ref$underlayClickExi === void 0 ? true : _ref$underlayClickExi,
|
|
46616
|
-
_ref$useDangerButton = _ref.useDangerButton,
|
|
46617
|
-
useDangerButton = _ref$useDangerButton === void 0 ? false : _ref$useDangerButton;
|
|
46390
|
+
var LinkCard = function LinkCard(_ref) {
|
|
46391
|
+
var _ref$title = _ref.title,
|
|
46392
|
+
title = _ref$title === void 0 ? "Test Workflow" : _ref$title,
|
|
46393
|
+
_ref$subtitle = _ref.subtitle,
|
|
46394
|
+
subtitle = _ref$subtitle === void 0 ? "Link your benefit plan" : _ref$subtitle,
|
|
46395
|
+
showLeft = _ref.showLeft,
|
|
46396
|
+
leftContent = _ref.leftContent,
|
|
46397
|
+
showRight = _ref.showRight,
|
|
46398
|
+
rightContent = _ref.rightContent,
|
|
46399
|
+
onClick = _ref.onClick,
|
|
46400
|
+
_ref$extraStyles = _ref.extraStyles,
|
|
46401
|
+
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
46402
|
+
_ref$extraHoverStyles = _ref.extraHoverStyles,
|
|
46403
|
+
extraHoverStyles = _ref$extraHoverStyles === void 0 ? "" : _ref$extraHoverStyles,
|
|
46404
|
+
_ref$extraActiveStyle = _ref.extraActiveStyles,
|
|
46405
|
+
extraActiveStyles = _ref$extraActiveStyle === void 0 ? "" : _ref$extraActiveStyle,
|
|
46406
|
+
themeValues = _ref.themeValues,
|
|
46407
|
+
_ref$titleVariant = _ref.titleVariant,
|
|
46408
|
+
titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant,
|
|
46409
|
+
_ref$disabled = _ref.disabled,
|
|
46410
|
+
disabled = _ref$disabled === void 0 ? false : _ref$disabled;
|
|
46618
46411
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
46619
46412
|
isMobile = _useContext.isMobile;
|
|
46620
|
-
|
|
46621
|
-
|
|
46622
|
-
|
|
46623
|
-
|
|
46624
|
-
|
|
46625
|
-
|
|
46626
|
-
|
|
46627
|
-
|
|
46628
|
-
|
|
46629
|
-
|
|
46630
|
-
|
|
46631
|
-
|
|
46632
|
-
|
|
46633
|
-
|
|
46634
|
-
|
|
46635
|
-
|
|
46636
|
-
|
|
46637
|
-
|
|
46638
|
-
|
|
46639
|
-
|
|
46640
|
-
|
|
46641
|
-
|
|
46642
|
-
|
|
46643
|
-
|
|
46644
|
-
|
|
46645
|
-
},
|
|
46646
|
-
onExit: onExit,
|
|
46647
|
-
getApplicationNode: getApplicationNode$1,
|
|
46648
|
-
titleText: modalHeaderText,
|
|
46649
|
-
underlayStyle: {
|
|
46650
|
-
display: "flex",
|
|
46651
|
-
flexDirection: "column",
|
|
46652
|
-
justifyContent: "center",
|
|
46653
|
-
alignItems: "center",
|
|
46654
|
-
background: "rgba(41, 42, 51, 0.45)",
|
|
46655
|
-
backdropFilter: blurUnderlay ? "blur(4px)" : "none",
|
|
46656
|
-
WebkitBackdropFilter: blurUnderlay ? "blur(4px)" : "none"
|
|
46657
|
-
},
|
|
46658
|
-
dialogStyle: {
|
|
46659
|
-
borderRadius: BORDER_RADIUS.MD,
|
|
46660
|
-
margin: SPACING.XS,
|
|
46661
|
-
overflow: "auto",
|
|
46662
|
-
width: isMobile ? "" : customWidth || "576px"
|
|
46413
|
+
var regex = /\W/g;
|
|
46414
|
+
var locatorSlug = title.toLowerCase().replaceAll(regex, "-");
|
|
46415
|
+
return /*#__PURE__*/React__default.createElement(Container, {
|
|
46416
|
+
borderRadius: "8px",
|
|
46417
|
+
dataQa: "link-card-".concat(locatorSlug),
|
|
46418
|
+
width: "100%",
|
|
46419
|
+
maxWidth: isMobile ? "100%" : "288px",
|
|
46420
|
+
minWidth: isMobile ? "240px" : "288px",
|
|
46421
|
+
minHeight: "141px",
|
|
46422
|
+
padding: "24px",
|
|
46423
|
+
theme: themeValues,
|
|
46424
|
+
extraStyles: extraStyles,
|
|
46425
|
+
hoverStyles: extraHoverStyles,
|
|
46426
|
+
activeStyles: extraActiveStyles,
|
|
46427
|
+
onClick: disabled ? noop$1 : onClick,
|
|
46428
|
+
"aria-disabled": disabled,
|
|
46429
|
+
isDisabled: disabled,
|
|
46430
|
+
role: "group",
|
|
46431
|
+
"aria-label": "".concat(title, ", ").concat(subtitle)
|
|
46432
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
46433
|
+
childGap: 0,
|
|
46434
|
+
bottomItem: 3,
|
|
46435
|
+
justify: "space-between",
|
|
46436
|
+
style: {
|
|
46437
|
+
width: "100%"
|
|
46663
46438
|
},
|
|
46664
|
-
|
|
46665
|
-
"aria-modal": true,
|
|
46666
|
-
initialFocus: initialFocusSelector,
|
|
46667
|
-
focusDialog: !initialFocusSelector // Focus the dialogue box itself if no selector for initial focus was provided
|
|
46439
|
+
fullHeight: true
|
|
46668
46440
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
46441
|
+
padding: 0,
|
|
46442
|
+
width: "100%"
|
|
46443
|
+
}, /*#__PURE__*/React__default.createElement(Title$2, {
|
|
46444
|
+
variant: titleVariant,
|
|
46445
|
+
theme: themeValues,
|
|
46446
|
+
margin: 0,
|
|
46447
|
+
isDisabled: disabled
|
|
46448
|
+
}, title)), /*#__PURE__*/React__default.createElement(Box, {
|
|
46449
|
+
padding: "0 0 40px",
|
|
46450
|
+
width: "100%"
|
|
46451
|
+
}, /*#__PURE__*/React__default.createElement(Subtitle, {
|
|
46452
|
+
variant: "pS",
|
|
46453
|
+
theme: themeValues,
|
|
46454
|
+
isDisabled: disabled
|
|
46455
|
+
}, subtitle)), /*#__PURE__*/React__default.createElement(Box, {
|
|
46456
|
+
background: "transparent",
|
|
46457
|
+
borderWidthOverride: "0 0 0 0",
|
|
46669
46458
|
padding: "0",
|
|
46670
|
-
|
|
46671
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
46672
|
-
|
|
46673
|
-
|
|
46674
|
-
|
|
46675
|
-
|
|
46676
|
-
|
|
46677
|
-
|
|
46678
|
-
align: showCloseIconButton && isMobile ? "flex-start" : "center",
|
|
46679
|
-
nowrap: true
|
|
46680
|
-
}, /*#__PURE__*/React__default.createElement(Title$1, {
|
|
46681
|
-
as: "h2",
|
|
46682
|
-
weight: FONT_WEIGHT_SEMIBOLD,
|
|
46683
|
-
fontSize: isMobile ? FONT_SIZE.MD : FONT_SIZE.LG
|
|
46684
|
-
}, modalHeaderText), showCloseIconButton && /*#__PURE__*/React__default.createElement(CloseIconButton, {
|
|
46685
|
-
hideModal: hideModal,
|
|
46686
|
-
iconHeight: isMobile ? "20px" : "24px",
|
|
46687
|
-
iconWidth: isMobile ? "20px" : "24px"
|
|
46688
|
-
}))), /*#__PURE__*/React__default.createElement(Box, {
|
|
46689
|
-
background: modalBodyBg || ATHENS_GREY,
|
|
46690
|
-
padding: "0"
|
|
46691
|
-
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
46692
|
-
padding: SPACING.MD,
|
|
46693
|
-
borderWidthOverride: !noButtons && "0 0 ".concat(BORDER_THIN, " 0"),
|
|
46694
|
-
borderColor: !noButtons && SILVER_GREY,
|
|
46695
|
-
extraStyles: maxHeight ? "max-height: ".concat(maxHeight, "; overflow: auto;") : ""
|
|
46696
|
-
}, defaultWrapper ? /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
46697
|
-
variant: isMobile ? "pS" : "p"
|
|
46698
|
-
}, modalBodyText) : /*#__PURE__*/React__default.createElement(Box, {
|
|
46699
|
-
padding: maxHeight ? "0 0 ".concat(SPACING.XS, " 0") : "0"
|
|
46700
|
-
}, modalBodyText)), noButtons ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null) : /*#__PURE__*/React__default.createElement(ButtonLayoutWrapper, {
|
|
46701
|
-
isMobile: isMobile
|
|
46702
|
-
}, [hasCancelButton && /*#__PURE__*/React__default.createElement(CancelButton, {
|
|
46703
|
-
buttonExtraStyles: buttonExtraStyles,
|
|
46704
|
-
cancelAction: cancelAction,
|
|
46705
|
-
cancelButtonText: cancelButtonText,
|
|
46706
|
-
cancelButtonVariant: cancelButtonVariant,
|
|
46707
|
-
hideModal: hideModal,
|
|
46708
|
-
isMobile: isMobile,
|
|
46709
|
-
key: "cancel"
|
|
46710
|
-
}), hasContinueButton && /*#__PURE__*/React__default.createElement(ContinueButton, {
|
|
46711
|
-
buttonExtraStyles: buttonExtraStyles,
|
|
46712
|
-
continueAction: continueAction,
|
|
46713
|
-
continueButtonText: continueButtonText,
|
|
46714
|
-
continueURL: continueURL,
|
|
46715
|
-
continueButtonVariant: continueButtonVariant,
|
|
46716
|
-
isContinueActionDisabled: isContinueActionDisabled,
|
|
46717
|
-
isLoading: isLoading,
|
|
46718
|
-
isMobile: isMobile,
|
|
46719
|
-
key: "continue",
|
|
46720
|
-
useDangerButton: useDangerButton
|
|
46721
|
-
}), hasCloseButton && /*#__PURE__*/React__default.createElement(CloseButton, {
|
|
46722
|
-
buttonExtraStyles: buttonExtraStyles,
|
|
46723
|
-
closeButtonText: closeButtonText,
|
|
46724
|
-
closeButtonVariant: closeButtonVariant,
|
|
46725
|
-
hideModal: hideModal,
|
|
46726
|
-
isMobile: isMobile,
|
|
46727
|
-
key: "close"
|
|
46728
|
-
})].filter(function (button) {
|
|
46729
|
-
return button;
|
|
46730
|
-
}))))), children);
|
|
46459
|
+
width: "100%"
|
|
46460
|
+
}, /*#__PURE__*/React__default.createElement(Footer, {
|
|
46461
|
+
direction: "row",
|
|
46462
|
+
childGap: "6px",
|
|
46463
|
+
justify: "space-between"
|
|
46464
|
+
}, showLeft && !!leftContent ? leftContent : /*#__PURE__*/React__default.createElement(Box, {
|
|
46465
|
+
extraStyles: "margin-right: auto;"
|
|
46466
|
+
}), showRight && !!rightContent && rightContent))));
|
|
46731
46467
|
};
|
|
46732
|
-
var
|
|
46468
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
|
|
46733
46469
|
|
|
46734
|
-
var
|
|
46735
|
-
var
|
|
46736
|
-
|
|
46737
|
-
|
|
46738
|
-
|
|
46739
|
-
|
|
46740
|
-
|
|
46470
|
+
var LoginForm = function LoginForm(_ref) {
|
|
46471
|
+
var clearOnDismount = _ref.clearOnDismount,
|
|
46472
|
+
fields = _ref.fields,
|
|
46473
|
+
actions = _ref.actions,
|
|
46474
|
+
showErrors = _ref.showErrors,
|
|
46475
|
+
_ref$handleSubmit = _ref.handleSubmit,
|
|
46476
|
+
handleSubmit = _ref$handleSubmit === void 0 ? noop$1 : _ref$handleSubmit;
|
|
46477
|
+
if (clearOnDismount) {
|
|
46478
|
+
React.useEffect(function () {
|
|
46479
|
+
return function () {
|
|
46480
|
+
return actions.form.clear();
|
|
46481
|
+
};
|
|
46482
|
+
}, []);
|
|
46483
|
+
}
|
|
46484
|
+
var emailErrorMessages = _defineProperty(_defineProperty({}, required.error, "Email address is required"), isProbablyEmail.error, "Invalid email address");
|
|
46485
|
+
var passwordErrorMessages = _defineProperty({}, required.error, "Password is required");
|
|
46486
|
+
return /*#__PURE__*/React__default.createElement(FormInputColumn, {
|
|
46487
|
+
role: "form",
|
|
46488
|
+
"aria-label": "Login"
|
|
46489
|
+
}, /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
46490
|
+
labelTextWhenNoError: "Email address",
|
|
46491
|
+
errorMessages: emailErrorMessages,
|
|
46492
|
+
type: "email",
|
|
46493
|
+
field: fields.email,
|
|
46494
|
+
fieldActions: actions.fields.email,
|
|
46495
|
+
showErrors: showErrors,
|
|
46496
|
+
onKeyDown: function onKeyDown(e) {
|
|
46497
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
46498
|
+
},
|
|
46499
|
+
isEmail: true,
|
|
46500
|
+
autocompleteValue: "email"
|
|
46501
|
+
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
46502
|
+
labelTextWhenNoError: "Password",
|
|
46503
|
+
errorMessages: passwordErrorMessages,
|
|
46504
|
+
type: "password",
|
|
46505
|
+
field: fields.password,
|
|
46506
|
+
fieldActions: actions.fields.password,
|
|
46507
|
+
showErrors: showErrors,
|
|
46508
|
+
onKeyDown: function onKeyDown(e) {
|
|
46509
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
46510
|
+
},
|
|
46511
|
+
autocompleteValue: "current-password"
|
|
46512
|
+
}));
|
|
46513
|
+
};
|
|
46514
|
+
|
|
46515
|
+
var formConfig$5 = {
|
|
46516
|
+
email: {
|
|
46517
|
+
validators: [required(), isProbablyEmail()]
|
|
46518
|
+
},
|
|
46519
|
+
password: {
|
|
46520
|
+
validators: [required()]
|
|
46521
|
+
}
|
|
46741
46522
|
};
|
|
46523
|
+
var _createFormState$5 = createFormState(formConfig$5),
|
|
46524
|
+
reducer$5 = _createFormState$5.reducer,
|
|
46525
|
+
mapStateToProps$6 = _createFormState$5.mapStateToProps,
|
|
46526
|
+
mapDispatchToProps$5 = _createFormState$5.mapDispatchToProps;
|
|
46527
|
+
|
|
46528
|
+
LoginForm.reducer = reducer$5;
|
|
46529
|
+
LoginForm.mapStateToProps = mapStateToProps$6;
|
|
46530
|
+
LoginForm.mapDispatchToProps = mapDispatchToProps$5;
|
|
46742
46531
|
|
|
46743
46532
|
var backgroundColor$b = {
|
|
46744
46533
|
profile: "#3b414d",
|
|
@@ -51465,6 +51254,44 @@ var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
|
51465
51254
|
});
|
|
51466
51255
|
};
|
|
51467
51256
|
|
|
51257
|
+
var useLogoutTimers = function useLogoutTimers(_ref) {
|
|
51258
|
+
var _ref$logoutTimerOn = _ref.logoutTimerOn,
|
|
51259
|
+
logoutTimerOn = _ref$logoutTimerOn === void 0 ? false : _ref$logoutTimerOn,
|
|
51260
|
+
action = _ref.action,
|
|
51261
|
+
timeLeftToLogout = _ref.timeLeftToLogout,
|
|
51262
|
+
handleSetTimeLeft = _ref.handleSetTimeLeft,
|
|
51263
|
+
_ref$initialTimeLeftT = _ref.initialTimeLeftToLogout,
|
|
51264
|
+
initialTimeLeftToLogout = _ref$initialTimeLeftT === void 0 ? 30 : _ref$initialTimeLeftT;
|
|
51265
|
+
var timers = {
|
|
51266
|
+
timer: null,
|
|
51267
|
+
interval: null
|
|
51268
|
+
};
|
|
51269
|
+
var timeLeft = timeLeftToLogout;
|
|
51270
|
+
React.useEffect(function () {
|
|
51271
|
+
if (logoutTimerOn) {
|
|
51272
|
+
timers.timer = window.setTimeout(function () {
|
|
51273
|
+
action();
|
|
51274
|
+
handleSetTimeLeft(initialTimeLeftToLogout);
|
|
51275
|
+
}, initialTimeLeftToLogout * 1000);
|
|
51276
|
+
}
|
|
51277
|
+
return function () {
|
|
51278
|
+
return clearTimeout(timers.timer);
|
|
51279
|
+
};
|
|
51280
|
+
}, [logoutTimerOn]);
|
|
51281
|
+
React.useEffect(function () {
|
|
51282
|
+
if (logoutTimerOn) {
|
|
51283
|
+
timers.interval = window.setInterval(function () {
|
|
51284
|
+
timeLeft--;
|
|
51285
|
+
handleSetTimeLeft(timeLeft);
|
|
51286
|
+
}, 1000);
|
|
51287
|
+
}
|
|
51288
|
+
return function () {
|
|
51289
|
+
return clearInterval(timers.interval);
|
|
51290
|
+
};
|
|
51291
|
+
}, [logoutTimerOn]);
|
|
51292
|
+
return timers;
|
|
51293
|
+
};
|
|
51294
|
+
|
|
51468
51295
|
|
|
51469
51296
|
|
|
51470
51297
|
var index$6 = /*#__PURE__*/Object.freeze({
|
|
@@ -51474,7 +51301,8 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
51474
51301
|
theme: themeUtils,
|
|
51475
51302
|
useFocusInvalidInput: useFocusInvalidInput,
|
|
51476
51303
|
useOutsideClick: useOutsideClickHook,
|
|
51477
|
-
useToastNotification: useToastNotification
|
|
51304
|
+
useToastNotification: useToastNotification,
|
|
51305
|
+
useLogoutTimers: useLogoutTimers
|
|
51478
51306
|
});
|
|
51479
51307
|
|
|
51480
51308
|
exports.AccountNumberImage = AccountNumberImage;
|
|
@@ -51578,6 +51406,7 @@ exports.HighlightTabRow = HighlightTabRow$1;
|
|
|
51578
51406
|
exports.HistoryIconSmall = HistoryIconSmall$1;
|
|
51579
51407
|
exports.IconAdd = IconAdd;
|
|
51580
51408
|
exports.IconQuitLarge = IconQuitLarge;
|
|
51409
|
+
exports.IdleModal = IdleModal;
|
|
51581
51410
|
exports.ImageBox = ImageBox;
|
|
51582
51411
|
exports.Imposter = Imposter;
|
|
51583
51412
|
exports.InternalLink = InternalLink;
|