@thecb/components 6.2.9 → 6.3.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.storybook/page.d.ts +13 -0
- package/dist/.storybook/page.js +41 -0
- package/dist/.storybook/themes/apc.theme.d.ts +79 -0
- package/dist/.storybook/themes/apc.theme.js +1 -0
- package/dist/.storybook/themes/index.d.ts +2 -0
- package/dist/.storybook/themes/index.js +2 -0
- package/dist/.storybook/themes/sf.theme.d.ts +231 -0
- package/dist/.storybook/themes/sf.theme.js +1 -0
- package/dist/button-with-action/ButtonWithActionProps.js +0 -0
- package/dist/button-with-link/ButtonWithLinkProps.js +1 -0
- package/dist/index.cjs.js +294 -62
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +277 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +291 -64
- package/dist/index.esm.js.map +1 -1
- package/dist/nav-tabs/TabConfig.js +0 -0
- package/dist/src/components/atoms/add-obligation/AddObligation.d.ts +5 -0
- package/dist/src/components/atoms/add-obligation/AddObligation.js +21 -0
- package/dist/src/components/atoms/add-obligation/AddObligation.stories.d.ts +7 -0
- package/dist/src/components/atoms/add-obligation/AddObligation.stories.js +10 -0
- package/dist/src/components/atoms/add-obligation/AddObligation.theme.d.ts +9 -0
- package/dist/src/components/atoms/add-obligation/AddObligation.theme.js +8 -0
- package/dist/src/components/atoms/add-obligation/index.d.ts +2 -0
- package/dist/src/components/atoms/add-obligation/index.js +2 -0
- package/dist/src/components/atoms/alert/Alert.d.ts +5 -0
- package/dist/src/components/atoms/alert/Alert.js +26 -0
- package/dist/src/components/atoms/alert/Alert.stories.d.ts +7 -0
- package/dist/src/components/atoms/alert/Alert.stories.js +19 -0
- package/dist/src/components/atoms/alert/Alert.theme.d.ts +65 -0
- package/dist/src/components/atoms/alert/Alert.theme.js +45 -0
- package/dist/src/components/atoms/alert/index.d.ts +2 -0
- package/dist/src/components/atoms/alert/index.js +2 -0
- package/dist/src/components/atoms/amount-callout/AmountCallout.d.ts +5 -0
- package/dist/src/components/atoms/amount-callout/AmountCallout.js +12 -0
- package/dist/src/components/atoms/amount-callout/AmountCallout.stories.d.ts +7 -0
- package/dist/src/components/atoms/amount-callout/AmountCallout.stories.js +18 -0
- package/dist/src/components/atoms/amount-callout/AmountCallout.theme.d.ts +5 -0
- package/dist/src/components/atoms/amount-callout/AmountCallout.theme.js +4 -0
- package/dist/src/components/atoms/amount-callout/index.d.ts +2 -0
- package/dist/src/components/atoms/amount-callout/index.js +2 -0
- package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.d.ts +5 -0
- package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.js +43 -0
- package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.theme.d.ts +5 -0
- package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.theme.js +5 -0
- package/dist/src/components/atoms/box-with-shadow/index.d.ts +2 -0
- package/dist/src/components/atoms/box-with-shadow/index.js +2 -0
- package/dist/src/components/atoms/breadcrumb/Breadcrumb.d.ts +4 -0
- package/dist/src/components/atoms/breadcrumb/Breadcrumb.js +22 -0
- package/dist/src/components/atoms/breadcrumb/Breadcrumb.stories.d.ts +7 -0
- package/dist/src/components/atoms/breadcrumb/Breadcrumb.stories.js +37 -0
- package/dist/src/components/atoms/breadcrumb/Breadcrumb.theme.d.ts +19 -0
- package/dist/src/components/atoms/breadcrumb/Breadcrumb.theme.js +24 -0
- package/dist/src/components/atoms/breadcrumb/index.d.ts +2 -0
- package/dist/src/components/atoms/breadcrumb/index.js +2 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithAction.d.ts +15 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithAction.js +86 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithAction.stories.d.ts +7 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithAction.stories.js +24 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithAction.theme.d.ts +342 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithAction.theme.js +202 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithActionProps.d.ts +14 -0
- package/dist/src/components/atoms/button-with-action/ButtonWithActionProps.js +1 -0
- package/dist/src/components/atoms/button-with-action/index.d.ts +2 -0
- package/dist/src/components/atoms/button-with-action/index.js +2 -0
- package/dist/src/components/atoms/button-with-link/ButtonWithLink.d.ts +11 -0
- package/dist/src/components/atoms/button-with-link/ButtonWithLink.js +41 -0
- package/dist/src/components/atoms/button-with-link/ButtonWithLink.stories.d.ts +7 -0
- package/dist/src/components/atoms/button-with-link/ButtonWithLink.stories.js +21 -0
- package/dist/src/components/atoms/button-with-link/ButtonWithLinkProps.d.ts +10 -0
- package/dist/src/components/atoms/button-with-link/ButtonWithLinkProps.js +2 -0
- package/dist/src/components/atoms/button-with-link/index.d.ts +2 -0
- package/dist/src/components/atoms/button-with-link/index.js +2 -0
- package/dist/src/components/atoms/card/Card.d.ts +5 -0
- package/dist/src/components/atoms/card/Card.js +18 -0
- package/dist/src/components/atoms/card/Card.theme.d.ts +5 -0
- package/dist/src/components/atoms/card/Card.theme.js +5 -0
- package/dist/src/components/atoms/card/index.d.ts +2 -0
- package/dist/src/components/atoms/card/index.js +2 -0
- package/dist/src/components/atoms/checkbox/Checkbox.d.ts +5 -0
- package/dist/src/components/atoms/checkbox/Checkbox.js +52 -0
- package/dist/src/components/atoms/checkbox/Checkbox.stories.d.ts +7 -0
- package/dist/src/components/atoms/checkbox/Checkbox.stories.js +16 -0
- package/dist/src/components/atoms/checkbox/Checkbox.theme.d.ts +68 -0
- package/dist/src/components/atoms/checkbox/Checkbox.theme.js +39 -0
- package/dist/src/components/atoms/checkbox/index.d.ts +2 -0
- package/dist/src/components/atoms/checkbox/index.js +2 -0
- package/dist/src/components/atoms/checkbox-list/CheckboxList.d.ts +6 -0
- package/dist/src/components/atoms/checkbox-list/CheckboxList.js +40 -0
- package/dist/src/components/atoms/checkbox-list/CheckboxList.stories.d.ts +7 -0
- package/dist/src/components/atoms/checkbox-list/CheckboxList.stories.js +41 -0
- package/dist/src/components/atoms/checkbox-list/CheckboxList.theme.d.ts +44 -0
- package/dist/src/components/atoms/checkbox-list/CheckboxList.theme.js +33 -0
- package/dist/src/components/atoms/checkbox-list/index.d.ts +2 -0
- package/dist/src/components/atoms/checkbox-list/index.js +2 -0
- package/dist/src/components/atoms/country-dropdown/CountryDropdown.d.ts +9 -0
- package/dist/src/components/atoms/country-dropdown/CountryDropdown.js +8 -0
- package/dist/src/components/atoms/country-dropdown/CountryDropdown.stories.d.ts +7 -0
- package/dist/src/components/atoms/country-dropdown/CountryDropdown.stories.js +31 -0
- package/dist/src/components/atoms/country-dropdown/index.d.ts +1 -0
- package/dist/src/components/atoms/country-dropdown/index.js +1 -0
- package/dist/src/components/atoms/country-dropdown/options.d.ts +4 -0
- package/dist/src/components/atoms/country-dropdown/options.js +249 -0
- package/dist/src/components/atoms/detail/Detail.d.ts +5 -0
- package/dist/src/components/atoms/detail/Detail.js +63 -0
- package/dist/src/components/atoms/detail/Detail.styled.d.ts +1 -0
- package/dist/src/components/atoms/detail/Detail.styled.js +28 -0
- package/dist/src/components/atoms/detail/Detail.theme.d.ts +36 -0
- package/dist/src/components/atoms/detail/Detail.theme.js +28 -0
- package/dist/src/components/atoms/detail/index.d.ts +2 -0
- package/dist/src/components/atoms/detail/index.js +2 -0
- package/dist/src/components/atoms/display-box/DisplayBox.d.ts +5 -0
- package/dist/src/components/atoms/display-box/DisplayBox.js +11 -0
- package/dist/src/components/atoms/display-box/DisplayBox.stories.d.ts +7 -0
- package/dist/src/components/atoms/display-box/DisplayBox.stories.js +12 -0
- package/dist/src/components/atoms/display-box/DisplayBox.theme.d.ts +7 -0
- package/dist/src/components/atoms/display-box/DisplayBox.theme.js +7 -0
- package/dist/src/components/atoms/display-box/index.d.ts +2 -0
- package/dist/src/components/atoms/display-box/index.js +2 -0
- package/dist/src/components/atoms/display-card/DisplayCard.d.ts +9 -0
- package/dist/src/components/atoms/display-card/DisplayCard.js +22 -0
- package/dist/src/components/atoms/display-card/DisplayCard.stories.d.ts +7 -0
- package/dist/src/components/atoms/display-card/DisplayCard.stories.js +10 -0
- package/dist/src/components/atoms/display-card/index.d.ts +2 -0
- package/dist/src/components/atoms/display-card/index.js +2 -0
- package/dist/src/components/atoms/dropdown/Dropdown.d.ts +5 -0
- package/dist/src/components/atoms/dropdown/Dropdown.js +258 -0
- package/dist/src/components/atoms/dropdown/Dropdown.stories.d.ts +7 -0
- package/dist/src/components/atoms/dropdown/Dropdown.stories.js +30 -0
- package/dist/src/components/atoms/dropdown/Dropdown.theme.d.ts +7 -0
- package/dist/src/components/atoms/dropdown/Dropdown.theme.js +7 -0
- package/dist/src/components/atoms/dropdown/DropdownIcon.d.ts +2 -0
- package/dist/src/components/atoms/dropdown/DropdownIcon.js +7 -0
- package/dist/src/components/atoms/dropdown/index.d.ts +2 -0
- package/dist/src/components/atoms/dropdown/index.js +2 -0
- package/dist/src/components/atoms/form-layouts/FormContainer.d.ts +5 -0
- package/dist/src/components/atoms/form-layouts/FormContainer.js +34 -0
- package/dist/src/components/atoms/form-layouts/FormFooterPanel.d.ts +5 -0
- package/dist/src/components/atoms/form-layouts/FormFooterPanel.js +15 -0
- package/dist/src/components/atoms/form-layouts/FormInput.d.ts +5 -0
- package/dist/src/components/atoms/form-layouts/FormInput.js +116 -0
- package/dist/src/components/atoms/form-layouts/FormInputColumn.d.ts +7 -0
- package/dist/src/components/atoms/form-layouts/FormInputColumn.js +29 -0
- package/dist/src/components/atoms/form-layouts/FormInputRow.d.ts +9 -0
- package/dist/src/components/atoms/form-layouts/FormInputRow.js +30 -0
- package/dist/src/components/atoms/form-layouts/FormLayouts.stories.d.ts +7 -0
- package/dist/src/components/atoms/form-layouts/FormLayouts.stories.js +38 -0
- package/dist/src/components/atoms/form-layouts/FormLayouts.theme.d.ts +86 -0
- package/dist/src/components/atoms/form-layouts/FormLayouts.theme.js +44 -0
- package/dist/src/components/atoms/form-layouts/index.d.ts +6 -0
- package/dist/src/components/atoms/form-layouts/index.js +6 -0
- package/dist/src/components/atoms/form-select/FormSelect.d.ts +5 -0
- package/dist/src/components/atoms/form-select/FormSelect.js +36 -0
- package/dist/src/components/atoms/form-select/FormSelect.stories.d.ts +7 -0
- package/dist/src/components/atoms/form-select/FormSelect.stories.js +36 -0
- package/dist/src/components/atoms/form-select/FormSelect.styled.d.ts +3 -0
- package/dist/src/components/atoms/form-select/FormSelect.styled.js +22 -0
- package/dist/src/components/atoms/form-select/FormSelect.theme.d.ts +81 -0
- package/dist/src/components/atoms/form-select/FormSelect.theme.js +40 -0
- package/dist/src/components/atoms/form-select/index.d.ts +2 -0
- package/dist/src/components/atoms/form-select/index.js +2 -0
- package/dist/src/components/atoms/formatted-address/FormattedAddress.d.ts +5 -0
- package/dist/src/components/atoms/formatted-address/FormattedAddress.js +22 -0
- package/dist/src/components/atoms/formatted-address/FormattedAddress.stories.d.ts +7 -0
- package/dist/src/components/atoms/formatted-address/FormattedAddress.stories.js +18 -0
- package/dist/src/components/atoms/formatted-address/FormattedAddress.theme.d.ts +23 -0
- package/dist/src/components/atoms/formatted-address/FormattedAddress.theme.js +9 -0
- package/dist/src/components/atoms/formatted-address/index.d.ts +2 -0
- package/dist/src/components/atoms/formatted-address/index.js +2 -0
- package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.d.ts +7 -0
- package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +47 -0
- package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.d.ts +7 -0
- package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js +7 -0
- package/dist/src/components/atoms/formatted-credit-card/index.d.ts +2 -0
- package/dist/src/components/atoms/formatted-credit-card/index.js +2 -0
- package/dist/src/components/atoms/hamburger-button/HamburgerButton.d.ts +8 -0
- package/dist/src/components/atoms/hamburger-button/HamburgerButton.js +27 -0
- package/dist/src/components/atoms/hamburger-button/HamburgerButton.stories.d.ts +7 -0
- package/dist/src/components/atoms/hamburger-button/HamburgerButton.stories.js +11 -0
- package/dist/src/components/atoms/hamburger-button/index.d.ts +2 -0
- package/dist/src/components/atoms/hamburger-button/index.js +2 -0
- package/dist/src/components/atoms/heading/Heading.d.ts +5 -0
- package/dist/src/components/atoms/heading/Heading.js +40 -0
- package/dist/src/components/atoms/heading/Heading.stories.d.ts +7 -0
- package/dist/src/components/atoms/heading/Heading.stories.js +10 -0
- package/dist/src/components/atoms/heading/Heading.styled.d.ts +1 -0
- package/dist/src/components/atoms/heading/Heading.styled.js +28 -0
- package/dist/src/components/atoms/heading/Heading.theme.d.ts +17 -0
- package/dist/src/components/atoms/heading/Heading.theme.js +16 -0
- package/dist/src/components/atoms/heading/index.d.ts +2 -0
- package/dist/src/components/atoms/heading/index.js +2 -0
- package/dist/src/components/atoms/icons/AccountNumberImage.d.ts +2 -0
- package/dist/src/components/atoms/icons/AccountNumberImage.js +20 -0
- package/dist/src/components/atoms/icons/AccountsAddIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/AccountsAddIcon.js +16 -0
- package/dist/src/components/atoms/icons/AccountsIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/AccountsIcon.js +15 -0
- package/dist/src/components/atoms/icons/AccountsIconSmall.d.ts +5 -0
- package/dist/src/components/atoms/icons/AccountsIconSmall.js +20 -0
- package/dist/src/components/atoms/icons/AchReturnIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/AchReturnIcon.js +6 -0
- package/dist/src/components/atoms/icons/AllocatedIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/AllocatedIcon.js +6 -0
- package/dist/src/components/atoms/icons/AutopayOnIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/AutopayOnIcon.js +6 -0
- package/dist/src/components/atoms/icons/BankIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/BankIcon.js +7 -0
- package/dist/src/components/atoms/icons/CalendarIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/CalendarIcon.js +6 -0
- package/dist/src/components/atoms/icons/CarrotIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/CarrotIcon.js +20 -0
- package/dist/src/components/atoms/icons/CashIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/CashIcon.js +7 -0
- package/dist/src/components/atoms/icons/ChargebackIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/ChargebackIcon.js +6 -0
- package/dist/src/components/atoms/icons/ChargebackReversalIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/ChargebackReversalIcon.js +6 -0
- package/dist/src/components/atoms/icons/CheckIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/CheckIcon.js +12 -0
- package/dist/src/components/atoms/icons/CheckmarkIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/CheckmarkIcon.js +12 -0
- package/dist/src/components/atoms/icons/ChevronIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/ChevronIcon.js +16 -0
- package/dist/src/components/atoms/icons/CustomerSearchIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/CustomerSearchIcon.js +22 -0
- package/dist/src/components/atoms/icons/DuplicateIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/DuplicateIcon.js +6 -0
- package/dist/src/components/atoms/icons/EmptyCartIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/EmptyCartIcon.js +13 -0
- package/dist/src/components/atoms/icons/ErroredIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/ErroredIcon.js +6 -0
- package/dist/src/components/atoms/icons/ExternalLinkIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/ExternalLinkIcon.js +11 -0
- package/dist/src/components/atoms/icons/FailedIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/FailedIcon.js +6 -0
- package/dist/src/components/atoms/icons/ForgotPasswordIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/ForgotPasswordIcon.js +17 -0
- package/dist/src/components/atoms/icons/GenericCard.d.ts +2 -0
- package/dist/src/components/atoms/icons/GenericCard.js +6 -0
- package/dist/src/components/atoms/icons/GenericCardLarge.d.ts +2 -0
- package/dist/src/components/atoms/icons/GenericCardLarge.js +8 -0
- package/dist/src/components/atoms/icons/GoToEmailIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/GoToEmailIcon.js +16 -0
- package/dist/src/components/atoms/icons/IconAdd.d.ts +2 -0
- package/dist/src/components/atoms/icons/IconAdd.js +14 -0
- package/dist/src/components/atoms/icons/IconQuitLarge.d.ts +4 -0
- package/dist/src/components/atoms/icons/IconQuitLarge.js +19 -0
- package/dist/src/components/atoms/icons/Icons.theme.d.ts +33 -0
- package/dist/src/components/atoms/icons/Icons.theme.js +27 -0
- package/dist/src/components/atoms/icons/NoCustomerResultsIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/NoCustomerResultsIcon.js +15 -0
- package/dist/src/components/atoms/icons/NoPaymentResultsIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/NoPaymentResultsIcon.js +16 -0
- package/dist/src/components/atoms/icons/NotFoundIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/NotFoundIcon.js +56 -0
- package/dist/src/components/atoms/icons/PaymentIcon.d.ts +8 -0
- package/dist/src/components/atoms/icons/PaymentIcon.js +30 -0
- package/dist/src/components/atoms/icons/PaymentMethodAddIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/PaymentMethodAddIcon.js +28 -0
- package/dist/src/components/atoms/icons/PaymentMethodIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/PaymentMethodIcon.js +15 -0
- package/dist/src/components/atoms/icons/PaymentSearchIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/PaymentSearchIcon.js +23 -0
- package/dist/src/components/atoms/icons/PaymentsIconSmall.d.ts +5 -0
- package/dist/src/components/atoms/icons/PaymentsIconSmall.js +20 -0
- package/dist/src/components/atoms/icons/PendingIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/PendingIcon.js +6 -0
- package/dist/src/components/atoms/icons/PeriscopeFailedIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/PeriscopeFailedIcon.js +56 -0
- package/dist/src/components/atoms/icons/ProfileIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/ProfileIcon.js +16 -0
- package/dist/src/components/atoms/icons/ProfileIconSmall.d.ts +5 -0
- package/dist/src/components/atoms/icons/ProfileIconSmall.js +12 -0
- package/dist/src/components/atoms/icons/PropertiesAddIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/PropertiesAddIcon.js +31 -0
- package/dist/src/components/atoms/icons/PropertiesIconSmall.d.ts +5 -0
- package/dist/src/components/atoms/icons/PropertiesIconSmall.js +10 -0
- package/dist/src/components/atoms/icons/RefundIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/RefundIcon.js +6 -0
- package/dist/src/components/atoms/icons/RejectedIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/RejectedIcon.js +6 -0
- package/dist/src/components/atoms/icons/RejectedVelocityIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/RejectedVelocityIcon.js +6 -0
- package/dist/src/components/atoms/icons/ResetPasswordIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/ResetPasswordIcon.js +16 -0
- package/dist/src/components/atoms/icons/RoutingNumberImage.d.ts +2 -0
- package/dist/src/components/atoms/icons/RoutingNumberImage.js +20 -0
- package/dist/src/components/atoms/icons/SearchIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/SearchIcon.js +10 -0
- package/dist/src/components/atoms/icons/SettingsIconSmall.d.ts +5 -0
- package/dist/src/components/atoms/icons/SettingsIconSmall.js +20 -0
- package/dist/src/components/atoms/icons/ShoppingCartIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/ShoppingCartIcon.js +11 -0
- package/dist/src/components/atoms/icons/StatusUnknownIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/StatusUnknownIcon.js +6 -0
- package/dist/src/components/atoms/icons/SuccessfulIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/SuccessfulIcon.js +6 -0
- package/dist/src/components/atoms/icons/TimeoutImage.d.ts +2 -0
- package/dist/src/components/atoms/icons/TimeoutImage.js +38 -0
- package/dist/src/components/atoms/icons/TrashIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/TrashIcon.js +15 -0
- package/dist/src/components/atoms/icons/VerifiedEmailIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/VerifiedEmailIcon.js +19 -0
- package/dist/src/components/atoms/icons/VoidedIcon.d.ts +2 -0
- package/dist/src/components/atoms/icons/VoidedIcon.js +6 -0
- package/dist/src/components/atoms/icons/WalletIcon.d.ts +5 -0
- package/dist/src/components/atoms/icons/WalletIcon.js +16 -0
- package/dist/src/components/atoms/icons/WarningIconXS.d.ts +2 -0
- package/dist/src/components/atoms/icons/WarningIconXS.js +13 -0
- package/dist/src/components/atoms/icons/icons.stories.d.ts +42 -0
- package/dist/src/components/atoms/icons/icons.stories.js +44 -0
- package/dist/src/components/atoms/icons/index.d.ts +59 -0
- package/dist/src/components/atoms/icons/index.js +59 -0
- package/dist/src/components/atoms/index.d.ts +45 -0
- package/dist/src/components/atoms/index.js +45 -0
- package/dist/src/components/atoms/jumbo/Jumbo.d.ts +4 -0
- package/dist/src/components/atoms/jumbo/Jumbo.js +25 -0
- package/dist/src/components/atoms/jumbo/index.d.ts +2 -0
- package/dist/src/components/atoms/jumbo/index.js +2 -0
- package/dist/src/components/atoms/labeled-amount/LabeledAmount.d.ts +5 -0
- package/dist/src/components/atoms/labeled-amount/LabeledAmount.js +16 -0
- package/dist/src/components/atoms/labeled-amount/LabeledAmount.stories.d.ts +7 -0
- package/dist/src/components/atoms/labeled-amount/LabeledAmount.stories.js +20 -0
- package/dist/src/components/atoms/labeled-amount/LabeledAmount.theme.d.ts +12 -0
- package/dist/src/components/atoms/labeled-amount/LabeledAmount.theme.js +10 -0
- package/dist/src/components/atoms/labeled-amount/index.d.ts +2 -0
- package/dist/src/components/atoms/labeled-amount/index.js +2 -0
- package/dist/src/components/atoms/layouts/Box.d.ts +3 -0
- package/dist/src/components/atoms/layouts/Box.js +37 -0
- package/dist/src/components/atoms/layouts/Box.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Box.styled.js +107 -0
- package/dist/src/components/atoms/layouts/Center.d.ts +8 -0
- package/dist/src/components/atoms/layouts/Center.js +35 -0
- package/dist/src/components/atoms/layouts/Center.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Center.styled.js +21 -0
- package/dist/src/components/atoms/layouts/Cluster.d.ts +16 -0
- package/dist/src/components/atoms/layouts/Cluster.js +39 -0
- package/dist/src/components/atoms/layouts/Cluster.styled.d.ts +2 -0
- package/dist/src/components/atoms/layouts/Cluster.styled.js +71 -0
- package/dist/src/components/atoms/layouts/Cover.d.ts +11 -0
- package/dist/src/components/atoms/layouts/Cover.js +52 -0
- package/dist/src/components/atoms/layouts/Cover.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Cover.styled.js +30 -0
- package/dist/src/components/atoms/layouts/Frame.d.ts +7 -0
- package/dist/src/components/atoms/layouts/Frame.js +42 -0
- package/dist/src/components/atoms/layouts/Frame.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Frame.styled.js +10 -0
- package/dist/src/components/atoms/layouts/Grid.d.ts +8 -0
- package/dist/src/components/atoms/layouts/Grid.js +38 -0
- package/dist/src/components/atoms/layouts/Grid.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Grid.styled.js +24 -0
- package/dist/src/components/atoms/layouts/Imposter.d.ts +13 -0
- package/dist/src/components/atoms/layouts/Imposter.js +49 -0
- package/dist/src/components/atoms/layouts/Imposter.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Imposter.styled.js +30 -0
- package/dist/src/components/atoms/layouts/Motion.d.ts +7 -0
- package/dist/src/components/atoms/layouts/Motion.js +64 -0
- package/dist/src/components/atoms/layouts/Motion.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Motion.styled.js +71 -0
- package/dist/src/components/atoms/layouts/Reel.d.ts +13 -0
- package/dist/src/components/atoms/layouts/Reel.js +36 -0
- package/dist/src/components/atoms/layouts/Reel.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Reel.styled.js +30 -0
- package/dist/src/components/atoms/layouts/Sidebar.d.ts +11 -0
- package/dist/src/components/atoms/layouts/Sidebar.js +43 -0
- package/dist/src/components/atoms/layouts/Sidebar.styled.d.ts +2 -0
- package/dist/src/components/atoms/layouts/Sidebar.styled.js +59 -0
- package/dist/src/components/atoms/layouts/Stack.d.ts +10 -0
- package/dist/src/components/atoms/layouts/Stack.js +39 -0
- package/dist/src/components/atoms/layouts/Stack.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/Stack.styled.js +26 -0
- package/dist/src/components/atoms/layouts/Switcher.d.ts +14 -0
- package/dist/src/components/atoms/layouts/Switcher.js +62 -0
- package/dist/src/components/atoms/layouts/Switcher.styled.d.ts +2 -0
- package/dist/src/components/atoms/layouts/Switcher.styled.js +42 -0
- package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.d.ts +9 -0
- package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.js +12 -0
- package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.styled.d.ts +2 -0
- package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.styled.js +21 -0
- package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.d.ts +11 -0
- package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.js +9 -0
- package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.styled.d.ts +1 -0
- package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.styled.js +25 -0
- package/dist/src/components/atoms/layouts/examples/ResizingContainer.d.ts +9 -0
- package/dist/src/components/atoms/layouts/examples/ResizingContainer.js +26 -0
- package/dist/src/components/atoms/layouts/examples/ResizingContainer.styled.d.ts +2 -0
- package/dist/src/components/atoms/layouts/examples/ResizingContainer.styled.js +23 -0
- package/dist/src/components/atoms/layouts/examples/box-example/BoxExample.stories.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/box-example/BoxExample.stories.js +19 -0
- package/dist/src/components/atoms/layouts/examples/center-example/CenterExample.stories.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/center-example/CenterExample.stories.js +13 -0
- package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.d.ts +6 -0
- package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.js +7 -0
- package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.d.ts +21 -0
- package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.js +43 -0
- package/dist/src/components/atoms/layouts/examples/cover-example/CoverExample.stories.d.ts +15 -0
- package/dist/src/components/atoms/layouts/examples/cover-example/CoverExample.stories.js +18 -0
- package/dist/src/components/atoms/layouts/examples/frame-example/FrameExample.stories.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/frame-example/FrameExample.stories.js +12 -0
- package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.js +32 -0
- package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.stories.d.ts +11 -0
- package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.stories.js +26 -0
- package/dist/src/components/atoms/layouts/examples/imposter-example/ImposterExample.stories.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/imposter-example/ImposterExample.stories.js +14 -0
- package/dist/src/components/atoms/layouts/examples/motion-example/MotionExample.stories.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/motion-example/MotionExample.stories.js +41 -0
- package/dist/src/components/atoms/layouts/examples/reel-example/ReelExample.stories.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/reel-example/ReelExample.stories.js +21 -0
- package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.js +7 -0
- package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.d.ts +11 -0
- package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.js +41 -0
- package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.d.ts +7 -0
- package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.js +26 -0
- package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.stories.d.ts +21 -0
- package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.stories.js +26 -0
- package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.d.ts +8 -0
- package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.js +26 -0
- package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.d.ts +16 -0
- package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.js +30 -0
- package/dist/src/components/atoms/layouts/index.d.ts +13 -0
- package/dist/src/components/atoms/layouts/index.js +13 -0
- package/dist/src/components/atoms/line-item/LineItem.d.ts +5 -0
- package/dist/src/components/atoms/line-item/LineItem.js +14 -0
- package/dist/src/components/atoms/line-item/LineItem.stories.d.ts +7 -0
- package/dist/src/components/atoms/line-item/LineItem.stories.js +10 -0
- package/dist/src/components/atoms/line-item/LineItem.theme.d.ts +16 -0
- package/dist/src/components/atoms/line-item/LineItem.theme.js +6 -0
- package/dist/src/components/atoms/line-item/index.d.ts +2 -0
- package/dist/src/components/atoms/line-item/index.js +2 -0
- package/dist/src/components/atoms/link/ExternalLink.d.ts +14 -0
- package/dist/src/components/atoms/link/ExternalLink.js +14 -0
- package/dist/src/components/atoms/link/ExternalLink.styled.d.ts +1 -0
- package/dist/src/components/atoms/link/ExternalLink.styled.js +64 -0
- package/dist/src/components/atoms/link/InternalLink.d.ts +15 -0
- package/dist/src/components/atoms/link/InternalLink.js +13 -0
- package/dist/src/components/atoms/link/InternalLink.styled.d.ts +1 -0
- package/dist/src/components/atoms/link/InternalLink.styled.js +68 -0
- package/dist/src/components/atoms/link/Link.stories.d.ts +8 -0
- package/dist/src/components/atoms/link/Link.stories.js +26 -0
- package/dist/src/components/atoms/link/Link.theme.d.ts +14 -0
- package/dist/src/components/atoms/link/Link.theme.js +13 -0
- package/dist/src/components/atoms/link/index.d.ts +3 -0
- package/dist/src/components/atoms/link/index.js +3 -0
- package/dist/src/components/atoms/loading/Loading.d.ts +2 -0
- package/dist/src/components/atoms/loading/Loading.js +9 -0
- package/dist/src/components/atoms/loading/index.d.ts +2 -0
- package/dist/src/components/atoms/loading/index.js +2 -0
- package/dist/src/components/atoms/nav-footer/NavFooter.d.ts +13 -0
- package/dist/src/components/atoms/nav-footer/NavFooter.js +38 -0
- package/dist/src/components/atoms/nav-footer/NavFooter.stories.d.ts +7 -0
- package/dist/src/components/atoms/nav-footer/NavFooter.stories.js +13 -0
- package/dist/src/components/atoms/nav-footer/index.d.ts +2 -0
- package/dist/src/components/atoms/nav-footer/index.js +2 -0
- package/dist/src/components/atoms/nav-header/NavHeader.d.ts +10 -0
- package/dist/src/components/atoms/nav-header/NavHeader.js +37 -0
- package/dist/src/components/atoms/nav-header/NavHeader.stories.d.ts +7 -0
- package/dist/src/components/atoms/nav-header/NavHeader.stories.js +13 -0
- package/dist/src/components/atoms/nav-header/index.d.ts +2 -0
- package/dist/src/components/atoms/nav-header/index.js +2 -0
- package/dist/src/components/atoms/nav-tabs/NavTab.d.ts +5 -0
- package/dist/src/components/atoms/nav-tabs/NavTab.js +20 -0
- package/dist/src/components/atoms/nav-tabs/NavTab.theme.d.ts +9 -0
- package/dist/src/components/atoms/nav-tabs/NavTab.theme.js +9 -0
- package/dist/src/components/atoms/nav-tabs/NavTabs.d.ts +4 -0
- package/dist/src/components/atoms/nav-tabs/NavTabs.js +27 -0
- package/dist/src/components/atoms/nav-tabs/TabConfig.d.ts +4 -0
- package/dist/src/components/atoms/nav-tabs/TabConfig.js +1 -0
- package/dist/src/components/atoms/nav-tabs/index.d.ts +1 -0
- package/dist/src/components/atoms/nav-tabs/index.js +2 -0
- package/dist/src/components/atoms/paragraph/Paragraph.d.ts +5 -0
- package/dist/src/components/atoms/paragraph/Paragraph.js +40 -0
- package/dist/src/components/atoms/paragraph/Paragraph.stories.d.ts +7 -0
- package/dist/src/components/atoms/paragraph/Paragraph.stories.js +17 -0
- package/dist/src/components/atoms/paragraph/Paragraph.styled.d.ts +1 -0
- package/dist/src/components/atoms/paragraph/Paragraph.styled.js +25 -0
- package/dist/src/components/atoms/paragraph/Paragraph.theme.d.ts +27 -0
- package/dist/src/components/atoms/paragraph/Paragraph.theme.js +21 -0
- package/dist/src/components/atoms/paragraph/index.d.ts +2 -0
- package/dist/src/components/atoms/paragraph/index.js +2 -0
- package/dist/src/components/atoms/password-requirements/PasswordRequirements.d.ts +5 -0
- package/dist/src/components/atoms/password-requirements/PasswordRequirements.js +59 -0
- package/dist/src/components/atoms/password-requirements/PasswordRequirements.stories.d.ts +7 -0
- package/dist/src/components/atoms/password-requirements/PasswordRequirements.stories.js +46 -0
- package/dist/src/components/atoms/password-requirements/index.d.ts +2 -0
- package/dist/src/components/atoms/password-requirements/index.js +2 -0
- package/dist/src/components/atoms/placeholder/Placeholder.d.ts +5 -0
- package/dist/src/components/atoms/placeholder/Placeholder.js +33 -0
- package/dist/src/components/atoms/placeholder/Placeholder.stories.d.ts +7 -0
- package/dist/src/components/atoms/placeholder/Placeholder.stories.js +23 -0
- package/dist/src/components/atoms/placeholder/Placeholder.theme.d.ts +16 -0
- package/dist/src/components/atoms/placeholder/Placeholder.theme.js +7 -0
- package/dist/src/components/atoms/placeholder/index.d.ts +2 -0
- package/dist/src/components/atoms/placeholder/index.js +2 -0
- package/dist/src/components/atoms/processing-fee/ProcessingFee.d.ts +5 -0
- package/dist/src/components/atoms/processing-fee/ProcessingFee.js +15 -0
- package/dist/src/components/atoms/processing-fee/ProcessingFee.stories.d.ts +7 -0
- package/dist/src/components/atoms/processing-fee/ProcessingFee.stories.js +17 -0
- package/dist/src/components/atoms/processing-fee/ProcessingFee.theme.d.ts +8 -0
- package/dist/src/components/atoms/processing-fee/ProcessingFee.theme.js +5 -0
- package/dist/src/components/atoms/processing-fee/index.d.ts +2 -0
- package/dist/src/components/atoms/processing-fee/index.js +2 -0
- package/dist/src/components/atoms/radio-button/RadioButton.d.ts +5 -0
- package/dist/src/components/atoms/radio-button/RadioButton.js +68 -0
- package/dist/src/components/atoms/radio-button/RadioButton.stories.d.ts +7 -0
- package/dist/src/components/atoms/radio-button/RadioButton.stories.js +16 -0
- package/dist/src/components/atoms/radio-button/RadioButton.theme.d.ts +7 -0
- package/dist/src/components/atoms/radio-button/RadioButton.theme.js +7 -0
- package/dist/src/components/atoms/radio-button/index.d.ts +2 -0
- package/dist/src/components/atoms/radio-button/index.js +2 -0
- package/dist/src/components/atoms/searchable-select/SearchableSelect.d.ts +5 -0
- package/dist/src/components/atoms/searchable-select/SearchableSelect.js +37 -0
- package/dist/src/components/atoms/searchable-select/SearchableSelect.theme.d.ts +8 -0
- package/dist/src/components/atoms/searchable-select/SearchableSelect.theme.js +6 -0
- package/dist/src/components/atoms/searchable-select/index.d.ts +2 -0
- package/dist/src/components/atoms/searchable-select/index.js +2 -0
- package/dist/src/components/atoms/solid-divider/SolidDivider.d.ts +5 -0
- package/dist/src/components/atoms/solid-divider/SolidDivider.js +9 -0
- package/dist/src/components/atoms/solid-divider/SolidDivider.stories.d.ts +7 -0
- package/dist/src/components/atoms/solid-divider/SolidDivider.stories.js +9 -0
- package/dist/src/components/atoms/solid-divider/SolidDivider.theme.d.ts +13 -0
- package/dist/src/components/atoms/solid-divider/SolidDivider.theme.js +7 -0
- package/dist/src/components/atoms/solid-divider/index.d.ts +2 -0
- package/dist/src/components/atoms/solid-divider/index.js +2 -0
- package/dist/src/components/atoms/spinner/Spinner.d.ts +6 -0
- package/dist/src/components/atoms/spinner/Spinner.js +27 -0
- package/dist/src/components/atoms/spinner/Spinner.stories.d.ts +7 -0
- package/dist/src/components/atoms/spinner/Spinner.stories.js +12 -0
- package/dist/src/components/atoms/spinner/Spinner.theme.d.ts +5 -0
- package/dist/src/components/atoms/spinner/Spinner.theme.js +4 -0
- package/dist/src/components/atoms/spinner/index.d.ts +2 -0
- package/dist/src/components/atoms/spinner/index.js +2 -0
- package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.d.ts +10 -0
- package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.js +19 -0
- package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.d.ts +7 -0
- package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +30 -0
- package/dist/src/components/atoms/state-province-dropdown/index.d.ts +2 -0
- package/dist/src/components/atoms/state-province-dropdown/index.js +2 -0
- package/dist/src/components/atoms/state-province-dropdown/options.d.ts +11 -0
- package/dist/src/components/atoms/state-province-dropdown/options.js +3837 -0
- package/dist/src/components/atoms/tab/Tab.d.ts +6 -0
- package/dist/src/components/atoms/tab/Tab.js +17 -0
- package/dist/src/components/atoms/tab/Tab.stories.d.ts +7 -0
- package/dist/src/components/atoms/tab/Tab.stories.js +9 -0
- package/dist/src/components/atoms/tab/Tab.theme.d.ts +27 -0
- package/dist/src/components/atoms/tab/Tab.theme.js +23 -0
- package/dist/src/components/atoms/tab/index.d.ts +2 -0
- package/dist/src/components/atoms/tab/index.js +2 -0
- package/dist/src/components/atoms/text/Text.d.ts +5 -0
- package/dist/src/components/atoms/text/Text.js +34 -0
- package/dist/src/components/atoms/text/Text.stories.d.ts +7 -0
- package/dist/src/components/atoms/text/Text.stories.js +17 -0
- package/dist/src/components/atoms/text/Text.styled.d.ts +1 -0
- package/dist/src/components/atoms/text/Text.styled.js +32 -0
- package/dist/src/components/atoms/text/Text.theme.d.ts +27 -0
- package/dist/src/components/atoms/text/Text.theme.js +24 -0
- package/dist/src/components/atoms/text/index.d.ts +2 -0
- package/dist/src/components/atoms/text/index.js +2 -0
- package/dist/src/components/atoms/title/Title.d.ts +5 -0
- package/dist/src/components/atoms/title/Title.js +60 -0
- package/dist/src/components/atoms/title/Title.styled.d.ts +1 -0
- package/dist/src/components/atoms/title/Title.styled.js +28 -0
- package/dist/src/components/atoms/title/Title.theme.d.ts +26 -0
- package/dist/src/components/atoms/title/Title.theme.js +22 -0
- package/dist/src/components/atoms/title/index.d.ts +2 -0
- package/dist/src/components/atoms/title/index.js +2 -0
- package/dist/src/components/atoms/toggle-switch/ToggleSwitch.d.ts +5 -0
- package/dist/src/components/atoms/toggle-switch/ToggleSwitch.js +126 -0
- package/dist/src/components/atoms/toggle-switch/ToggleSwitch.stories.d.ts +7 -0
- package/dist/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +15 -0
- package/dist/src/components/atoms/toggle-switch/ToggleSwitch.theme.d.ts +15 -0
- package/dist/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +16 -0
- package/dist/src/components/atoms/toggle-switch/index.d.ts +2 -0
- package/dist/src/components/atoms/toggle-switch/index.js +2 -0
- package/dist/src/components/atoms/typeahead-input/TypeaheadIinput.stories.d.ts +7 -0
- package/dist/src/components/atoms/typeahead-input/TypeaheadIinput.stories.js +9 -0
- package/dist/src/components/atoms/typeahead-input/TypeaheadInput.d.ts +8 -0
- package/dist/src/components/atoms/typeahead-input/TypeaheadInput.js +22 -0
- package/dist/src/components/atoms/typeahead-input/TypeaheadInput.theme.d.ts +11 -0
- package/dist/src/components/atoms/typeahead-input/TypeaheadInput.theme.js +11 -0
- package/dist/src/components/atoms/typeahead-input/index.d.ts +2 -0
- package/dist/src/components/atoms/typeahead-input/index.js +2 -0
- package/dist/src/components/atoms/welcome-card/Card.d.ts +5 -0
- package/dist/src/components/atoms/welcome-card/Card.js +52 -0
- package/dist/src/components/atoms/welcome-card/Card.theme.d.ts +7 -0
- package/dist/src/components/atoms/welcome-card/Card.theme.js +7 -0
- package/dist/src/components/atoms/welcome-card/index.d.ts +8 -0
- package/dist/src/components/atoms/welcome-card/index.js +20 -0
- package/dist/src/components/index.d.ts +4 -0
- package/dist/src/components/index.js +4 -0
- package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.d.ts +5 -0
- package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js +22 -0
- package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.d.ts +28 -0
- package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.js +17 -0
- package/dist/src/components/molecules/account-and-routing-modal/index.d.ts +2 -0
- package/dist/src/components/molecules/account-and-routing-modal/index.js +2 -0
- package/dist/src/components/molecules/address-form/AddressForm.d.ts +12 -0
- package/dist/src/components/molecules/address-form/AddressForm.js +52 -0
- package/dist/src/components/molecules/address-form/AddressForm.state.d.ts +3 -0
- package/dist/src/components/molecules/address-form/AddressForm.state.js +33 -0
- package/dist/src/components/molecules/address-form/AddressForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/address-form/AddressForm.stories.js +15 -0
- package/dist/src/components/molecules/address-form/index.d.ts +2 -0
- package/dist/src/components/molecules/address-form/index.js +6 -0
- package/dist/src/components/molecules/change-password-form/ChangePasswordForm.d.ts +13 -0
- package/dist/src/components/molecules/change-password-form/ChangePasswordForm.js +55 -0
- package/dist/src/components/molecules/change-password-form/ChangePasswordForm.state.d.ts +3 -0
- package/dist/src/components/molecules/change-password-form/ChangePasswordForm.state.js +21 -0
- package/dist/src/components/molecules/change-password-form/ChangePasswordForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +14 -0
- package/dist/src/components/molecules/change-password-form/index.d.ts +2 -0
- package/dist/src/components/molecules/change-password-form/index.js +6 -0
- package/dist/src/components/molecules/collapsible-section/CollapsibleSection.d.ts +5 -0
- package/dist/src/components/molecules/collapsible-section/CollapsibleSection.js +60 -0
- package/dist/src/components/molecules/collapsible-section/CollapsibleSection.stories.d.ts +7 -0
- package/dist/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +30 -0
- package/dist/src/components/molecules/collapsible-section/CollapsibleSection.theme.d.ts +9 -0
- package/dist/src/components/molecules/collapsible-section/CollapsibleSection.theme.js +8 -0
- package/dist/src/components/molecules/collapsible-section/index.d.ts +2 -0
- package/dist/src/components/molecules/collapsible-section/index.js +2 -0
- package/dist/src/components/molecules/edit-name-form/EdidNameForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/edit-name-form/EdidNameForm.stories.js +16 -0
- package/dist/src/components/molecules/edit-name-form/EditNameForm.d.ts +8 -0
- package/dist/src/components/molecules/edit-name-form/EditNameForm.js +22 -0
- package/dist/src/components/molecules/edit-name-form/EditNameForm.state.d.ts +3 -0
- package/dist/src/components/molecules/edit-name-form/EditNameForm.state.js +11 -0
- package/dist/src/components/molecules/edit-name-form/index.d.ts +2 -0
- package/dist/src/components/molecules/edit-name-form/index.js +6 -0
- package/dist/src/components/molecules/editable-list/EditableList.d.ts +23 -0
- package/dist/src/components/molecules/editable-list/EditableList.js +49 -0
- package/dist/src/components/molecules/editable-list/EditableList.styled.d.ts +2 -0
- package/dist/src/components/molecules/editable-list/EditableList.styled.js +15 -0
- package/dist/src/components/molecules/editable-list/index.d.ts +2 -0
- package/dist/src/components/molecules/editable-list/index.js +2 -0
- package/dist/src/components/molecules/editable-table/EditableTable.d.ts +7 -0
- package/dist/src/components/molecules/editable-table/EditableTable.js +16 -0
- package/dist/src/components/molecules/editable-table/EditableTable.styled.d.ts +9 -0
- package/dist/src/components/molecules/editable-table/EditableTable.styled.js +61 -0
- package/dist/src/components/molecules/editable-table/TableListItem.d.ts +9 -0
- package/dist/src/components/molecules/editable-table/TableListItem.js +21 -0
- package/dist/src/components/molecules/editable-table/index.d.ts +3 -0
- package/dist/src/components/molecules/editable-table/index.js +3 -0
- package/dist/src/components/molecules/email-form/EmailForm.d.ts +13 -0
- package/dist/src/components/molecules/email-form/EmailForm.js +23 -0
- package/dist/src/components/molecules/email-form/EmailForm.state.d.ts +3 -0
- package/dist/src/components/molecules/email-form/EmailForm.state.js +8 -0
- package/dist/src/components/molecules/email-form/EmailForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/email-form/EmailForm.stories.js +16 -0
- package/dist/src/components/molecules/email-form/index.d.ts +2 -0
- package/dist/src/components/molecules/email-form/index.js +6 -0
- package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.d.ts +8 -0
- package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +17 -0
- package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.d.ts +3 -0
- package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.js +8 -0
- package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.js +16 -0
- package/dist/src/components/molecules/forgot-password-form/index.d.ts +2 -0
- package/dist/src/components/molecules/forgot-password-form/index.js +6 -0
- package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.d.ts +6 -0
- package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.js +29 -0
- package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.stories.d.ts +7 -0
- package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.stories.js +17 -0
- package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.d.ts +7 -0
- package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.js +6 -0
- package/dist/src/components/molecules/highlight-tab-row/index.d.ts +2 -0
- package/dist/src/components/molecules/highlight-tab-row/index.js +2 -0
- package/dist/src/components/molecules/index.d.ts +36 -0
- package/dist/src/components/molecules/index.js +36 -0
- package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.d.ts +25 -0
- package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.js +108 -0
- package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.d.ts +3 -0
- package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.js +23 -0
- package/dist/src/components/molecules/internal-user-info-form/index.d.ts +2 -0
- package/dist/src/components/molecules/internal-user-info-form/index.js +6 -0
- package/dist/src/components/molecules/login-form/LoginForm.d.ts +8 -0
- package/dist/src/components/molecules/login-form/LoginForm.js +22 -0
- package/dist/src/components/molecules/login-form/LoginForm.state.d.ts +3 -0
- package/dist/src/components/molecules/login-form/LoginForm.state.js +11 -0
- package/dist/src/components/molecules/login-form/LoginForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/login-form/LoginForm.stories.js +16 -0
- package/dist/src/components/molecules/login-form/index.d.ts +2 -0
- package/dist/src/components/molecules/login-form/index.js +6 -0
- package/dist/src/components/molecules/modal/Modal.d.ts +27 -0
- package/dist/src/components/molecules/modal/Modal.js +51 -0
- package/dist/src/components/molecules/modal/Modal.stories.d.ts +15 -0
- package/dist/src/components/molecules/modal/Modal.stories.js +28 -0
- package/dist/src/components/molecules/modal/index.d.ts +2 -0
- package/dist/src/components/molecules/modal/index.js +2 -0
- package/dist/src/components/molecules/module/Module.d.ts +6 -0
- package/dist/src/components/molecules/module/Module.js +31 -0
- package/dist/src/components/molecules/module/Module.stories.d.ts +7 -0
- package/dist/src/components/molecules/module/Module.stories.js +18 -0
- package/dist/src/components/molecules/module/Module.theme.d.ts +87 -0
- package/dist/src/components/molecules/module/Module.theme.js +43 -0
- package/dist/src/components/molecules/module/index.d.ts +2 -0
- package/dist/src/components/molecules/module/index.js +2 -0
- package/dist/src/components/molecules/nav-menu/NavMenu.theme.d.ts +15 -0
- package/dist/src/components/molecules/nav-menu/NavMenu.theme.js +12 -0
- package/dist/src/components/molecules/nav-menu/NavMenuDesktop.d.ts +5 -0
- package/dist/src/components/molecules/nav-menu/NavMenuDesktop.js +11 -0
- package/dist/src/components/molecules/nav-menu/NavMenuMobile.d.ts +5 -0
- package/dist/src/components/molecules/nav-menu/NavMenuMobile.js +49 -0
- package/dist/src/components/molecules/nav-menu/index.d.ts +3 -0
- package/dist/src/components/molecules/nav-menu/index.js +3 -0
- package/dist/src/components/molecules/obligation/Obligation.d.ts +23 -0
- package/dist/src/components/molecules/obligation/Obligation.js +44 -0
- package/dist/src/components/molecules/obligation/icons/AccountBillIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountBillIcon.js +20 -0
- package/dist/src/components/molecules/obligation/icons/AccountConstructionIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountConstructionIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/AccountDentalIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountDentalIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/AccountElectricIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountElectricIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/AccountGarbageIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountGarbageIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/AccountGasIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountGasIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/AccountGenericIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountGenericIcon.js +20 -0
- package/dist/src/components/molecules/obligation/icons/AccountMedicalIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountMedicalIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/AccountWaterIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/AccountWaterIcon.js +21 -0
- package/dist/src/components/molecules/obligation/icons/PropertyApartmentIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +22 -0
- package/dist/src/components/molecules/obligation/icons/PropertyBusinessIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +20 -0
- package/dist/src/components/molecules/obligation/icons/PropertyCarIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyCarIcon.js +22 -0
- package/dist/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +23 -0
- package/dist/src/components/molecules/obligation/icons/PropertyGarageIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyGarageIcon.js +22 -0
- package/dist/src/components/molecules/obligation/icons/PropertyLandIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyLandIcon.js +22 -0
- package/dist/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +22 -0
- package/dist/src/components/molecules/obligation/icons/PropertyPersonalIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +20 -0
- package/dist/src/components/molecules/obligation/icons/PropertyStorefrontIcon.d.ts +2 -0
- package/dist/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +23 -0
- package/dist/src/components/molecules/obligation/icons/index.d.ts +38 -0
- package/dist/src/components/molecules/obligation/icons/index.js +57 -0
- package/dist/src/components/molecules/obligation/index.d.ts +2 -0
- package/dist/src/components/molecules/obligation/index.js +2 -0
- package/dist/src/components/molecules/obligation/modules/AmountModule.d.ts +12 -0
- package/dist/src/components/molecules/obligation/modules/AmountModule.js +17 -0
- package/dist/src/components/molecules/obligation/modules/AmountModule.stories.d.ts +7 -0
- package/dist/src/components/molecules/obligation/modules/AmountModule.stories.js +12 -0
- package/dist/src/components/molecules/obligation/modules/AutopayModalModule.d.ts +4 -0
- package/dist/src/components/molecules/obligation/modules/AutopayModalModule.js +76 -0
- package/dist/src/components/molecules/obligation/modules/AutopayModalModule.theme.d.ts +15 -0
- package/dist/src/components/molecules/obligation/modules/AutopayModalModule.theme.js +15 -0
- package/dist/src/components/molecules/obligation/modules/IconModule.d.ts +8 -0
- package/dist/src/components/molecules/obligation/modules/IconModule.js +20 -0
- package/dist/src/components/molecules/obligation/modules/InactiveControlsModule.d.ts +16 -0
- package/dist/src/components/molecules/obligation/modules/InactiveControlsModule.js +18 -0
- package/dist/src/components/molecules/obligation/modules/InactiveTitleModule.d.ts +6 -0
- package/dist/src/components/molecules/obligation/modules/InactiveTitleModule.js +18 -0
- package/dist/src/components/molecules/obligation/modules/PaymentDetailsActions.d.ts +18 -0
- package/dist/src/components/molecules/obligation/modules/PaymentDetailsActions.js +44 -0
- package/dist/src/components/molecules/obligation/modules/RemoveAccountModalModule.d.ts +8 -0
- package/dist/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +39 -0
- package/dist/src/components/molecules/obligation/modules/TitleModule.d.ts +7 -0
- package/dist/src/components/molecules/obligation/modules/TitleModule.js +13 -0
- package/dist/src/components/molecules/obligation/modules/index.d.ts +8 -0
- package/dist/src/components/molecules/obligation/modules/index.js +8 -0
- package/dist/src/components/molecules/pagination/Pagination.d.ts +14 -0
- package/dist/src/components/molecules/pagination/Pagination.js +56 -0
- package/dist/src/components/molecules/pagination/index.d.ts +2 -0
- package/dist/src/components/molecules/pagination/index.js +2 -0
- package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.d.ts +11 -0
- package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.js +27 -0
- package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.state.d.ts +5 -0
- package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.state.js +49 -0
- package/dist/src/components/molecules/partial-amount-form/index.d.ts +3 -0
- package/dist/src/components/molecules/partial-amount-form/index.js +3 -0
- package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.d.ts +15 -0
- package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.js +24 -0
- package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.stories.d.ts +7 -0
- package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.stories.js +10 -0
- package/dist/src/components/molecules/payment-button-bar/index.d.ts +2 -0
- package/dist/src/components/molecules/payment-button-bar/index.js +2 -0
- package/dist/src/components/molecules/payment-details/PaymentDetails.d.ts +5 -0
- package/dist/src/components/molecules/payment-details/PaymentDetails.js +143 -0
- package/dist/src/components/molecules/payment-details/PaymentDetails.stories.d.ts +11 -0
- package/dist/src/components/molecules/payment-details/PaymentDetails.stories.js +126 -0
- package/dist/src/components/molecules/payment-details/PaymentDetails.theme.d.ts +30 -0
- package/dist/src/components/molecules/payment-details/PaymentDetails.theme.js +10 -0
- package/dist/src/components/molecules/payment-details/index.d.ts +1 -0
- package/dist/src/components/molecules/payment-details/index.js +1 -0
- package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.d.ts +16 -0
- package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.js +52 -0
- package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.state.d.ts +3 -0
- package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.state.js +28 -0
- package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.stories.d.ts +7 -0
- package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.stories.js +16 -0
- package/dist/src/components/molecules/payment-form-ach/index.d.ts +2 -0
- package/dist/src/components/molecules/payment-form-ach/index.js +6 -0
- package/dist/src/components/molecules/payment-form-card/PaymentFormCard.d.ts +4 -0
- package/dist/src/components/molecules/payment-form-card/PaymentFormCard.js +74 -0
- package/dist/src/components/molecules/payment-form-card/PaymentFormCard.state.d.ts +3 -0
- package/dist/src/components/molecules/payment-form-card/PaymentFormCard.state.js +41 -0
- package/dist/src/components/molecules/payment-form-card/PaymentFormCard.stories.d.ts +7 -0
- package/dist/src/components/molecules/payment-form-card/PaymentFormCard.stories.js +16 -0
- package/dist/src/components/molecules/payment-form-card/index.d.ts +2 -0
- package/dist/src/components/molecules/payment-form-card/index.js +6 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashBoardIframe.stories.d.ts +7 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashBoardIframe.stories.js +10 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.d.ts +11 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.js +70 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.styled.d.ts +1 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.styled.js +8 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/index.d.ts +2 -0
- package/dist/src/components/molecules/periscope-dashboard-iframe/index.js +2 -0
- package/dist/src/components/molecules/phone-form/PhoneForm.d.ts +12 -0
- package/dist/src/components/molecules/phone-form/PhoneForm.js +23 -0
- package/dist/src/components/molecules/phone-form/PhoneForm.state.d.ts +3 -0
- package/dist/src/components/molecules/phone-form/PhoneForm.state.js +9 -0
- package/dist/src/components/molecules/phone-form/PhoneForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/phone-form/PhoneForm.stories.js +16 -0
- package/dist/src/components/molecules/phone-form/index.d.ts +2 -0
- package/dist/src/components/molecules/phone-form/index.js +6 -0
- package/dist/src/components/molecules/radio-section/RadioSection.d.ts +5 -0
- package/dist/src/components/molecules/radio-section/RadioSection.js +126 -0
- package/dist/src/components/molecules/radio-section/RadioSection.stories.d.ts +7 -0
- package/dist/src/components/molecules/radio-section/RadioSection.stories.js +18 -0
- package/dist/src/components/molecules/radio-section/RadioSection.theme.d.ts +13 -0
- package/dist/src/components/molecules/radio-section/RadioSection.theme.js +13 -0
- package/dist/src/components/molecules/radio-section/index.d.ts +2 -0
- package/dist/src/components/molecules/radio-section/index.js +2 -0
- package/dist/src/components/molecules/registration-form/RegistrationForm.d.ts +9 -0
- package/dist/src/components/molecules/registration-form/RegistrationForm.js +43 -0
- package/dist/src/components/molecules/registration-form/RegistrationForm.state.d.ts +3 -0
- package/dist/src/components/molecules/registration-form/RegistrationForm.state.js +27 -0
- package/dist/src/components/molecules/registration-form/RegistrationForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/registration-form/RegistrationForm.stories.js +16 -0
- package/dist/src/components/molecules/registration-form/index.d.ts +2 -0
- package/dist/src/components/molecules/registration-form/index.js +6 -0
- package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.d.ts +4 -0
- package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.js +27 -0
- package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.js +9 -0
- package/dist/src/components/molecules/reset-confirmation-form/index.d.ts +2 -0
- package/dist/src/components/molecules/reset-confirmation-form/index.js +2 -0
- package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.d.ts +9 -0
- package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.js +30 -0
- package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.state.d.ts +3 -0
- package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.state.js +18 -0
- package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.stories.d.ts +7 -0
- package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.stories.js +16 -0
- package/dist/src/components/molecules/reset-password-form/index.d.ts +2 -0
- package/dist/src/components/molecules/reset-password-form/index.js +6 -0
- package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.d.ts +4 -0
- package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.js +27 -0
- package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.d.ts +7 -0
- package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.js +9 -0
- package/dist/src/components/molecules/reset-password-success/index.d.ts +2 -0
- package/dist/src/components/molecules/reset-password-success/index.js +2 -0
- package/dist/src/components/molecules/tab-sidebar/TabSidebar.d.ts +5 -0
- package/dist/src/components/molecules/tab-sidebar/TabSidebar.js +28 -0
- package/dist/src/components/molecules/tab-sidebar/TabSidebar.stories.d.ts +7 -0
- package/dist/src/components/molecules/tab-sidebar/TabSidebar.stories.js +52 -0
- package/dist/src/components/molecules/tab-sidebar/TabSidebar.theme.d.ts +9 -0
- package/dist/src/components/molecules/tab-sidebar/TabSidebar.theme.js +8 -0
- package/dist/src/components/molecules/tab-sidebar/index.d.ts +2 -0
- package/dist/src/components/molecules/tab-sidebar/index.js +2 -0
- package/dist/src/components/molecules/tabs/Tabs.d.ts +5 -0
- package/dist/src/components/molecules/tabs/Tabs.js +33 -0
- package/dist/src/components/molecules/tabs/Tabs.stories.d.ts +7 -0
- package/dist/src/components/molecules/tabs/Tabs.stories.js +186 -0
- package/dist/src/components/molecules/tabs/Tabs.theme.d.ts +9 -0
- package/dist/src/components/molecules/tabs/Tabs.theme.js +8 -0
- package/dist/src/components/molecules/tabs/index.d.ts +2 -0
- package/dist/src/components/molecules/tabs/index.js +2 -0
- package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.d.ts +8 -0
- package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.js +17 -0
- package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.d.ts +7 -0
- package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.js +12 -0
- package/dist/src/components/molecules/terms-and-conditions/index.d.ts +2 -0
- package/dist/src/components/molecules/terms-and-conditions/index.js +2 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.d.ts +5 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +16 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.d.ts +7 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +19 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.d.ts +50 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.js +24 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/index.d.ts +2 -0
- package/dist/src/components/molecules/terms-and-conditions-modal/index.js +2 -0
- package/dist/src/components/molecules/timeout/Timeout.d.ts +4 -0
- package/dist/src/components/molecules/timeout/Timeout.js +26 -0
- package/dist/src/components/molecules/timeout/index.d.ts +2 -0
- package/dist/src/components/molecules/timeout/index.js +2 -0
- package/dist/src/components/molecules/welcome-module/WelcomeModule.d.ts +6 -0
- package/dist/src/components/molecules/welcome-module/WelcomeModule.js +27 -0
- package/dist/src/components/molecules/welcome-module/WelcomeModule.theme.d.ts +13 -0
- package/dist/src/components/molecules/welcome-module/WelcomeModule.theme.js +13 -0
- package/dist/src/components/molecules/welcome-module/index.d.ts +2 -0
- package/dist/src/components/molecules/welcome-module/index.js +2 -0
- package/dist/src/components/molecules/workflow-tile/WorkflowTile.d.ts +7 -0
- package/dist/src/components/molecules/workflow-tile/WorkflowTile.js +19 -0
- package/dist/src/components/molecules/workflow-tile/WorkflowTile.stories.d.ts +7 -0
- package/dist/src/components/molecules/workflow-tile/WorkflowTile.stories.js +11 -0
- package/dist/src/components/molecules/workflow-tile/index.d.ts +2 -0
- package/dist/src/components/molecules/workflow-tile/index.js +2 -0
- package/dist/src/components/templates/center-single/CenterSingle.d.ts +4 -0
- package/dist/src/components/templates/center-single/CenterSingle.js +20 -0
- package/dist/src/components/templates/center-single/index.d.ts +2 -0
- package/dist/src/components/templates/center-single/index.js +2 -0
- package/dist/src/components/templates/center-stack/CenterStack.d.ts +4 -0
- package/dist/src/components/templates/center-stack/CenterStack.js +22 -0
- package/dist/src/components/templates/center-stack/index.d.ts +2 -0
- package/dist/src/components/templates/center-stack/index.js +2 -0
- package/dist/src/components/templates/default-page-template/DefaultPageTemplate.d.ts +4 -0
- package/dist/src/components/templates/default-page-template/DefaultPageTemplate.js +20 -0
- package/dist/src/components/templates/default-page-template/index.d.ts +2 -0
- package/dist/src/components/templates/default-page-template/index.js +2 -0
- package/dist/src/components/templates/index.d.ts +5 -0
- package/dist/src/components/templates/index.js +5 -0
- package/dist/src/components/templates/sidebar-single-content/SidebarSingleContent.d.ts +4 -0
- package/dist/src/components/templates/sidebar-single-content/SidebarSingleContent.js +25 -0
- package/dist/src/components/templates/sidebar-single-content/index.d.ts +2 -0
- package/dist/src/components/templates/sidebar-single-content/index.js +2 -0
- package/dist/src/components/templates/sidebar-stack-content/SidebarStackContent.d.ts +4 -0
- package/dist/src/components/templates/sidebar-stack-content/SidebarStackContent.js +25 -0
- package/dist/src/components/templates/sidebar-stack-content/index.d.ts +2 -0
- package/dist/src/components/templates/sidebar-stack-content/index.js +2 -0
- package/dist/src/components/templates/templates.theme.d.ts +5 -0
- package/dist/src/components/templates/templates.theme.js +4 -0
- package/dist/src/components/withWindowSize.d.ts +4 -0
- package/dist/src/components/withWindowSize.js +70 -0
- package/dist/src/constants/colors.d.ts +97 -0
- package/dist/src/constants/colors.js +113 -0
- package/dist/src/constants/index.d.ts +3 -0
- package/dist/src/constants/index.js +3 -0
- package/dist/src/constants/regex_constants.d.ts +1 -0
- package/dist/src/constants/regex_constants.js +1 -0
- package/dist/src/constants/style_constants.d.ts +8 -0
- package/dist/src/constants/style_constants.js +10 -0
- package/dist/src/deprecated/colors.d.ts +81 -0
- package/dist/src/deprecated/colors.js +97 -0
- package/dist/src/deprecated/components/radio-button/index.d.ts +2 -0
- package/dist/src/deprecated/components/radio-button/index.js +2 -0
- package/dist/src/deprecated/components/radio-button/radio-button.d.ts +5 -0
- package/dist/src/deprecated/components/radio-button/radio-button.js +29 -0
- package/dist/src/deprecated/icons/AlertErrorIcon.d.ts +1 -0
- package/dist/src/deprecated/icons/AlertErrorIcon.js +10 -0
- package/dist/src/deprecated/icons/AlertInfoIcon.d.ts +1 -0
- package/dist/src/deprecated/icons/AlertInfoIcon.js +10 -0
- package/dist/src/deprecated/icons/AlertSuccessIcon.d.ts +1 -0
- package/dist/src/deprecated/icons/AlertSuccessIcon.js +10 -0
- package/dist/src/deprecated/icons/AlertWarningIcon.d.ts +1 -0
- package/dist/src/deprecated/icons/AlertWarningIcon.js +6 -0
- package/dist/src/deprecated/icons/BankIcon.d.ts +2 -0
- package/dist/src/deprecated/icons/BankIcon.js +19 -0
- package/dist/src/deprecated/icons/GenericCard.d.ts +2 -0
- package/dist/src/deprecated/icons/GenericCard.js +9 -0
- package/dist/src/deprecated/icons/IconCheck.d.ts +5 -0
- package/dist/src/deprecated/icons/IconCheck.js +10 -0
- package/dist/src/deprecated/icons/IconCheckEmail.d.ts +4 -0
- package/dist/src/deprecated/icons/IconCheckEmail.js +14 -0
- package/dist/src/deprecated/icons/IconChevron.d.ts +3 -0
- package/dist/src/deprecated/icons/IconChevron.js +14 -0
- package/dist/src/deprecated/icons/IconEmailVerified.d.ts +4 -0
- package/dist/src/deprecated/icons/IconEmailVerified.js +22 -0
- package/dist/src/deprecated/icons/IconEye.d.ts +3 -0
- package/dist/src/deprecated/icons/IconEye.js +15 -0
- package/dist/src/deprecated/icons/IconEyeSlash.d.ts +3 -0
- package/dist/src/deprecated/icons/IconEyeSlash.js +19 -0
- package/dist/src/deprecated/icons/IconInvalid.d.ts +7 -0
- package/dist/src/deprecated/icons/IconInvalid.js +14 -0
- package/dist/src/deprecated/icons/IconNeutral.d.ts +6 -0
- package/dist/src/deprecated/icons/IconNeutral.js +10 -0
- package/dist/src/deprecated/icons/IconQuit.d.ts +5 -0
- package/dist/src/deprecated/icons/IconQuit.js +14 -0
- package/dist/src/deprecated/icons/IconValid.d.ts +7 -0
- package/dist/src/deprecated/icons/IconValid.js +15 -0
- package/dist/src/deprecated/icons/IconWarn.d.ts +3 -0
- package/dist/src/deprecated/icons/IconWarn.js +13 -0
- package/dist/src/deprecated/icons/index.d.ts +22 -0
- package/dist/src/deprecated/icons/index.js +22 -0
- package/dist/src/deprecated/index.d.ts +1 -0
- package/dist/src/deprecated/index.js +1 -0
- package/dist/src/deprecated/spinner/Spinner.d.ts +7 -0
- package/dist/src/deprecated/spinner/Spinner.js +46 -0
- package/dist/src/deprecated/spinner/index.d.ts +1 -0
- package/dist/src/deprecated/spinner/index.js +1 -0
- package/dist/src/deprecated/utility/__tests__/safeConcat.spec.d.ts +1 -0
- package/dist/src/deprecated/utility/__tests__/safeConcat.spec.js +47 -0
- package/dist/src/deprecated/utility/__tests__/validateKeyType.spec.d.ts +1 -0
- package/dist/src/deprecated/utility/__tests__/validateKeyType.spec.js +100 -0
- package/dist/src/deprecated/utility/index.d.ts +2 -0
- package/dist/src/deprecated/utility/index.js +2 -0
- package/dist/src/deprecated/utility/safeConcat.d.ts +1 -0
- package/dist/src/deprecated/utility/safeConcat.js +8 -0
- package/dist/src/deprecated/utility/validateKeyType.d.ts +1 -0
- package/dist/src/deprecated/utility/validateKeyType.js +13 -0
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.js +4 -0
- package/dist/src/util/focusFirstInvalidInputHook.d.ts +2 -0
- package/dist/src/util/focusFirstInvalidInputHook.js +17 -0
- package/dist/src/util/formats.d.ts +9 -0
- package/dist/src/util/formats.js +70 -0
- package/dist/src/util/general.d.ts +13 -0
- package/dist/src/util/general.js +101 -0
- package/dist/src/util/index.d.ts +5 -0
- package/dist/src/util/index.js +5 -0
- package/dist/src/util/inputValidationUtils.d.ts +43 -0
- package/dist/src/util/inputValidationUtils.js +92 -0
- package/dist/src/util/themeUtils.d.ts +5 -0
- package/dist/src/util/themeUtils.js +129 -0
- package/package.json +6 -2
- package/src/components/atoms/button-with-action/index.d.ts +17 -0
- package/src/components/atoms/button-with-link/index.d.ts +14 -0
- package/src/components/atoms/card/Card.js +43 -0
- package/src/components/atoms/card/Card.theme.js +7 -0
- package/src/components/atoms/card/index.d.ts +10 -0
- package/src/components/atoms/card/index.js +3 -0
- package/src/components/atoms/{welcome-card/Card.theme.js → card-registry/CardRegistry.theme.js} +0 -0
- package/src/components/atoms/{welcome-card/Card.js → card-registry/CardRegistryCard.js} +7 -3
- package/src/components/atoms/{welcome-card → card-registry}/index.js +4 -4
- package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
- package/src/components/atoms/index.d.ts +10 -0
- package/src/components/atoms/index.js +3 -1
- package/src/components/atoms/layouts/Box.d.ts +32 -0
- package/src/components/atoms/layouts/Center.d.ts +11 -0
- package/src/components/atoms/layouts/Cluster.d.ts +19 -0
- package/src/components/atoms/layouts/Cover.d.ts +14 -0
- package/src/components/atoms/layouts/Stack.d.ts +27 -0
- package/src/components/atoms/layouts/index.d.ts +5 -0
- package/src/components/atoms/link/ExternalLink.d.ts +18 -0
- package/src/components/atoms/link/InternalLink.d.ts +19 -0
- package/src/components/atoms/link/index.d.ts +2 -0
- package/src/components/atoms/nav-footer/index.d.ts +17 -0
- package/src/components/atoms/nav-header/index.d.ts +16 -0
- package/src/components/atoms/nav-tabs/NavTab.js +47 -0
- package/src/components/atoms/nav-tabs/NavTab.theme.js +11 -0
- package/src/components/atoms/nav-tabs/NavTabs.js +24 -0
- package/src/components/atoms/nav-tabs/index.d.ts +10 -0
- package/src/components/atoms/nav-tabs/index.js +3 -0
- package/src/components/atoms/paragraph/index.d.ts +15 -0
- package/src/components/atoms/title/index.d.ts +17 -0
- package/src/components/index.d.ts +3 -0
- package/src/components/molecules/card-with-header/CardWithHeader.js +33 -0
- package/src/components/molecules/card-with-header/CardWithHeader.theme.js +9 -0
- package/src/components/molecules/card-with-header/index.d.ts +10 -0
- package/src/components/molecules/card-with-header/index.js +2 -0
- package/src/components/molecules/footer-with-subfooter/FooterWithSubfooter.js +42 -0
- package/src/components/molecules/footer-with-subfooter/FooterWithSubfooter.theme.js +8 -0
- package/src/components/molecules/footer-with-subfooter/index.d.ts +14 -0
- package/src/components/molecules/footer-with-subfooter/index.js +3 -0
- package/src/components/molecules/index.d.ts +3 -0
- package/src/components/molecules/index.js +3 -0
- package/src/components/molecules/welcome-card/WelcomeCard.js +63 -0
- package/src/components/molecules/welcome-card/WelcomeCard.theme.js +15 -0
- package/src/components/molecules/welcome-card/index.d.ts +14 -0
- package/src/components/molecules/welcome-card/index.js +3 -0
- package/src/components/templates/default-page-template/DefaultPageTemplate.js +7 -2
- package/src/components/templates/default-page-template/index.d.ts +16 -0
- package/src/components/templates/index.d.ts +1 -0
- package/src/index.d.ts +1 -0
- package/src/util/expand.d.ts +3 -0
- package/src/.DS_Store +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -19109,7 +19109,7 @@ var CardVariantSwitcher = function CardVariantSwitcher(_ref) {
|
|
|
19109
19109
|
}, children));
|
|
19110
19110
|
};
|
|
19111
19111
|
|
|
19112
|
-
var
|
|
19112
|
+
var CardRegistryCard = function CardRegistryCard(_ref2) {
|
|
19113
19113
|
var themeValues = _ref2.themeValues,
|
|
19114
19114
|
icon = _ref2.icon,
|
|
19115
19115
|
heading = _ref2.heading,
|
|
@@ -19195,11 +19195,11 @@ var Card = function Card(_ref2) {
|
|
|
19195
19195
|
}))))));
|
|
19196
19196
|
};
|
|
19197
19197
|
|
|
19198
|
-
var
|
|
19198
|
+
var CardRegistryCard$1 = themeComponent(withWindowSize(CardRegistryCard), "CardRegistryCard", fallbackValues$b);
|
|
19199
19199
|
|
|
19200
19200
|
var cardRegistry = {
|
|
19201
19201
|
accounts: function accounts(props) {
|
|
19202
|
-
return /*#__PURE__*/React__default.createElement(
|
|
19202
|
+
return /*#__PURE__*/React__default.createElement(CardRegistryCard$1, _extends({
|
|
19203
19203
|
icon: "accounts",
|
|
19204
19204
|
heading: "Find Your Account",
|
|
19205
19205
|
buttonText: "Find Account",
|
|
@@ -19208,7 +19208,7 @@ var cardRegistry = {
|
|
|
19208
19208
|
}, props));
|
|
19209
19209
|
},
|
|
19210
19210
|
properties: function properties(props) {
|
|
19211
|
-
return /*#__PURE__*/React__default.createElement(
|
|
19211
|
+
return /*#__PURE__*/React__default.createElement(CardRegistryCard$1, _extends({
|
|
19212
19212
|
icon: "properties",
|
|
19213
19213
|
heading: "Find Your Property",
|
|
19214
19214
|
buttonText: "Find Property",
|
|
@@ -19217,7 +19217,7 @@ var cardRegistry = {
|
|
|
19217
19217
|
}, props));
|
|
19218
19218
|
},
|
|
19219
19219
|
payment: function payment(props) {
|
|
19220
|
-
return /*#__PURE__*/React__default.createElement(
|
|
19220
|
+
return /*#__PURE__*/React__default.createElement(CardRegistryCard$1, _extends({
|
|
19221
19221
|
icon: "payment",
|
|
19222
19222
|
heading: "Manage Your Wallet",
|
|
19223
19223
|
buttonText: "Go to Wallet",
|
|
@@ -34898,6 +34898,113 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
|
|
|
34898
34898
|
}));
|
|
34899
34899
|
};
|
|
34900
34900
|
|
|
34901
|
+
var backgroundColor$5 = WHITE;
|
|
34902
|
+
var fallbackValues$v = {
|
|
34903
|
+
backgroundColor: backgroundColor$5
|
|
34904
|
+
};
|
|
34905
|
+
|
|
34906
|
+
var _excluded$w = ["themeValues", "variant", "children", "extraStyles"];
|
|
34907
|
+
|
|
34908
|
+
var CardVariantSwitcher$1 = function CardVariantSwitcher(_ref) {
|
|
34909
|
+
var variant = _ref.variant,
|
|
34910
|
+
children = _ref.children;
|
|
34911
|
+
return variant === "vertical" ? /*#__PURE__*/React__default.createElement(React.Fragment, null, children) : /*#__PURE__*/React__default.createElement(Box, {
|
|
34912
|
+
padding: "0",
|
|
34913
|
+
extraStyles: "width: 100%"
|
|
34914
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
34915
|
+
childGap: "0",
|
|
34916
|
+
maxWidth: "100%",
|
|
34917
|
+
fullHeight: true
|
|
34918
|
+
}, children));
|
|
34919
|
+
};
|
|
34920
|
+
|
|
34921
|
+
var Card = function Card(_ref2) {
|
|
34922
|
+
var themeValues = _ref2.themeValues,
|
|
34923
|
+
variant = _ref2.variant,
|
|
34924
|
+
children = _ref2.children,
|
|
34925
|
+
extraStyles = _ref2.extraStyles,
|
|
34926
|
+
props = _objectWithoutProperties(_ref2, _excluded$w);
|
|
34927
|
+
|
|
34928
|
+
return /*#__PURE__*/React__default.createElement(BoxWithShadow$1, _extends({
|
|
34929
|
+
variant: "baseStandard",
|
|
34930
|
+
background: themeValues.backgroundColor,
|
|
34931
|
+
borderRadius: "4px",
|
|
34932
|
+
padding: "0",
|
|
34933
|
+
margin: "0",
|
|
34934
|
+
maxWidth: variant !== "vertical" ? "100%" : "276px",
|
|
34935
|
+
minHeight: "100%",
|
|
34936
|
+
minWidth: variant !== "vertical" && "276px",
|
|
34937
|
+
extraStyles: extraStyles
|
|
34938
|
+
}, props), /*#__PURE__*/React__default.createElement(Cover, {
|
|
34939
|
+
singleChild: true,
|
|
34940
|
+
fillCenter: true
|
|
34941
|
+
}, /*#__PURE__*/React__default.createElement(CardVariantSwitcher$1, {
|
|
34942
|
+
variant: variant
|
|
34943
|
+
}, children)));
|
|
34944
|
+
};
|
|
34945
|
+
|
|
34946
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$v);
|
|
34947
|
+
|
|
34948
|
+
var fontFamily$6 = "Public Sans, sans-serif";
|
|
34949
|
+
var activeColor$5 = MATISSE_BLUE;
|
|
34950
|
+
var linkColor$3 = CHARADE_GREY;
|
|
34951
|
+
var fallbackValues$w = {
|
|
34952
|
+
fontFamily: fontFamily$6,
|
|
34953
|
+
activeColor: activeColor$5,
|
|
34954
|
+
linkColor: linkColor$3
|
|
34955
|
+
};
|
|
34956
|
+
|
|
34957
|
+
var NavTab = function NavTab(_ref) {
|
|
34958
|
+
var path = _ref.path,
|
|
34959
|
+
label = _ref.label,
|
|
34960
|
+
themeValues = _ref.themeValues;
|
|
34961
|
+
|
|
34962
|
+
var _useContext = React.useContext(styled.ThemeContext),
|
|
34963
|
+
isMobile = _useContext.isMobile;
|
|
34964
|
+
|
|
34965
|
+
var _useState = React.useState(false),
|
|
34966
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
34967
|
+
isActive = _useState2[0],
|
|
34968
|
+
setIsActive = _useState2[1];
|
|
34969
|
+
|
|
34970
|
+
var location = reactRouterDom.useLocation();
|
|
34971
|
+
React.useEffect(function () {
|
|
34972
|
+
setIsActive(location.pathname.includes(path));
|
|
34973
|
+
}, [location.pathname]);
|
|
34974
|
+
var border = "border-bottom: 3px solid ".concat(themeValues.activeColor);
|
|
34975
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
34976
|
+
padding: 0
|
|
34977
|
+
}, /*#__PURE__*/React__default.createElement(InternalLink, {
|
|
34978
|
+
color: isActive ? themeValues.activeColor : themeValues.linkColor,
|
|
34979
|
+
to: path,
|
|
34980
|
+
extraStyles: "\n border-bottom: 3px solid transparent;\n font-family: ".concat(themeValues.fontFamily, ";\n text-decoration: none;\n ").concat(isActive && !isMobile ? border : "none", ";\n &:hover {\n text-decoration: none;\n color: ").concat(themeValues.activeColor, ";\n ").concat(isMobile ? "" : "".concat(border), "\n };\n padding: 1.25rem 0.1rem;\n ")
|
|
34981
|
+
}, label));
|
|
34982
|
+
};
|
|
34983
|
+
|
|
34984
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$w);
|
|
34985
|
+
|
|
34986
|
+
var NavTabs = function NavTabs(_ref) {
|
|
34987
|
+
var tabsConfig = _ref.tabsConfig,
|
|
34988
|
+
tabGap = _ref.tabGap;
|
|
34989
|
+
|
|
34990
|
+
var _useContext = React.useContext(styled.ThemeContext),
|
|
34991
|
+
isMobile = _useContext.isMobile;
|
|
34992
|
+
|
|
34993
|
+
var tabs = tabsConfig.map(function (tabConfig) {
|
|
34994
|
+
return /*#__PURE__*/React__default.createElement(NavTab$1, _extends({
|
|
34995
|
+
key: tabConfig.path
|
|
34996
|
+
}, tabConfig));
|
|
34997
|
+
});
|
|
34998
|
+
return /*#__PURE__*/React__default.createElement(BoxWithShadow$1, {
|
|
34999
|
+
variant: "insetStandard",
|
|
35000
|
+
extraStyles: "padding: 0"
|
|
35001
|
+
}, /*#__PURE__*/React__default.createElement(Center, {
|
|
35002
|
+
intrinsic: true
|
|
35003
|
+
}, isMobile ? tabs : /*#__PURE__*/React__default.createElement(Cluster, {
|
|
35004
|
+
childGap: tabGap
|
|
35005
|
+
}, tabs)));
|
|
35006
|
+
};
|
|
35007
|
+
|
|
34901
35008
|
const validatorToPredicate = (validatorFn, emptyCase) => (
|
|
34902
35009
|
value,
|
|
34903
35010
|
...rest
|
|
@@ -36825,6 +36932,38 @@ AddressForm.reducer = reducer;
|
|
|
36825
36932
|
AddressForm.mapStateToProps = mapStateToProps$1;
|
|
36826
36933
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
36827
36934
|
|
|
36935
|
+
var headerBackgroundColor = STORM_GREY;
|
|
36936
|
+
var headerTextColor = WHITE;
|
|
36937
|
+
var fallbackValues$x = {
|
|
36938
|
+
headerBackgroundColor: headerBackgroundColor,
|
|
36939
|
+
headerTextColor: headerTextColor
|
|
36940
|
+
};
|
|
36941
|
+
|
|
36942
|
+
var _excluded$x = ["themeValues", "children", "header", "extraStyles"];
|
|
36943
|
+
|
|
36944
|
+
var CardWithHeader = function CardWithHeader(_ref) {
|
|
36945
|
+
var themeValues = _ref.themeValues,
|
|
36946
|
+
children = _ref.children,
|
|
36947
|
+
header = _ref.header,
|
|
36948
|
+
extraStyles = _ref.extraStyles,
|
|
36949
|
+
props = _objectWithoutProperties(_ref, _excluded$x);
|
|
36950
|
+
|
|
36951
|
+
return /*#__PURE__*/React__default.createElement(Card$1, _extends({
|
|
36952
|
+
extraStyles: extraStyles
|
|
36953
|
+
}, props), /*#__PURE__*/React__default.createElement(Box, {
|
|
36954
|
+
padding: "24px",
|
|
36955
|
+
background: themeValues.headerBackgroundColor,
|
|
36956
|
+
extraStyles: "\n border-radius: 4px 4px 0 0;\n "
|
|
36957
|
+
}, /*#__PURE__*/React__default.createElement(Title$1, {
|
|
36958
|
+
variant: "small",
|
|
36959
|
+
color: themeValues.headerTextColor
|
|
36960
|
+
}, header)), /*#__PURE__*/React__default.createElement(Box, {
|
|
36961
|
+
padding: "24px"
|
|
36962
|
+
}, children));
|
|
36963
|
+
};
|
|
36964
|
+
|
|
36965
|
+
var CardWithHeader$1 = themeComponent(CardWithHeader, "CardWithHeader", fallbackValues$x);
|
|
36966
|
+
|
|
36828
36967
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
36829
36968
|
var _newPasswordErrorMess;
|
|
36830
36969
|
|
|
@@ -36965,7 +37104,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
36965
37104
|
var titleColor = "#292A33";
|
|
36966
37105
|
var headingBackgroundColor = "transparent";
|
|
36967
37106
|
var bodyBackgroundColor = "transparent";
|
|
36968
|
-
var fallbackValues$
|
|
37107
|
+
var fallbackValues$y = {
|
|
36969
37108
|
titleColor: titleColor,
|
|
36970
37109
|
headingBackgroundColor: headingBackgroundColor,
|
|
36971
37110
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -37092,7 +37231,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
37092
37231
|
}, children))));
|
|
37093
37232
|
};
|
|
37094
37233
|
|
|
37095
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
37234
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$y);
|
|
37096
37235
|
|
|
37097
37236
|
var EditNameForm = function EditNameForm(_ref) {
|
|
37098
37237
|
var fields = _ref.fields,
|
|
@@ -37496,6 +37635,42 @@ EmailForm.reducer = reducer$3;
|
|
|
37496
37635
|
EmailForm.mapStateToProps = mapStateToProps$4;
|
|
37497
37636
|
EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
37498
37637
|
|
|
37638
|
+
var footerBackgroundColor = BRIGHT_GREY;
|
|
37639
|
+
var subfooterBackgroundColor = STORM_GREY;
|
|
37640
|
+
var fallbackValues$z = {
|
|
37641
|
+
footerBackgroundColor: footerBackgroundColor,
|
|
37642
|
+
subfooterBackgroundColor: subfooterBackgroundColor
|
|
37643
|
+
};
|
|
37644
|
+
|
|
37645
|
+
var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
37646
|
+
var _ref$footerLargeSide = _ref.footerLargeSide,
|
|
37647
|
+
footerLargeSide = _ref$footerLargeSide === void 0 ? "right" : _ref$footerLargeSide,
|
|
37648
|
+
_ref$footerLargeSideS = _ref.footerLargeSideSize,
|
|
37649
|
+
footerLargeSideSize = _ref$footerLargeSideS === void 0 ? "2" : _ref$footerLargeSideS,
|
|
37650
|
+
leftFooterContent = _ref.leftFooterContent,
|
|
37651
|
+
rightFooterContent = _ref.rightFooterContent,
|
|
37652
|
+
leftSubfooterContent = _ref.leftSubfooterContent,
|
|
37653
|
+
rightSubfooterContent = _ref.rightSubfooterContent,
|
|
37654
|
+
themeValues = _ref.themeValues;
|
|
37655
|
+
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(NavFooter, {
|
|
37656
|
+
largeSide: footerLargeSide,
|
|
37657
|
+
largeSideSize: footerLargeSideSize,
|
|
37658
|
+
rightContent: rightFooterContent,
|
|
37659
|
+
leftContent: leftFooterContent,
|
|
37660
|
+
"aria-label": "footer",
|
|
37661
|
+
backgroundColor: themeValues.footerBackgroundColor
|
|
37662
|
+
}), /*#__PURE__*/React__default.createElement(NavFooter, {
|
|
37663
|
+
backgroundColor: themeValues.subfooterBackgroundColor,
|
|
37664
|
+
footerMinHeight: "45px",
|
|
37665
|
+
footerPadding: "0 1rem",
|
|
37666
|
+
"aria-label": "subfooter",
|
|
37667
|
+
leftContent: leftSubfooterContent,
|
|
37668
|
+
rightContent: rightSubfooterContent
|
|
37669
|
+
}));
|
|
37670
|
+
};
|
|
37671
|
+
|
|
37672
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$z);
|
|
37673
|
+
|
|
37499
37674
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
37500
37675
|
var _EmailErrorMessages;
|
|
37501
37676
|
|
|
@@ -37545,10 +37720,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
|
|
|
37545
37720
|
ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
37546
37721
|
|
|
37547
37722
|
var textColor$2 = "#ffffff";
|
|
37548
|
-
var backgroundColor$
|
|
37549
|
-
var fallbackValues$
|
|
37723
|
+
var backgroundColor$6 = "#182848";
|
|
37724
|
+
var fallbackValues$A = {
|
|
37550
37725
|
textColor: textColor$2,
|
|
37551
|
-
backgroundColor: backgroundColor$
|
|
37726
|
+
backgroundColor: backgroundColor$6
|
|
37552
37727
|
};
|
|
37553
37728
|
|
|
37554
37729
|
var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
@@ -37603,7 +37778,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
37603
37778
|
}), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
|
|
37604
37779
|
};
|
|
37605
37780
|
|
|
37606
|
-
var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
37781
|
+
var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$A));
|
|
37607
37782
|
|
|
37608
37783
|
var AccountBillIcon = function AccountBillIcon() {
|
|
37609
37784
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -43006,12 +43181,12 @@ var borderRadius = {
|
|
|
43006
43181
|
largeTitle: "0.25rem",
|
|
43007
43182
|
small: "0.25rem"
|
|
43008
43183
|
};
|
|
43009
|
-
var backgroundColor$
|
|
43184
|
+
var backgroundColor$7 = {
|
|
43010
43185
|
"default": WHITE,
|
|
43011
43186
|
largeTitle: WHITE,
|
|
43012
43187
|
small: WHITE
|
|
43013
43188
|
};
|
|
43014
|
-
var fallbackValues$
|
|
43189
|
+
var fallbackValues$B = {
|
|
43015
43190
|
fontSize: fontSize$9,
|
|
43016
43191
|
fontWeight: fontWeight$5,
|
|
43017
43192
|
fontColor: fontColor,
|
|
@@ -43021,7 +43196,7 @@ var fallbackValues$x = {
|
|
|
43021
43196
|
titleSpacing: titleSpacing,
|
|
43022
43197
|
boxShadow: boxShadow$1,
|
|
43023
43198
|
borderRadius: borderRadius,
|
|
43024
|
-
backgroundColor: backgroundColor$
|
|
43199
|
+
backgroundColor: backgroundColor$7
|
|
43025
43200
|
};
|
|
43026
43201
|
|
|
43027
43202
|
/*
|
|
@@ -43070,9 +43245,9 @@ var Module = function Module(_ref) {
|
|
|
43070
43245
|
}, children)));
|
|
43071
43246
|
};
|
|
43072
43247
|
|
|
43073
|
-
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$
|
|
43248
|
+
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$B, "default"));
|
|
43074
43249
|
|
|
43075
|
-
var backgroundColor$
|
|
43250
|
+
var backgroundColor$8 = {
|
|
43076
43251
|
profile: "#3b414d",
|
|
43077
43252
|
cms: "#3b414d"
|
|
43078
43253
|
};
|
|
@@ -43080,8 +43255,8 @@ var shadowColor = {
|
|
|
43080
43255
|
profile: "#292A33",
|
|
43081
43256
|
cms: "#292A33"
|
|
43082
43257
|
};
|
|
43083
|
-
var fallbackValues$
|
|
43084
|
-
backgroundColor: backgroundColor$
|
|
43258
|
+
var fallbackValues$C = {
|
|
43259
|
+
backgroundColor: backgroundColor$8,
|
|
43085
43260
|
shadowColor: shadowColor
|
|
43086
43261
|
};
|
|
43087
43262
|
|
|
@@ -43121,7 +43296,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
43121
43296
|
}, menuContent));
|
|
43122
43297
|
};
|
|
43123
43298
|
|
|
43124
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
43299
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$C, "profile");
|
|
43125
43300
|
|
|
43126
43301
|
var menu = posed.div({
|
|
43127
43302
|
invisible: {
|
|
@@ -43177,7 +43352,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
|
|
|
43177
43352
|
}, menuContent));
|
|
43178
43353
|
};
|
|
43179
43354
|
|
|
43180
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
43355
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$C, "profile");
|
|
43181
43356
|
|
|
43182
43357
|
var IconsModule = function IconsModule(_ref) {
|
|
43183
43358
|
var icon = _ref.icon,
|
|
@@ -43230,15 +43405,15 @@ var TitleModule = function TitleModule(_ref) {
|
|
|
43230
43405
|
|
|
43231
43406
|
var color$a = "#15749D";
|
|
43232
43407
|
var hoverColor$4 = "#116285";
|
|
43233
|
-
var activeColor$
|
|
43234
|
-
var linkColor$
|
|
43408
|
+
var activeColor$6 = "#0E506D";
|
|
43409
|
+
var linkColor$4 = "#3176AA";
|
|
43235
43410
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
43236
43411
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
43237
|
-
var fallbackValues$
|
|
43412
|
+
var fallbackValues$D = {
|
|
43238
43413
|
color: color$a,
|
|
43239
43414
|
hoverColor: hoverColor$4,
|
|
43240
|
-
activeColor: activeColor$
|
|
43241
|
-
linkColor: linkColor$
|
|
43415
|
+
activeColor: activeColor$6,
|
|
43416
|
+
linkColor: linkColor$4,
|
|
43242
43417
|
fontWeight: fontWeight$6,
|
|
43243
43418
|
modalLinkHoverFocus: modalLinkHoverFocus
|
|
43244
43419
|
};
|
|
@@ -43346,7 +43521,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
43346
43521
|
}, modalExtraProps), renderAutoPayControl());
|
|
43347
43522
|
};
|
|
43348
43523
|
|
|
43349
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
43524
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$D);
|
|
43350
43525
|
|
|
43351
43526
|
var AmountModule = function AmountModule(_ref) {
|
|
43352
43527
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -44142,7 +44317,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
44142
44317
|
}, backButton, !hideForwardButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, forwardButton))));
|
|
44143
44318
|
};
|
|
44144
44319
|
|
|
44145
|
-
var backgroundColor$
|
|
44320
|
+
var backgroundColor$9 = {
|
|
44146
44321
|
"default": "transparent",
|
|
44147
44322
|
small: "transparent"
|
|
44148
44323
|
};
|
|
@@ -44158,14 +44333,14 @@ var labeledAmountTotal = {
|
|
|
44158
44333
|
"default": "h6",
|
|
44159
44334
|
small: "p"
|
|
44160
44335
|
};
|
|
44161
|
-
var fallbackValues$
|
|
44162
|
-
backgroundColor: backgroundColor$
|
|
44336
|
+
var fallbackValues$E = {
|
|
44337
|
+
backgroundColor: backgroundColor$9,
|
|
44163
44338
|
lineItem: lineItem,
|
|
44164
44339
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
44165
44340
|
labeledAmountTotal: labeledAmountTotal
|
|
44166
44341
|
};
|
|
44167
44342
|
|
|
44168
|
-
var _excluded$
|
|
44343
|
+
var _excluded$y = ["amount"],
|
|
44169
44344
|
_excluded2$1 = ["amount"];
|
|
44170
44345
|
|
|
44171
44346
|
var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
@@ -44310,7 +44485,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
44310
44485
|
return fee.amount > 0;
|
|
44311
44486
|
}).map(function (_ref5) {
|
|
44312
44487
|
var amount = _ref5.amount,
|
|
44313
|
-
rest = _objectWithoutProperties(_ref5, _excluded$
|
|
44488
|
+
rest = _objectWithoutProperties(_ref5, _excluded$y);
|
|
44314
44489
|
|
|
44315
44490
|
return _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
44316
44491
|
amount: displayCurrency(amount)
|
|
@@ -44409,9 +44584,9 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
44409
44584
|
});
|
|
44410
44585
|
};
|
|
44411
44586
|
|
|
44412
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
44587
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$E, "default");
|
|
44413
44588
|
|
|
44414
|
-
var linkColor$
|
|
44589
|
+
var linkColor$5 = {
|
|
44415
44590
|
"default": "#3176AA"
|
|
44416
44591
|
};
|
|
44417
44592
|
var fontSize$a = {
|
|
@@ -44426,8 +44601,8 @@ var fontWeight$7 = {
|
|
|
44426
44601
|
var modalLinkHoverFocus$1 = {
|
|
44427
44602
|
"default": "outline: none; text-decoration: underline;"
|
|
44428
44603
|
};
|
|
44429
|
-
var fallbackValues$
|
|
44430
|
-
linkColor: linkColor$
|
|
44604
|
+
var fallbackValues$F = {
|
|
44605
|
+
linkColor: linkColor$5,
|
|
44431
44606
|
fontSize: fontSize$a,
|
|
44432
44607
|
lineHeight: lineHeight$4,
|
|
44433
44608
|
fontWeight: fontWeight$7,
|
|
@@ -44485,7 +44660,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
44485
44660
|
}, link));
|
|
44486
44661
|
};
|
|
44487
44662
|
|
|
44488
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
44663
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$F, "default");
|
|
44489
44664
|
|
|
44490
44665
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
44491
44666
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -44919,7 +45094,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
44919
45094
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
44920
45095
|
var borderColor$3 = "".concat(GREY_CHATEAU);
|
|
44921
45096
|
var focusStyles = "outline: none;";
|
|
44922
|
-
var fallbackValues$
|
|
45097
|
+
var fallbackValues$G = {
|
|
44923
45098
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
44924
45099
|
headingDisabledColor: headingDisabledColor,
|
|
44925
45100
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -45138,7 +45313,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
45138
45313
|
})));
|
|
45139
45314
|
};
|
|
45140
45315
|
|
|
45141
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
45316
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$G);
|
|
45142
45317
|
|
|
45143
45318
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
45144
45319
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -45435,7 +45610,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
45435
45610
|
var activeTabBackground = "#FFFFFF";
|
|
45436
45611
|
var activeTabAccent = "#15749D";
|
|
45437
45612
|
var activeTabHover = "#B8D5E1";
|
|
45438
|
-
var fallbackValues$
|
|
45613
|
+
var fallbackValues$H = {
|
|
45439
45614
|
activeTabBackground: activeTabBackground,
|
|
45440
45615
|
activeTabAccent: activeTabAccent,
|
|
45441
45616
|
activeTabHover: activeTabHover
|
|
@@ -45514,12 +45689,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
45514
45689
|
}))));
|
|
45515
45690
|
};
|
|
45516
45691
|
|
|
45517
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
45692
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$H);
|
|
45518
45693
|
|
|
45519
45694
|
var activeTabBackground$1 = "#FFFFFF";
|
|
45520
45695
|
var activeTabAccent$1 = "#15749D";
|
|
45521
45696
|
var activeTabHover$1 = "#B8D5E1";
|
|
45522
|
-
var fallbackValues$
|
|
45697
|
+
var fallbackValues$I = {
|
|
45523
45698
|
activeTabBackground: activeTabBackground$1,
|
|
45524
45699
|
activeTabAccent: activeTabAccent$1,
|
|
45525
45700
|
activeTabHover: activeTabHover$1
|
|
@@ -45575,13 +45750,13 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
45575
45750
|
})));
|
|
45576
45751
|
};
|
|
45577
45752
|
|
|
45578
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
45753
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$I);
|
|
45579
45754
|
|
|
45580
|
-
var backgroundColor$
|
|
45755
|
+
var backgroundColor$a = {
|
|
45581
45756
|
"default": "#ffffff",
|
|
45582
45757
|
footer: "#ffffff"
|
|
45583
45758
|
};
|
|
45584
|
-
var linkColor$
|
|
45759
|
+
var linkColor$6 = {
|
|
45585
45760
|
"default": "#3176AA",
|
|
45586
45761
|
footer: "#ffffff"
|
|
45587
45762
|
};
|
|
@@ -45606,9 +45781,9 @@ var modalLinkHoverFocus$2 = {
|
|
|
45606
45781
|
"default": standardInteractionStyles,
|
|
45607
45782
|
footer: standardInteractionStyles
|
|
45608
45783
|
};
|
|
45609
|
-
var fallbackValues$
|
|
45610
|
-
backgroundColor: backgroundColor$
|
|
45611
|
-
linkColor: linkColor$
|
|
45784
|
+
var fallbackValues$J = {
|
|
45785
|
+
backgroundColor: backgroundColor$a,
|
|
45786
|
+
linkColor: linkColor$6,
|
|
45612
45787
|
border: border$3,
|
|
45613
45788
|
fontSize: fontSize$b,
|
|
45614
45789
|
lineHeight: lineHeight$5,
|
|
@@ -45668,7 +45843,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
45668
45843
|
}, link));
|
|
45669
45844
|
};
|
|
45670
45845
|
|
|
45671
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
45846
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$J, "default");
|
|
45672
45847
|
|
|
45673
45848
|
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
45674
45849
|
var onCheck = _ref.onCheck,
|
|
@@ -45738,17 +45913,64 @@ var Timeout = function Timeout(_ref) {
|
|
|
45738
45913
|
|
|
45739
45914
|
var Timeout$1 = withWindowSize(Timeout);
|
|
45740
45915
|
|
|
45916
|
+
var titleColor$1 = BRIGHT_GREY;
|
|
45917
|
+
var textColor$3 = BRIGHT_GREY;
|
|
45918
|
+
var titleWeight = FONT_WEIGHT_BOLD;
|
|
45919
|
+
var imageBackgroundColor = INFO_BLUE;
|
|
45920
|
+
var fallbackValues$K = {
|
|
45921
|
+
textColor: textColor$3,
|
|
45922
|
+
titleColor: titleColor$1,
|
|
45923
|
+
titleWeight: titleWeight,
|
|
45924
|
+
imageBackgroundColor: imageBackgroundColor
|
|
45925
|
+
};
|
|
45926
|
+
|
|
45927
|
+
var WelcomeCard = function WelcomeCard(_ref) {
|
|
45928
|
+
var themeValues = _ref.themeValues,
|
|
45929
|
+
title = _ref.title,
|
|
45930
|
+
text = _ref.text,
|
|
45931
|
+
buttonText = _ref.buttonText,
|
|
45932
|
+
url = _ref.url,
|
|
45933
|
+
imageSrc = _ref.imageSrc,
|
|
45934
|
+
newTab = _ref.newTab;
|
|
45935
|
+
return /*#__PURE__*/React__default.createElement(Card$1, null, imageSrc && /*#__PURE__*/React__default.createElement(Cover, null, /*#__PURE__*/React__default.createElement("img", {
|
|
45936
|
+
src: imageSrc,
|
|
45937
|
+
style: {
|
|
45938
|
+
background: "".concat(themeValues.imageBackgroundColor),
|
|
45939
|
+
objectFit: "none",
|
|
45940
|
+
height: "150px"
|
|
45941
|
+
}
|
|
45942
|
+
})), /*#__PURE__*/React__default.createElement(Box, {
|
|
45943
|
+
padding: "24px"
|
|
45944
|
+
}, /*#__PURE__*/React__default.createElement(Title$1, {
|
|
45945
|
+
variant: "small",
|
|
45946
|
+
color: themeValues.titleColor,
|
|
45947
|
+
weight: themeValues.titleWeight
|
|
45948
|
+
}, title), /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
45949
|
+
color: themeValues.textColor
|
|
45950
|
+
}, text), url && buttonText && /*#__PURE__*/React__default.createElement(Box, {
|
|
45951
|
+
extraStyles: "margin-top: 4rem; padding: 0"
|
|
45952
|
+
}, /*#__PURE__*/React__default.createElement(ButtonWithLink, {
|
|
45953
|
+
extraStyles: "margin: 0; width: 100%",
|
|
45954
|
+
linkExtraStyles: "text-decoration:none",
|
|
45955
|
+
url: url,
|
|
45956
|
+
text: buttonText,
|
|
45957
|
+
newTab: newTab
|
|
45958
|
+
}))));
|
|
45959
|
+
};
|
|
45960
|
+
|
|
45961
|
+
var WelcomeCard$1 = themeComponent(WelcomeCard, "WelcomeCard", fallbackValues$K);
|
|
45962
|
+
|
|
45741
45963
|
var fontWeight$9 = "600";
|
|
45742
45964
|
var fontColor$1 = WHITE;
|
|
45743
45965
|
var textAlign$1 = "left";
|
|
45744
|
-
var headerBackgroundColor = BRIGHT_GREY;
|
|
45745
|
-
var imageBackgroundColor = MATISSE_BLUE;
|
|
45746
|
-
var fallbackValues$
|
|
45966
|
+
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
45967
|
+
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
45968
|
+
var fallbackValues$L = {
|
|
45747
45969
|
fontWeight: fontWeight$9,
|
|
45748
45970
|
fontColor: fontColor$1,
|
|
45749
45971
|
textAlign: textAlign$1,
|
|
45750
|
-
headerBackgroundColor: headerBackgroundColor,
|
|
45751
|
-
imageBackgroundColor: imageBackgroundColor
|
|
45972
|
+
headerBackgroundColor: headerBackgroundColor$1,
|
|
45973
|
+
imageBackgroundColor: imageBackgroundColor$1
|
|
45752
45974
|
};
|
|
45753
45975
|
|
|
45754
45976
|
var WelcomeImage = styled__default.img.withConfig({
|
|
@@ -45790,7 +46012,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
45790
46012
|
})))));
|
|
45791
46013
|
};
|
|
45792
46014
|
|
|
45793
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
46015
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$L));
|
|
45794
46016
|
|
|
45795
46017
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
45796
46018
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -45963,7 +46185,7 @@ var PeriscopeDashboardIframe = function PeriscopeDashboardIframe(_ref) {
|
|
|
45963
46185
|
};
|
|
45964
46186
|
|
|
45965
46187
|
var pageBackground = "#FBFCFD";
|
|
45966
|
-
var fallbackValues$
|
|
46188
|
+
var fallbackValues$M = {
|
|
45967
46189
|
pageBackground: pageBackground
|
|
45968
46190
|
};
|
|
45969
46191
|
|
|
@@ -46010,7 +46232,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
46010
46232
|
})));
|
|
46011
46233
|
};
|
|
46012
46234
|
|
|
46013
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
46235
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$M));
|
|
46014
46236
|
|
|
46015
46237
|
var CenterStack = function CenterStack(_ref) {
|
|
46016
46238
|
var header = _ref.header,
|
|
@@ -46052,7 +46274,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
46052
46274
|
})));
|
|
46053
46275
|
};
|
|
46054
46276
|
|
|
46055
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
46277
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$M));
|
|
46056
46278
|
|
|
46057
46279
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
46058
46280
|
var header = _ref.header,
|
|
@@ -46065,7 +46287,9 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
46065
46287
|
_ref$maxWidth = _ref.maxWidth,
|
|
46066
46288
|
maxWidth = _ref$maxWidth === void 0 ? "75rem" : _ref$maxWidth,
|
|
46067
46289
|
_ref$gutters = _ref.gutters,
|
|
46068
|
-
gutters = _ref$gutters === void 0 ? "2rem" : _ref$gutters
|
|
46290
|
+
gutters = _ref$gutters === void 0 ? "2rem" : _ref$gutters,
|
|
46291
|
+
_ref$fillPageVertical = _ref.fillPageVertical,
|
|
46292
|
+
fillPageVertical = _ref$fillPageVertical === void 0 ? false : _ref$fillPageVertical;
|
|
46069
46293
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
46070
46294
|
var isMobile = themeContext.isMobile;
|
|
46071
46295
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -46075,7 +46299,10 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
46075
46299
|
extraStyles: "flex-grow: 1;"
|
|
46076
46300
|
}, /*#__PURE__*/React__default.createElement(Cover, {
|
|
46077
46301
|
childGap: "0",
|
|
46078
|
-
fillCenter: true
|
|
46302
|
+
fillCenter: true,
|
|
46303
|
+
style: {
|
|
46304
|
+
minHeight: fillPageVertical ? "100vh" : "initial"
|
|
46305
|
+
}
|
|
46079
46306
|
}, header ? header : /*#__PURE__*/React__default.createElement(Box, {
|
|
46080
46307
|
padding: "0"
|
|
46081
46308
|
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -46092,7 +46319,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
46092
46319
|
})));
|
|
46093
46320
|
};
|
|
46094
46321
|
|
|
46095
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
46322
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$M));
|
|
46096
46323
|
|
|
46097
46324
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
46098
46325
|
var header = _ref.header,
|
|
@@ -46146,7 +46373,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
46146
46373
|
})));
|
|
46147
46374
|
};
|
|
46148
46375
|
|
|
46149
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
46376
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$M));
|
|
46150
46377
|
|
|
46151
46378
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
46152
46379
|
var header = _ref.header,
|
|
@@ -46217,7 +46444,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
46217
46444
|
})));
|
|
46218
46445
|
};
|
|
46219
46446
|
|
|
46220
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
46447
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$M));
|
|
46221
46448
|
|
|
46222
46449
|
|
|
46223
46450
|
|
|
@@ -46275,6 +46502,8 @@ exports.Breadcrumb = Breadcrumbs;
|
|
|
46275
46502
|
exports.ButtonWithAction = ButtonWithAction;
|
|
46276
46503
|
exports.ButtonWithLink = ButtonWithLink;
|
|
46277
46504
|
exports.CalendarIcon = CalendarIcon;
|
|
46505
|
+
exports.Card = Card$1;
|
|
46506
|
+
exports.CardWithHeader = CardWithHeader$1;
|
|
46278
46507
|
exports.CarrotIcon = CarrotIcon$1;
|
|
46279
46508
|
exports.CashIcon = CashIcon;
|
|
46280
46509
|
exports.Center = Center;
|
|
@@ -46308,6 +46537,7 @@ exports.ErroredIcon = ErroredIcon;
|
|
|
46308
46537
|
exports.ExternalLink = ExternalLink;
|
|
46309
46538
|
exports.ExternalLinkIcon = ExternalLinkIcon;
|
|
46310
46539
|
exports.FailedIcon = FailedIcon;
|
|
46540
|
+
exports.FooterWithSubfooter = FooterWithSubfooter$1;
|
|
46311
46541
|
exports.ForgotPasswordForm = ForgotPasswordForm;
|
|
46312
46542
|
exports.ForgotPasswordIcon = ForgotPasswordIcon$1;
|
|
46313
46543
|
exports.FormContainer = FormContainer$1;
|
|
@@ -46343,6 +46573,7 @@ exports.NavFooter = NavFooter;
|
|
|
46343
46573
|
exports.NavHeader = NavHeader;
|
|
46344
46574
|
exports.NavMenuDesktop = NavMenuDesktop$1;
|
|
46345
46575
|
exports.NavMenuMobile = NavMenuMobile$1;
|
|
46576
|
+
exports.NavTabs = NavTabs;
|
|
46346
46577
|
exports.NoCustomerResultsIcon = NoCustomerResultsIcon;
|
|
46347
46578
|
exports.NoPaymentResultsIcon = NoPaymentResultsIcon;
|
|
46348
46579
|
exports.NotFoundIcon = NotFoundIcon;
|
|
@@ -46413,6 +46644,7 @@ exports.VerifiedEmailIcon = VerifiedEmailIcon$1;
|
|
|
46413
46644
|
exports.VoidedIcon = VoidedIcon;
|
|
46414
46645
|
exports.WalletIcon = WalletIcon$1;
|
|
46415
46646
|
exports.WarningIconXS = WarningIconXS;
|
|
46647
|
+
exports.WelcomeCard = WelcomeCard$1;
|
|
46416
46648
|
exports.WelcomeModule = WelcomeModule$1;
|
|
46417
46649
|
exports.WorkflowTile = WorkflowTile;
|
|
46418
46650
|
exports.cardRegistry = cardRegistry;
|