@thecb/components 12.0.0-beta.0 → 12.0.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/README.md +33 -11
- package/ai-docs/architecture.md +71 -0
- package/ai-docs/components.md +167 -0
- package/ai-docs/conventions.md +162 -0
- package/ai-docs/figma-mcp.md +66 -0
- package/ai-docs/integration-guidelines.md +142 -0
- package/dist/index.cjs.js +27805 -25779
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +286 -12
- package/dist/index.esm.js +26589 -24593
- package/dist/index.esm.js.map +1 -1
- package/package.json +17 -8
- package/src/components/atoms/alert/Alert.js +10 -1
- package/src/components/atoms/alert/Alert.mdx +19 -0
- package/src/components/atoms/alert/Alert.stories.js +150 -0
- package/src/components/atoms/badge/Badge.js +39 -25
- package/src/components/atoms/badge/Badge.mdx +27 -0
- package/src/components/atoms/badge/Badge.stories.js +168 -0
- package/src/components/atoms/badge/Badge.theme.js +49 -1
- package/src/components/atoms/badge/index.d.ts +11 -0
- package/src/components/atoms/breadcrumb/Breadcrumb.mdx +21 -0
- package/src/components/atoms/breadcrumb/Breadcrumb.stories.js +47 -0
- package/src/components/atoms/button-with-action/ButtonWithAction.js +3 -29
- package/src/components/atoms/button-with-action/ButtonWithAction.stories.js +14 -1
- package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +97 -56
- package/src/components/atoms/button-with-action/index.d.ts +1 -0
- package/src/components/atoms/button-with-link/ButtonWithLink.mdx +21 -0
- package/src/components/atoms/button-with-link/ButtonWithLink.stories.js +161 -0
- package/src/components/atoms/card/Card.js +22 -1
- package/src/components/atoms/card/Card.mdx +41 -0
- package/src/components/atoms/card/Card.stories.js +360 -0
- package/src/components/atoms/card/Card.theme.js +2 -0
- package/src/components/atoms/card/CardText.js +39 -11
- package/src/components/atoms/card/index.d.ts +8 -1
- package/src/components/atoms/card-type/CardType.js +55 -0
- package/src/components/atoms/card-type/CardType.stories.js +86 -0
- package/src/components/atoms/card-type/index.js +3 -0
- package/src/components/atoms/checkbox/Checkbox.js +121 -93
- package/src/components/atoms/checkbox/Checkbox.mdx +15 -0
- package/src/components/atoms/checkbox/Checkbox.oldstories.js +17 -13
- package/src/components/atoms/checkbox/Checkbox.stories.js +149 -0
- package/src/components/atoms/checkbox/Checkbox.theme.js +6 -2
- package/src/components/atoms/country-dropdown/CountryDropdown.mdx +36 -0
- package/src/components/atoms/country-dropdown/CountryDropdown.stories.js +76 -0
- package/src/components/atoms/detail/Detail.js +0 -26
- package/src/components/atoms/detail/Detail.mdx +32 -0
- package/src/components/atoms/detail/Detail.stories.js +156 -0
- package/src/components/atoms/display-box/DisplayBox.mdx +11 -0
- package/src/components/atoms/display-box/DisplayBox.stories.js +69 -0
- package/src/components/atoms/dropdown/Dropdown.js +17 -5
- package/src/components/atoms/dropdown/Dropdown.mdx +65 -0
- package/src/components/atoms/dropdown/Dropdown.stories.js +128 -0
- package/src/components/atoms/dropdown/Dropdown.theme.js +6 -6
- package/src/components/atoms/dropdown/DropdownIcon.js +1 -0
- package/src/components/atoms/dropdown/DropdownIconV2.js +50 -0
- package/src/components/atoms/dropdown/index.d.ts +59 -0
- package/src/components/atoms/form-layouts/FormInput.js +105 -61
- package/src/components/atoms/form-layouts/FormInput.mdx +38 -0
- package/src/components/atoms/form-layouts/FormInput.stories.js +219 -0
- package/src/components/atoms/form-layouts/FormTextarea.js +207 -0
- package/src/components/atoms/form-layouts/FormTextarea.mdx +48 -0
- package/src/components/atoms/form-layouts/FormTextarea.stories.js +265 -0
- package/src/components/atoms/form-layouts/index.d.ts +34 -1
- package/src/components/atoms/form-layouts/index.js +3 -1
- package/src/components/atoms/form-select/FormSelect.js +5 -3
- package/src/components/atoms/form-select/FormSelect.mdx +42 -0
- package/src/components/atoms/form-select/FormSelect.stories.js +76 -0
- package/src/components/atoms/form-select/FormSelect.styled.js +2 -2
- package/src/components/atoms/form-select/FormSelect.theme.js +6 -3
- package/src/components/atoms/form-select/index.d.ts +3 -0
- package/src/components/atoms/formatted-address/FormattedAddress.mdx +13 -0
- package/src/components/atoms/formatted-address/FormattedAddress.stories.js +138 -0
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.js +2 -2
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.mdx +17 -0
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.stories.js +57 -0
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.theme.js +2 -2
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +14 -10
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.mdx +40 -0
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.stories.js +74 -0
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js +2 -2
- package/src/components/atoms/icons/AgencyIcon.js +24 -0
- package/src/components/atoms/icons/AmExLargeIcon.js +54 -0
- package/src/components/atoms/icons/AmExSmallIcon.js +54 -0
- package/src/components/atoms/icons/AutopayIcon.js +9 -1
- package/src/components/atoms/icons/BankGenericSmallIcon.js +48 -0
- package/src/components/atoms/icons/CaretArrowDown.d.ts +9 -0
- package/src/components/atoms/icons/CaretArrowDown.js +22 -0
- package/src/components/atoms/icons/CaretArrowUp.d.ts +9 -0
- package/src/components/atoms/icons/CaretArrowUp.js +22 -0
- package/src/components/atoms/icons/CarrotIcon.js +2 -0
- package/src/components/atoms/icons/CashSmallIcon.js +21 -0
- package/src/components/atoms/icons/CashieringImage.d.ts +1 -0
- package/src/components/atoms/icons/CashieringImage.js +254 -0
- package/src/components/atoms/icons/CheckboxCheckmarkIcon.js +45 -0
- package/src/components/atoms/icons/CustomerSearchIcon.js +30 -79
- package/src/components/atoms/icons/DiscoverLargeIcon.js +137 -0
- package/src/components/atoms/icons/DiscoverSmallIcon.js +137 -0
- package/src/components/atoms/icons/ExternalLinkIcon.js +10 -2
- package/src/components/atoms/icons/GenericCardLarge.js +1 -1
- package/src/components/atoms/icons/GenericSmallIcon.js +27 -0
- package/src/components/atoms/icons/GuidedCheckoutImage.js +105 -26
- package/src/components/atoms/icons/IconAdd.js +2 -2
- package/src/components/atoms/icons/Icons.mdx +40 -0
- package/src/components/atoms/icons/Icons.stories.js +343 -0
- package/src/components/atoms/icons/KioskImage.js +223 -338
- package/src/components/atoms/icons/MasterCardLargeIcon.js +35 -0
- package/src/components/atoms/icons/MasterCardSmallIcon.js +35 -0
- package/src/components/atoms/icons/{NoCustomerResultsIcon.js → NoResultsIcon.js} +10 -6
- package/src/components/atoms/icons/NotFoundIcon.js +70 -333
- package/src/components/atoms/icons/OverageIcon.js +27 -0
- package/src/components/atoms/icons/PaydotImage.d.ts +1 -0
- package/src/components/atoms/icons/PaydotImage.js +46 -0
- package/src/components/atoms/icons/PaymentSearchIcon.js +7 -42
- package/src/components/atoms/icons/PaymentStatusIcon.d.ts +1 -0
- package/src/components/atoms/icons/PaymentStatusIcon.js +28 -0
- package/src/components/atoms/icons/PeriscopeFailedIcon.js +2 -2
- package/src/components/atoms/icons/PersonIcon.d.ts +1 -0
- package/src/components/atoms/icons/PersonIcon.js +28 -0
- package/src/components/atoms/icons/ProfileImage.js +58 -37
- package/src/components/atoms/icons/RevenueManagementImage.js +138 -393
- package/src/components/atoms/icons/ReversalNeededIcon.js +27 -0
- package/src/components/atoms/icons/SearchIcon.js +4 -3
- package/src/components/atoms/icons/ShortageIcon.js +21 -0
- package/src/components/atoms/icons/StandardCheckoutImage.js +105 -336
- package/src/components/atoms/icons/SuccessfulIconMedium.js +3 -2
- package/src/components/atoms/icons/VisaLargeIcon.js +40 -0
- package/src/components/atoms/icons/VisaSmallIcon.js +40 -0
- package/src/components/atoms/icons/WireSmallIcon.js +22 -0
- package/src/components/atoms/icons/icons.oldstories.js +47 -31
- package/src/components/atoms/icons/index.d.ts +4 -1
- package/src/components/atoms/icons/index.js +47 -7
- package/src/components/atoms/index.d.ts +4 -0
- package/src/components/atoms/index.js +3 -1
- package/src/components/atoms/jumbo/Jumbo.js +18 -3
- package/src/components/atoms/labeled-amount/LabeledAmount.mdx +23 -0
- package/src/components/atoms/labeled-amount/LabeledAmount.stories.js +118 -0
- package/src/components/atoms/layouts/Box.styled.js +34 -22
- package/src/components/atoms/layouts/Center.styled.js +2 -0
- package/src/components/atoms/layouts/Motion.js +25 -6
- package/src/components/atoms/layouts/Motion.styled.js +36 -0
- package/src/components/atoms/layouts/Stack.js +2 -0
- package/src/components/atoms/layouts/Stack.styled.js +2 -0
- package/src/components/atoms/line-item/LineItem.mdx +28 -0
- package/src/components/atoms/line-item/LineItem.stories.js +95 -0
- package/src/components/atoms/link/ExternalLink.d.ts +1 -0
- package/src/components/atoms/link/ExternalLink.js +37 -19
- package/src/components/atoms/link/ExternalLink.styled.js +2 -0
- package/src/components/atoms/link/InternalLink.js +11 -1
- package/src/components/atoms/link/InternalLink.styled.js +22 -2
- package/src/components/atoms/link/Link.mdx +19 -0
- package/src/components/atoms/link/Link.stories.js +183 -0
- package/src/components/atoms/loading/Loading.mdx +13 -0
- package/src/components/atoms/loading/Loading.stories.js +22 -0
- package/src/components/atoms/loading-line/LoadingLine.js +23 -11
- package/src/components/atoms/loading-line/LoadingLine.mdx +15 -0
- package/src/components/atoms/loading-line/LoadingLine.stories.js +132 -0
- package/src/components/atoms/loading-line/LoadingPill.styled.js +7 -6
- package/src/components/atoms/nav-footer/NavFooter.mdx +15 -0
- package/src/components/atoms/nav-footer/NavFooter.stories.js +244 -0
- package/src/components/atoms/nav-header/NavHeader.mdx +13 -0
- package/src/components/atoms/nav-header/NavHeader.stories.js +130 -0
- package/src/components/atoms/nav-tabs/NavTabs.mdx +30 -0
- package/src/components/atoms/nav-tabs/NavTabs.stories.js +49 -0
- package/src/components/atoms/password-requirements/PasswordRequirements.js +3 -3
- package/src/components/atoms/password-requirements/PasswordRequirements.mdx +39 -0
- package/src/components/atoms/password-requirements/PasswordRequirements.stories.js +139 -0
- package/src/components/atoms/placeholder/Placeholder.mdx +19 -0
- package/src/components/atoms/placeholder/Placeholder.stories.js +170 -0
- package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.js +13 -7
- package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.theme.js +9 -3
- package/src/components/atoms/search/Search.js +123 -0
- package/src/components/atoms/search/Search.oldstories.js +58 -0
- package/src/components/atoms/search/Search.theme.js +9 -0
- package/src/components/atoms/search/index.d.ts +27 -0
- package/src/components/atoms/search/index.js +3 -0
- package/src/components/atoms/searchable-select/SearchableSelect.mdx +44 -0
- package/src/components/atoms/searchable-select/SearchableSelect.stories.js +137 -0
- package/src/components/atoms/sortable-table-heading/SortableTableHeading.js +47 -0
- package/src/components/atoms/sortable-table-heading/SortableTableHeading.oldstories.js +19 -0
- package/src/components/atoms/sortable-table-heading/SortableTableHeading.theme.js +9 -0
- package/src/components/atoms/sortable-table-heading/index.d.ts +15 -0
- package/src/components/atoms/sortable-table-heading/index.js +3 -0
- package/src/components/atoms/spinner/Spinner.js +2 -1
- package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.mdx +36 -0
- package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +78 -0
- package/src/components/atoms/state-province-dropdown/options.js +4 -1
- package/src/components/atoms/tab/Tab.js +2 -2
- package/src/components/atoms/table/Table.mdx +71 -0
- package/src/components/atoms/table/Table.oldstories.js +84 -0
- package/src/components/atoms/table/Table.stories.js +65 -0
- package/src/components/atoms/table/TableRow.js +1 -0
- package/src/components/atoms/title/Title.js +0 -23
- package/src/components/atoms/title/Title.mdx +26 -0
- package/src/components/atoms/title/Title.stories.js +144 -0
- package/src/components/atoms/title/Title.theme.js +3 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.js +66 -48
- package/src/components/atoms/toggle-switch/ToggleSwitch.mdx +17 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +111 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +8 -5
- package/src/components/atoms/typeahead-input/TypeaheadInput.mdx +13 -0
- package/src/components/atoms/typeahead-input/TypeaheadInput.stories.js +63 -0
- package/src/components/atoms/wallet-name/WalletName.js +6 -4
- package/src/components/atoms/wallet-name/WalletName.oldstories.js +26 -1
- package/src/components/atoms/wallet-name/index.d.ts +2 -0
- package/src/components/molecules/address-form/AddressForm.mdx +18 -0
- package/src/components/molecules/address-form/AddressForm.stories.js +224 -0
- package/src/components/molecules/banner/Banner.mdx +23 -0
- package/src/components/molecules/banner/Banner.stories.js +125 -0
- package/src/components/molecules/change-password-form/ChangePasswordForm.mdx +15 -0
- package/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +206 -0
- package/src/components/molecules/collapsible-section/CollapsibleSection.js +1 -1
- package/src/components/molecules/collapsible-section/CollapsibleSection.mdx +15 -0
- package/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +217 -0
- package/src/components/molecules/collapsible-section/index.d.ts +2 -2
- package/src/components/molecules/contact-card/ContactCard.js +157 -0
- package/src/components/molecules/contact-card/ContactCard.stories.js +80 -0
- package/src/components/molecules/contact-card/ContactCard.styled.js +44 -0
- package/src/components/molecules/contact-card/index.d.ts +16 -0
- package/src/components/molecules/contact-card/index.js +3 -0
- package/src/components/molecules/edit-name-form/EditNameForm.mdx +13 -0
- package/src/components/molecules/edit-name-form/EditNameForm.stories.js +117 -0
- package/src/components/molecules/editable-list/EditableList.js +6 -1
- package/src/components/molecules/email-form/EmailForm.js +9 -1
- package/src/components/molecules/email-form/EmailForm.state.js +1 -1
- package/src/components/molecules/email-form/EmailForm.stories.js +210 -0
- package/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +2 -1
- package/src/components/molecules/hero-image/HeroImage.js +135 -0
- package/src/components/molecules/hero-image/HeroImage.mdx +15 -0
- package/src/components/molecules/hero-image/HeroImage.stories.js +149 -0
- package/src/components/molecules/hero-image/HeroImage.styled.js +83 -0
- package/src/components/molecules/hero-image/HeroImage.theme.js +109 -0
- package/src/components/molecules/hero-image/index.js +3 -0
- package/src/components/molecules/idle-modal/IdleModal.js +101 -0
- package/src/components/molecules/idle-modal/IdleModal.mdx +17 -0
- package/src/components/molecules/idle-modal/IdleModal.stories.js +180 -0
- package/src/components/molecules/idle-modal/index.d.ts +16 -0
- package/src/components/molecules/idle-modal/index.js +3 -0
- package/src/components/molecules/index.d.ts +1 -0
- package/src/components/molecules/index.js +7 -0
- package/src/components/molecules/link-card/LinkCard.js +31 -20
- package/src/components/molecules/link-card/LinkCard.mdx +17 -0
- package/src/components/molecules/link-card/LinkCard.stories.js +528 -0
- package/src/components/molecules/link-card/LinkCard.styled.js +28 -21
- package/src/components/molecules/link-card/LinkCard.theme.js +6 -4
- package/src/components/molecules/link-card/index.d.ts +3 -1
- package/src/components/molecules/login-form/LoginForm.js +2 -1
- package/src/components/molecules/login-form/LoginForm.mdx +16 -0
- package/src/components/molecules/login-form/LoginForm.stories.js +120 -0
- package/src/components/molecules/modal/Modal.mdx +17 -0
- package/src/components/molecules/modal/Modal.stories.js +362 -0
- package/src/components/molecules/modal/ModalControlV1.js +3 -0
- package/src/components/molecules/modal/ModalControlV2.js +2 -0
- package/src/components/molecules/modal/__private__/CloseButton.js +2 -1
- package/src/components/molecules/module/Module.mdx +17 -0
- package/src/components/molecules/module/Module.stories.js +273 -0
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.js +229 -0
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.oldstories.js +74 -0
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.styled.js +65 -0
- package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.theme.js +13 -0
- package/src/components/molecules/multiple-select-filter/__private__/ActionLinkButton.js +27 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterButton.js +97 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterDropdown.js +27 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterableList.js +146 -0
- package/src/components/molecules/multiple-select-filter/__private__/FilterableListItem.js +78 -0
- package/src/components/molecules/multiple-select-filter/__private__/SearchBox.js +41 -0
- package/src/components/molecules/multiple-select-filter/__private__/useKeyboardNavigation.js +84 -0
- package/src/components/molecules/multiple-select-filter/__private__/util.js +44 -0
- package/src/components/molecules/multiple-select-filter/index.d.ts +34 -0
- package/src/components/molecules/multiple-select-filter/index.js +3 -0
- package/src/components/molecules/nav-menu/NavMenuMobile.js +27 -29
- package/src/components/molecules/nav-menu/NavMenuMobile.mdx +21 -0
- package/src/components/molecules/nav-menu/NavMenuMobile.stories.js +100 -0
- package/src/components/molecules/obligation/Obligation.js +141 -3
- package/src/components/molecules/obligation/Obligation.mdx +23 -0
- package/src/components/molecules/obligation/Obligation.stories.js +642 -0
- package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyCarIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyLandIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +2 -2
- package/src/components/molecules/obligation/modules/AmountModule.js +64 -38
- package/src/components/molecules/obligation/modules/AutopayModalModule.js +37 -12
- package/src/components/molecules/obligation/modules/InactiveControlsModule.js +56 -12
- package/src/components/molecules/obligation/modules/InactiveTitleModule.js +1 -1
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +42 -10
- package/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +4 -1
- package/src/components/molecules/pagination/Pagination.mdx +15 -0
- package/src/components/molecules/pagination/Pagination.stories.js +181 -0
- package/src/components/molecules/partial-amount-form/PartialAmountField.js +68 -29
- package/src/components/molecules/partial-amount-form/PartialAmountField.theme.js +7 -0
- package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +15 -8
- package/src/components/molecules/payment-details/PaymentDetails.js +1 -2
- package/src/components/molecules/payment-details/PaymentDetails.oldstories.js +0 -1
- package/src/components/molecules/payment-form-ach/PaymentFormACH.js +2 -0
- package/src/components/molecules/payment-form-ach/PaymentFormACH.state.js +2 -2
- package/src/components/molecules/payment-form-card/PaymentFormCard.js +6 -2
- package/src/components/molecules/payment-form-card/PaymentFormCard.state.js +2 -1
- package/src/components/molecules/phone-form/PhoneForm.js +7 -1
- package/src/components/molecules/phone-form/PhoneForm.state.js +1 -1
- package/src/components/molecules/popover/Popover.js +1 -15
- package/src/components/molecules/popover/Popover.mdx +15 -0
- package/src/components/molecules/popover/Popover.stories.js +220 -0
- package/src/components/molecules/radio-group/RadioGroup.js +8 -3
- package/src/components/molecules/radio-group/index.d.ts +1 -0
- package/src/components/molecules/radio-section/InnerRadioSection.js +3 -3
- package/src/components/molecules/radio-section/RadioSection.js +87 -44
- package/src/components/molecules/radio-section/RadioSection.stories.js +142 -0
- package/src/components/molecules/radio-section/radio-button/RadioButton.js +9 -5
- package/src/components/molecules/registration-banner/RegistrationBanner.js +115 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.mdx +15 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +80 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +46 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.theme.js +6 -0
- package/src/components/molecules/registration-banner/index.d.ts +15 -0
- package/src/components/molecules/registration-banner/index.js +3 -0
- package/src/components/molecules/registration-form/RegistrationForm.js +2 -1
- package/src/components/molecules/tab-sidebar/TabSidebar.js +5 -3
- package/src/components/molecules/tabs/Tabs.js +25 -9
- package/src/components/molecules/tabs/Tabs.mdx +17 -0
- package/src/components/molecules/tabs/Tabs.stories.js +149 -0
- package/src/components/molecules/tabs/index.d.ts +21 -0
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +1 -1
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +110 -0
- package/src/components/molecules/toast-notification/Toast.mdx +15 -0
- package/src/components/molecules/toast-notification/Toast.stories.js +183 -0
- package/src/components/molecules/toast-notification/ToastNotification.js +74 -43
- package/src/components/molecules/tooltip/Tooltip.js +269 -0
- package/src/components/molecules/tooltip/Tooltip.mdx +25 -0
- package/src/components/molecules/tooltip/Tooltip.stories.js +287 -0
- package/src/components/molecules/tooltip/Tooltip.theme.js +18 -0
- package/src/components/molecules/tooltip/index.d.ts +34 -0
- package/src/components/molecules/tooltip/index.js +3 -0
- package/src/components/molecules/turnstile-widget/TurnstileWidget.js +183 -0
- package/src/components/molecules/turnstile-widget/index.js +3 -0
- package/src/components/templates/sidebar-stack-content/SidebarStackContent.js +1 -1
- package/src/constants/colors.d.ts +4 -0
- package/src/constants/colors.js +8 -1
- package/src/constants/regex_constants.js +1 -1
- package/src/constants/style_constants.js +13 -0
- package/src/deprecated/spinner/Spinner.js +8 -20
- package/src/hooks/index.js +2 -0
- package/src/hooks/use-conditionally-add-validator/index.js +20 -0
- package/src/hooks/use-outside-click/index.js +4 -5
- package/src/hooks/use-turnstile-script/index.js +49 -0
- package/src/util/formats.js +6 -3
- package/src/util/general.js +67 -4
- package/src/util/idleTimerUtils.js +36 -0
- package/src/util/index.js +3 -1
- package/src/util/themeUtils.js +24 -14
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/atoms/alert/Alert.oldstories.js +0 -28
- package/src/components/atoms/badge/Badge.oldstories.js +0 -33
- package/src/components/atoms/breadcrumb/Breadcrumb.oldstories.js +0 -38
- package/src/components/atoms/button-with-action/ButtonWithAction.oldstories.js +0 -56
- package/src/components/atoms/button-with-link/ButtonWithLink.oldstories.js +0 -32
- package/src/components/atoms/country-dropdown/CountryDropdown.oldstories.js +0 -42
- package/src/components/atoms/display-box/DisplayBox.oldstories.js +0 -25
- package/src/components/atoms/display-card/DisplayCard.js +0 -88
- package/src/components/atoms/display-card/DisplayCard.oldstories.js +0 -24
- package/src/components/atoms/display-card/index.js +0 -3
- package/src/components/atoms/dropdown/Dropdown.oldstories.js +0 -47
- package/src/components/atoms/form-select/FormSelect.oldstories.js +0 -50
- package/src/components/atoms/formatted-address/FormattedAddress.oldstories.js +0 -32
- package/src/components/atoms/icons/NoPaymentResultsIcon.js +0 -54
- package/src/components/atoms/icons/PointOfSaleImage.d.ts +0 -1
- package/src/components/atoms/icons/PointOfSaleImage.js +0 -439
- package/src/components/atoms/labeled-amount/LabeledAmount.oldstories.js +0 -42
- package/src/components/atoms/line-item/LineItem.oldstories.js +0 -28
- package/src/components/atoms/link/Link.oldstories.js +0 -57
- package/src/components/atoms/loading-line/LoadingLine.oldstories.js +0 -28
- package/src/components/atoms/nav-footer/NavFooter.oldstories.js +0 -31
- package/src/components/atoms/nav-header/NavHeader.oldstories.js +0 -29
- package/src/components/atoms/password-requirements/PasswordRequirements.oldstories.js +0 -75
- package/src/components/atoms/placeholder/Placeholder.oldstories.js +0 -42
- package/src/components/atoms/searchable-select/SearchableSelect.oldstories.js +0 -62
- package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.oldstories.js +0 -53
- package/src/components/atoms/toggle-switch/ToggleSwitch.oldstories.js +0 -28
- package/src/components/molecules/.DS_Store +0 -0
- package/src/components/molecules/address-form/AddressForm.oldstories.js +0 -21
- package/src/components/molecules/banner/Banner.oldstories.js +0 -29
- package/src/components/molecules/change-password-form/ChangePasswordForm.oldstories.js +0 -22
- package/src/components/molecules/collapsible-section/CollapsibleSection.oldstories.js +0 -68
- package/src/components/molecules/edit-name-form/EdidNameForm.oldstories.js +0 -24
- package/src/components/molecules/link-card/LinkCard.oldstories.js +0 -87
- package/src/components/molecules/login-form/LoginForm.oldstories.js +0 -24
- package/src/components/molecules/modal/Modal.oldstories.js +0 -139
- package/src/components/molecules/module/Module.oldstories.js +0 -31
- package/src/components/molecules/obligation/.DS_Store +0 -0
- package/src/components/molecules/pagination/Pagination.oldstories.js +0 -32
- package/src/components/molecules/tabs/Tabs.oldstories.js +0 -241
- package/src/components/molecules/toast-notification/ToastNotification.oldstories.js +0 -105
- package/src/stories/Button.stories.ts +0 -53
- package/src/stories/Button.tsx +0 -48
- package/src/stories/Configure.mdx +0 -364
- package/src/stories/Header.stories.ts +0 -33
- package/src/stories/Header.tsx +0 -56
- package/src/stories/Page.stories.ts +0 -32
- package/src/stories/Page.tsx +0 -73
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +0 -5
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/avif-test-image.avif +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +0 -15
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +0 -3
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +0 -12
- package/src/stories/assets/youtube.svg +0 -4
- package/src/stories/button.css +0 -30
- package/src/stories/header.css +0 -32
- package/src/stories/page.css +0 -69
|
@@ -3,445 +3,190 @@ import React from "react";
|
|
|
3
3
|
const RevenueManagementImage = () => {
|
|
4
4
|
return (
|
|
5
5
|
<svg
|
|
6
|
-
width="
|
|
7
|
-
height="
|
|
8
|
-
viewBox="0 0
|
|
6
|
+
width="184"
|
|
7
|
+
height="191"
|
|
8
|
+
viewBox="0 0 184 191"
|
|
9
9
|
fill="none"
|
|
10
10
|
xmlns="http://www.w3.org/2000/svg"
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
fill="#15749D"
|
|
24
|
-
fillOpacity="0.3"
|
|
25
|
-
/>
|
|
26
|
-
<path
|
|
27
|
-
fillRule="evenodd"
|
|
28
|
-
clipRule="evenodd"
|
|
29
|
-
d="M60.4021 8.78431H53.1864H48.7254V8.77384C48.6447 8.78078 48.563 8.78431 48.4805 8.78431C46.9211 8.78431 45.657 7.52018 45.657 5.96078C45.657 4.40139 46.9211 3.13725 48.4805 3.13725C48.6454 3.13725 48.8069 3.15139 48.9641 3.1785C49.4907 1.34307 51.1817 0 53.1864 0C55.0545 0 56.6502 1.1663 57.2851 2.81047C57.4719 2.7321 57.677 2.68878 57.8923 2.68878C58.4432 2.68878 58.9278 2.97248 59.2076 3.40162C59.5704 3.232 59.9752 3.13725 60.4021 3.13725C61.9615 3.13725 63.2256 4.40139 63.2256 5.96078C63.2256 7.43768 62.0917 8.64973 60.6469 8.77384V8.78431H60.4021Z"
|
|
30
|
-
fill="#15749D"
|
|
31
|
-
fillOpacity="0.3"
|
|
32
|
-
/>
|
|
33
|
-
<path
|
|
34
|
-
d="M109.029 91.9217C109.029 94.1741 100.461 96.0001 89.8921 96.0001C79.3229 96.0001 70.7549 94.1741 70.7549 91.9217C70.7549 89.6692 79.3229 87.8433 89.8921 87.8433C100.461 87.8433 109.029 89.6692 109.029 91.9217Z"
|
|
35
|
-
fill="#15749D"
|
|
36
|
-
fillOpacity="0.3"
|
|
37
|
-
/>
|
|
38
|
-
<path
|
|
39
|
-
d="M49.4216 32H130.363V80.3137C130.363 81.0068 129.801 81.5686 129.108 81.5686H50.6765C49.9835 81.5686 49.4216 81.0068 49.4216 80.3137V32Z"
|
|
40
|
-
fill="white"
|
|
41
|
-
/>
|
|
42
|
-
<path
|
|
43
|
-
d="M47.5393 22.9333C47.5393 21.0102 49.0983 19.4512 51.0214 19.4512H128.763C130.686 19.4512 132.245 21.0102 132.245 22.9333V32.0002H47.5393V22.9333Z"
|
|
44
|
-
fill="#E5E7EC"
|
|
45
|
-
/>
|
|
46
|
-
<path
|
|
47
|
-
d="M62.5982 25.7243C62.5982 26.4166 62.0363 26.9778 61.3433 26.9778C60.6502 26.9778 60.0884 26.4166 60.0884 25.7243C60.0884 25.0319 60.6502 24.4707 61.3433 24.4707C62.0363 24.4707 62.5982 25.0319 62.5982 25.7243Z"
|
|
48
|
-
fill="#292A33"
|
|
49
|
-
/>
|
|
50
|
-
<path
|
|
51
|
-
d="M58.8335 25.7243C58.8335 26.4166 58.2717 26.9778 57.5786 26.9778C56.8856 26.9778 56.3237 26.4166 56.3237 25.7243C56.3237 25.0319 56.8856 24.4707 57.5786 24.4707C58.2717 24.4707 58.8335 25.0319 58.8335 25.7243Z"
|
|
52
|
-
fill="#292A33"
|
|
53
|
-
/>
|
|
54
|
-
<path
|
|
55
|
-
d="M55.0686 25.7243C55.0686 26.4166 54.5068 26.9778 53.8137 26.9778C53.1207 26.9778 52.5588 26.4166 52.5588 25.7243C52.5588 25.0319 53.1207 24.4707 53.8137 24.4707C54.5068 24.4707 55.0686 25.0319 55.0686 25.7243Z"
|
|
56
|
-
fill="#292A33"
|
|
57
|
-
/>
|
|
58
|
-
<path
|
|
59
|
-
fillRule="evenodd"
|
|
60
|
-
clipRule="evenodd"
|
|
61
|
-
d="M129.108 21.3335H50.6766C49.9835 21.3335 49.4217 21.8954 49.4217 22.5884V80.3139C49.4217 81.007 49.9835 81.5688 50.6766 81.5688H129.108C129.801 81.5688 130.363 81.007 130.363 80.3139V22.5884C130.363 21.8954 129.801 21.3335 129.108 21.3335ZM50.6766 19.4512C48.9439 19.4512 47.5393 20.8558 47.5393 22.5884V80.3139C47.5393 82.0466 48.9439 83.4512 50.6766 83.4512H129.108C130.841 83.4512 132.245 82.0466 132.245 80.3139V22.5884C132.245 20.8558 130.841 19.4512 129.108 19.4512H50.6766Z"
|
|
62
|
-
fill="#292A33"
|
|
63
|
-
/>
|
|
64
|
-
<path
|
|
65
|
-
d="M157.343 75.9214C157.343 75.2283 157.905 74.6665 158.598 74.6665H169.265C169.958 74.6665 170.52 75.2283 170.52 75.9214C170.52 76.6145 169.958 77.1763 169.265 77.1763H158.598C157.905 77.1763 157.343 76.6145 157.343 75.9214Z"
|
|
66
|
-
fill="#292A33"
|
|
67
|
-
/>
|
|
68
|
-
<path
|
|
69
|
-
d="M132.245 74.6665H152.83C153.529 74.6665 154.095 75.233 154.095 75.9318C154.095 76.6306 153.529 77.1971 152.83 77.1971H132.245V74.6665Z"
|
|
70
|
-
fill="#292A33"
|
|
71
|
-
/>
|
|
72
|
-
<path
|
|
73
|
-
d="M29.9707 75.9214C29.9707 75.2283 30.5325 74.6665 31.2256 74.6665H47.5393V77.1763H31.2256C30.5325 77.1763 29.9707 76.6145 29.9707 75.9214Z"
|
|
74
|
-
fill="#292A33"
|
|
75
|
-
/>
|
|
76
|
-
<path
|
|
77
|
-
d="M19.304 75.9214C19.304 75.2283 19.8658 74.6665 20.5589 74.6665H25.5785C26.2715 74.6665 26.8334 75.2283 26.8334 75.9214C26.8334 76.6145 26.2715 77.1763 25.5785 77.1763H20.5589C19.8658 77.1763 19.304 76.6145 19.304 75.9214Z"
|
|
78
|
-
fill="#292A33"
|
|
79
|
-
/>
|
|
80
|
-
<path
|
|
81
|
-
fillRule="evenodd"
|
|
82
|
-
clipRule="evenodd"
|
|
83
|
-
d="M87.696 45.8038V51.4508H93.3431V45.8038C91.5455 45.0049 89.4936 45.0049 87.696 45.8038ZM90.5196 48.941C91.0394 48.941 91.4608 48.5197 91.4608 47.9999C91.4608 47.4801 91.0394 47.0587 90.5196 47.0587C89.9998 47.0587 89.5784 47.4801 89.5784 47.9999C89.5784 48.5197 89.9998 48.941 90.5196 48.941Z"
|
|
84
|
-
fill="#292A33"
|
|
85
|
-
/>
|
|
86
|
-
<path
|
|
87
|
-
d="M112.794 50.5097C112.794 56.2275 108.159 60.8626 102.441 60.8626C96.7233 60.8626 92.0881 56.2275 92.0881 50.5097C92.0881 44.7919 96.7233 40.1567 102.441 40.1567C108.159 40.1567 112.794 44.7919 112.794 50.5097Z"
|
|
88
|
-
fill="#E4F4FD"
|
|
89
|
-
/>
|
|
90
|
-
<path
|
|
91
|
-
fillRule="evenodd"
|
|
92
|
-
clipRule="evenodd"
|
|
93
|
-
d="M102.441 59.2798C107.285 59.2798 111.211 55.3533 111.211 50.5097C111.211 45.6661 107.285 41.7395 102.441 41.7395C97.5975 41.7395 93.6709 45.6661 93.6709 50.5097C93.6709 55.3533 97.5975 59.2798 102.441 59.2798ZM102.441 60.8626C108.159 60.8626 112.794 56.2275 112.794 50.5097C112.794 44.7919 108.159 40.1567 102.441 40.1567C96.7233 40.1567 92.0881 44.7919 92.0881 50.5097C92.0881 56.2275 96.7233 60.8626 102.441 60.8626Z"
|
|
94
|
-
fill="#292A33"
|
|
95
|
-
/>
|
|
96
|
-
<path
|
|
97
|
-
fillRule="evenodd"
|
|
98
|
-
clipRule="evenodd"
|
|
99
|
-
d="M102.441 50.3601C101.355 50.3601 100.571 50.992 100.379 51.6677C100.259 52.0881 99.8213 52.3319 99.4009 52.2123C98.9805 52.0926 98.7367 51.6549 98.8563 51.2345C99.2787 49.7502 100.79 48.7773 102.441 48.7773C104.092 48.7773 105.603 49.7502 106.026 51.2345C106.145 51.6549 105.902 52.0926 105.481 52.2123C105.061 52.3319 104.623 52.0881 104.503 51.6677C104.311 50.992 103.528 50.3601 102.441 50.3601Z"
|
|
100
|
-
fill="#292A33"
|
|
101
|
-
/>
|
|
102
|
-
<path
|
|
103
|
-
d="M88.951 50.5097C88.951 56.2275 84.3158 60.8626 78.5981 60.8626C72.8803 60.8626 68.2451 56.2275 68.2451 50.5097C68.2451 44.7919 72.8803 40.1567 78.5981 40.1567C84.3158 40.1567 88.951 44.7919 88.951 50.5097Z"
|
|
104
|
-
fill="#E4F4FD"
|
|
105
|
-
/>
|
|
106
|
-
<path
|
|
107
|
-
fillRule="evenodd"
|
|
108
|
-
clipRule="evenodd"
|
|
109
|
-
d="M78.5981 59.2798C83.4417 59.2798 87.3682 55.3533 87.3682 50.5097C87.3682 45.6661 83.4417 41.7395 78.5981 41.7395C73.7544 41.7395 69.8279 45.6661 69.8279 50.5097C69.8279 55.3533 73.7544 59.2798 78.5981 59.2798ZM78.5981 60.8626C84.3158 60.8626 88.951 56.2275 88.951 50.5097C88.951 44.7919 84.3158 40.1567 78.5981 40.1567C72.8803 40.1567 68.2451 44.7919 68.2451 50.5097C68.2451 56.2275 72.8803 60.8626 78.5981 60.8626Z"
|
|
110
|
-
fill="#292A33"
|
|
111
|
-
/>
|
|
112
|
-
<path
|
|
113
|
-
fillRule="evenodd"
|
|
114
|
-
clipRule="evenodd"
|
|
115
|
-
d="M78.598 50.3601C77.5115 50.3601 76.728 50.992 76.5357 51.6677C76.4161 52.0881 75.9783 52.3319 75.5579 52.2123C75.1375 52.0926 74.8937 51.6549 75.0133 51.2345C75.4357 49.7502 76.9472 48.7773 78.598 48.7773C80.2488 48.7773 81.7604 49.7502 82.1827 51.2345C82.3024 51.6549 82.0586 52.0926 81.6382 52.2123C81.2178 52.3319 80.78 52.0881 80.6604 51.6677C80.4681 50.992 79.6846 50.3601 78.598 50.3601Z"
|
|
116
|
-
fill="#292A33"
|
|
117
|
-
/>
|
|
118
|
-
<path
|
|
119
|
-
fillRule="evenodd"
|
|
120
|
-
clipRule="evenodd"
|
|
121
|
-
d="M82.6764 64.4634C83.1135 64.4634 83.4678 64.8177 83.4678 65.2548C83.4678 66.2038 84.2372 66.9732 85.1862 66.9732H94.598C95.547 66.9732 96.3164 66.2038 96.3164 65.2548C96.3164 64.8177 96.6707 64.4634 97.1078 64.4634C97.5449 64.4634 97.8992 64.8177 97.8992 65.2548C97.8992 67.078 96.4212 68.556 94.598 68.556H85.1862C83.363 68.556 81.885 67.078 81.885 65.2548C81.885 64.8177 82.2393 64.4634 82.6764 64.4634Z"
|
|
122
|
-
fill="#292A33"
|
|
123
|
-
/>
|
|
124
|
-
<path d="M47.5393 30.1177H132.245V32H47.5393V30.1177Z" fill="#292A33" />
|
|
125
|
-
<g filter="url(#filter0_d_2573_15404)">
|
|
126
|
-
<path
|
|
127
|
-
d="M21.8137 35.1372C21.8137 34.4442 22.3756 33.8823 23.0686 33.8823H47.5392V42.0392H23.0686C22.3756 42.0392 21.8137 41.4773 21.8137 40.7843V35.1372Z"
|
|
12
|
+
<g id="Illustration - Revenue Management">
|
|
13
|
+
<path
|
|
14
|
+
d="M0 4C0 1.79086 1.79086 0 4 0H184V191H4C1.79086 191 0 189.209 0 187V4Z"
|
|
15
|
+
fill="#D9DAF9"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M92.2989 133.448C102.365 133.448 110.525 135.187 110.525 137.333C110.525 139.478 102.365 141.217 92.2989 141.217C82.2323 141.217 74.0714 139.478 74.0714 137.333C74.0715 135.187 82.2324 133.448 92.2989 133.448ZM29.251 105.36C30.5807 105.36 31.7073 106.229 32.0948 107.43C32.4011 107.254 32.7563 107.153 33.1348 107.153C34.29 107.153 35.2266 108.089 35.2266 109.245C35.2266 110.4 34.29 111.336 33.1348 111.336H25.6651C24.3449 111.336 23.2745 110.266 23.2745 108.946C23.2745 107.626 24.3449 106.555 25.6651 106.555C26.0359 106.555 26.3871 106.64 26.7003 106.791C27.2254 105.933 28.1715 105.36 29.251 105.36ZM151.164 53.3687C154.603 53.3689 157.425 56.0095 157.713 59.3735C158.322 58.9774 159.049 58.7466 159.829 58.7466C161.974 58.7467 163.713 60.4861 163.713 62.6313C163.713 64.7766 161.974 66.516 159.829 66.5161C159.729 66.5161 159.629 66.5119 159.53 66.5044V66.5161H142.199V66.5063C139.863 66.3525 138.016 64.4086 138.016 62.0337C138.016 59.5584 140.023 57.5513 142.498 57.5513C143.349 57.5513 144.145 57.7887 144.823 58.2007C145.587 55.4153 148.136 53.3687 151.164 53.3687ZM57.3389 49.7827C59.118 49.7829 60.6376 50.8937 61.2422 52.4595C61.4201 52.3848 61.6154 52.3433 61.8204 52.3433C62.3451 52.3433 62.8068 52.6142 63.0733 53.0229C63.4188 52.8614 63.8044 52.771 64.211 52.771C65.6962 52.771 66.9005 53.9752 66.9005 55.4604C66.9002 56.8669 65.8202 58.0209 64.4444 58.1392V58.1489H53.0899V58.1392C53.0131 58.1458 52.935 58.1489 52.8565 58.1489C51.3714 58.1489 50.1673 56.9455 50.1671 55.4604C50.1671 53.9752 51.3713 52.771 52.8565 52.771C53.0135 52.771 53.1678 52.7842 53.3174 52.8101C53.819 51.062 55.4296 49.7827 57.3389 49.7827Z"
|
|
19
|
+
fill="#A99DD2"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M53.7528 80.261H130.845V126.277C130.845 126.937 130.31 127.472 129.65 127.472H54.948C54.2879 127.472 53.7528 126.937 53.7528 126.277V80.261Z"
|
|
128
23
|
fill="white"
|
|
129
24
|
/>
|
|
130
25
|
<path
|
|
131
|
-
d="
|
|
132
|
-
fill="#
|
|
26
|
+
d="M51.96 71.6253C51.96 69.7936 53.4449 68.3087 55.2765 68.3087H129.321C131.153 68.3087 132.638 69.7936 132.638 71.6253V80.261H51.96V71.6253Z"
|
|
27
|
+
fill="#E5E7EC"
|
|
133
28
|
/>
|
|
134
29
|
<path
|
|
135
|
-
d="
|
|
136
|
-
fill="#
|
|
30
|
+
d="M66.3027 74.2835C66.3027 74.9429 65.7676 75.4775 65.1075 75.4775C64.4474 75.4775 63.9122 74.9429 63.9122 74.2835C63.9122 73.6241 64.4474 73.0896 65.1075 73.0896C65.7676 73.0896 66.3027 73.6241 66.3027 74.2835Z"
|
|
31
|
+
fill="#292A33"
|
|
137
32
|
/>
|
|
138
|
-
</g>
|
|
139
|
-
<g filter="url(#filter1_d_2573_15404)">
|
|
140
33
|
<path
|
|
141
|
-
d="
|
|
142
|
-
fill="
|
|
34
|
+
d="M62.717 74.2835C62.717 74.9429 62.1819 75.4775 61.5218 75.4775C60.8617 75.4775 60.3266 74.9429 60.3266 74.2835C60.3266 73.6241 60.8617 73.0896 61.5218 73.0896C62.1819 73.0896 62.717 73.6241 62.717 74.2835Z"
|
|
35
|
+
fill="#292A33"
|
|
143
36
|
/>
|
|
144
37
|
<path
|
|
145
|
-
d="
|
|
146
|
-
fill="#
|
|
38
|
+
d="M59.1313 74.2835C59.1313 74.9429 58.5962 75.4775 57.9361 75.4775C57.276 75.4775 56.7409 74.9429 56.7409 74.2835C56.7409 73.6241 57.276 73.0896 57.9361 73.0896C58.5962 73.0896 59.1313 73.6241 59.1313 74.2835Z"
|
|
39
|
+
fill="#292A33"
|
|
147
40
|
/>
|
|
148
41
|
<path
|
|
149
|
-
|
|
150
|
-
|
|
42
|
+
fillRule="evenodd"
|
|
43
|
+
clipRule="evenodd"
|
|
44
|
+
d="M129.65 70.1016H54.9481C54.2879 70.1016 53.7528 70.6367 53.7528 71.2968V126.277C53.7528 126.937 54.2879 127.472 54.948 127.472H129.65C130.31 127.472 130.845 126.937 130.845 126.277V71.2968C130.845 70.6367 130.31 70.1016 129.65 70.1016ZM54.9481 68.3087C53.2978 68.3087 51.96 69.6465 51.96 71.2968V126.277C51.96 127.927 53.2978 129.265 54.948 129.265H129.65C131.3 129.265 132.638 127.927 132.638 126.277V71.2968C132.638 69.6465 131.3 68.3087 129.65 68.3087H54.9481Z"
|
|
45
|
+
fill="#292A33"
|
|
151
46
|
/>
|
|
152
47
|
<path
|
|
153
|
-
d="
|
|
154
|
-
fill="#
|
|
48
|
+
d="M156.542 122.094C156.542 121.434 157.077 120.899 157.737 120.899H167.897C168.557 120.899 169.092 121.434 169.092 122.094C169.092 122.754 168.557 123.289 167.897 123.289H157.737C157.077 123.289 156.542 122.754 156.542 122.094Z"
|
|
49
|
+
fill="#292A33"
|
|
155
50
|
/>
|
|
156
51
|
<path
|
|
157
|
-
d="
|
|
158
|
-
fill="#
|
|
52
|
+
d="M132.638 120.899H152.244C152.909 120.899 153.449 121.438 153.449 122.104C153.449 122.77 152.909 123.309 152.244 123.309H132.638V120.899Z"
|
|
53
|
+
fill="#292A33"
|
|
159
54
|
/>
|
|
160
|
-
</g>
|
|
161
|
-
<g filter="url(#filter2_d_2573_15404)">
|
|
162
55
|
<path
|
|
163
|
-
d="
|
|
164
|
-
fill="
|
|
56
|
+
d="M35.2269 122.094C35.2269 121.434 35.762 120.899 36.4221 120.899H51.96V123.289H36.4221C35.762 123.289 35.2269 122.754 35.2269 122.094Z"
|
|
57
|
+
fill="#292A33"
|
|
165
58
|
/>
|
|
166
59
|
<path
|
|
167
|
-
d="
|
|
168
|
-
fill="#
|
|
60
|
+
d="M25.0675 122.094C25.0675 121.434 25.6026 120.899 26.2627 120.899H31.0436C31.7037 120.899 32.2388 121.434 32.2388 122.094C32.2388 122.754 31.7037 123.289 31.0436 123.289H26.2627C25.6026 123.289 25.0675 122.754 25.0675 122.094Z"
|
|
61
|
+
fill="#292A33"
|
|
169
62
|
/>
|
|
170
63
|
<path
|
|
171
|
-
|
|
172
|
-
|
|
64
|
+
fillRule="evenodd"
|
|
65
|
+
clipRule="evenodd"
|
|
66
|
+
d="M90.2072 93.4087V98.7872H95.5857V93.4087C93.8736 92.6478 91.9192 92.6478 90.2072 93.4087ZM92.8964 96.3968C93.3915 96.3968 93.7928 95.9954 93.7928 95.5004C93.7928 95.0053 93.3915 94.6039 92.8964 94.6039C92.4013 94.6039 92 95.0053 92 95.5004C92 95.9954 92.4013 96.3968 92.8964 96.3968Z"
|
|
67
|
+
fill="#292A33"
|
|
173
68
|
/>
|
|
174
69
|
<path
|
|
175
|
-
|
|
176
|
-
|
|
70
|
+
fillRule="evenodd"
|
|
71
|
+
clipRule="evenodd"
|
|
72
|
+
d="M85.4262 111.181C85.8425 111.181 86.1799 111.518 86.1799 111.935C86.1799 112.839 86.9127 113.571 87.8166 113.571H96.7808C97.6847 113.571 98.4175 112.839 98.4175 111.935C98.4175 111.518 98.755 111.181 99.1713 111.181C99.5876 111.181 99.925 111.518 99.925 111.935C99.925 113.671 98.5173 115.079 96.7808 115.079H87.8166C86.0801 115.079 84.6724 113.671 84.6724 111.935C84.6724 111.518 85.0099 111.181 85.4262 111.181Z"
|
|
73
|
+
fill="#292A33"
|
|
177
74
|
/>
|
|
178
75
|
<path
|
|
179
|
-
d="
|
|
180
|
-
fill="#
|
|
76
|
+
d="M51.9601 78.4677H132.638V80.2605H51.9601V78.4677Z"
|
|
77
|
+
fill="#292A33"
|
|
181
78
|
/>
|
|
182
|
-
</g>
|
|
183
|
-
<g filter="url(#filter3_d_2573_15404)">
|
|
184
79
|
<path
|
|
185
|
-
d="
|
|
186
|
-
fill="
|
|
80
|
+
d="M27.4579 83.2494C27.4579 82.5893 27.993 82.0542 28.6531 82.0542H51.96V89.8232H28.6531C27.993 89.8232 27.4579 89.288 27.4579 88.6279V83.2494Z"
|
|
81
|
+
fill="#8F8CF0"
|
|
187
82
|
/>
|
|
188
83
|
<path
|
|
189
|
-
d="
|
|
190
|
-
fill="#
|
|
84
|
+
d="M44.7886 85.9391C44.7886 85.4441 45.1899 85.0427 45.685 85.0427H51.9599V86.8356H45.685C45.1899 86.8356 44.7886 86.4342 44.7886 85.9391Z"
|
|
85
|
+
fill="#FEFEFE"
|
|
191
86
|
/>
|
|
192
87
|
<path
|
|
193
|
-
d="
|
|
194
|
-
fill="#
|
|
88
|
+
d="M30.4459 85.9391C30.4459 85.4441 30.8472 85.0427 31.3423 85.0427H41.5017C41.9968 85.0427 42.3981 85.4441 42.3981 85.9391C42.3981 86.4342 41.9968 86.8356 41.5017 86.8356H31.3423C30.8472 86.8356 30.4459 86.4342 30.4459 85.9391Z"
|
|
89
|
+
fill="#FEFEFE"
|
|
195
90
|
/>
|
|
196
91
|
<path
|
|
197
|
-
d="
|
|
198
|
-
fill="#
|
|
92
|
+
d="M11.92 89.8227C11.92 89.1626 12.4551 88.6274 13.1152 88.6274H59.1313C59.7914 88.6274 60.3266 89.1626 60.3266 89.8227V95.2012C60.3266 95.8613 59.7914 96.3964 59.1313 96.3964H13.1152C12.4551 96.3964 11.92 95.8613 11.92 95.2012V89.8227Z"
|
|
93
|
+
fill="#B4B3F4"
|
|
199
94
|
/>
|
|
200
95
|
<path
|
|
201
|
-
d="
|
|
202
|
-
fill="#
|
|
96
|
+
d="M45.9838 92.5124C45.9838 92.0173 46.3852 91.616 46.8802 91.616H56.442C56.9371 91.616 57.3385 92.0173 57.3385 92.5124C57.3385 93.0075 56.9371 93.4088 56.442 93.4088H46.8802C46.3852 93.4088 45.9838 93.0075 45.9838 92.5124Z"
|
|
97
|
+
fill="#FEFEFE"
|
|
203
98
|
/>
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
<path
|
|
233
|
-
d="
|
|
234
|
-
fill="#
|
|
99
|
+
<path
|
|
100
|
+
d="M31.0435 92.5124C31.0435 92.0173 31.4449 91.616 31.9399 91.616H42.697C43.192 91.616 43.5934 92.0173 43.5934 92.5124C43.5934 93.0075 43.192 93.4088 42.697 93.4088H31.9399C31.4449 93.4088 31.0435 93.0075 31.0435 92.5124Z"
|
|
101
|
+
fill="#FEFEFE"
|
|
102
|
+
/>
|
|
103
|
+
<path
|
|
104
|
+
d="M24.4698 92.5124C24.4698 92.0173 24.8711 91.616 25.3662 91.616H27.7567C28.2517 91.616 28.6531 92.0173 28.6531 92.5124C28.6531 93.0075 28.2517 93.4088 27.7567 93.4088H25.3662C24.8711 93.4088 24.4698 93.0075 24.4698 92.5124Z"
|
|
105
|
+
fill="#FEFEFE"
|
|
106
|
+
/>
|
|
107
|
+
<path
|
|
108
|
+
d="M14.908 92.5124C14.908 92.0173 15.3093 91.616 15.8044 91.616H21.1829C21.678 91.616 22.0793 92.0173 22.0793 92.5124C22.0793 93.0075 21.678 93.4088 21.1829 93.4088H15.8044C15.3093 93.4088 14.908 93.0075 14.908 92.5124Z"
|
|
109
|
+
fill="#FEFEFE"
|
|
110
|
+
/>
|
|
111
|
+
<path
|
|
112
|
+
d="M132.638 76.0773H166.104C166.764 76.0773 167.299 76.6124 167.299 77.2725V82.651C167.299 83.3111 166.764 83.8462 166.104 83.8462H132.638V76.0773Z"
|
|
113
|
+
fill="#8F8CF0"
|
|
114
|
+
/>
|
|
115
|
+
<path
|
|
116
|
+
d="M156.542 79.9621C156.542 79.467 156.943 79.0657 157.439 79.0657H163.415C163.91 79.0657 164.311 79.467 164.311 79.9621C164.311 80.4572 163.91 80.8585 163.415 80.8585H157.439C156.943 80.8585 156.542 80.4572 156.542 79.9621Z"
|
|
117
|
+
fill="#FEFEFE"
|
|
118
|
+
/>
|
|
119
|
+
<path
|
|
120
|
+
d="M149.968 79.9621C149.968 79.467 150.37 79.0657 150.865 79.0657H153.255C153.75 79.0657 154.152 79.467 154.152 79.9621C154.152 80.4572 153.75 80.8585 153.255 80.8585H150.865C150.37 80.8585 149.968 80.4572 149.968 79.9621Z"
|
|
121
|
+
fill="#FEFEFE"
|
|
122
|
+
/>
|
|
123
|
+
<path
|
|
124
|
+
d="M138.016 79.9621C138.016 79.467 138.417 79.0657 138.913 79.0657H146.681C147.177 79.0657 147.578 79.467 147.578 79.9621C147.578 80.4572 147.177 80.8585 146.681 80.8585H138.913C138.417 80.8585 138.016 80.4572 138.016 79.9621Z"
|
|
125
|
+
fill="#FEFEFE"
|
|
126
|
+
/>
|
|
127
|
+
<path
|
|
128
|
+
d="M132.638 79.0657H134.729C135.224 79.0657 135.626 79.467 135.626 79.9621C135.626 80.4572 135.224 80.8585 134.729 80.8585H132.638V79.0657Z"
|
|
129
|
+
fill="#FEFEFE"
|
|
130
|
+
/>
|
|
131
|
+
<path
|
|
132
|
+
d="M123.673 83.8466C123.673 83.1865 124.209 82.6514 124.869 82.6514H170.885C171.545 82.6514 172.08 83.1865 172.08 83.8466V89.2251C172.08 89.8852 171.545 90.4203 170.885 90.4203H124.869C124.209 90.4203 123.673 89.8852 123.673 89.2251V83.8466Z"
|
|
133
|
+
fill="#B4B3F4"
|
|
134
|
+
/>
|
|
135
|
+
<path
|
|
136
|
+
d="M158.335 86.5363C158.335 86.0412 158.736 85.6399 159.231 85.6399H168.195C168.691 85.6399 169.092 86.0412 169.092 86.5363C169.092 87.0314 168.691 87.4327 168.195 87.4327H159.231C158.736 87.4327 158.335 87.0314 158.335 86.5363Z"
|
|
137
|
+
fill="#FEFEFE"
|
|
138
|
+
/>
|
|
139
|
+
<path
|
|
140
|
+
d="M143.395 86.5373C143.395 86.0422 143.796 85.6409 144.291 85.6409H155.048C155.543 85.6409 155.944 86.0422 155.944 86.5373C155.944 87.0324 155.543 87.4337 155.048 87.4337H144.291C143.796 87.4337 143.395 87.0324 143.395 86.5373Z"
|
|
141
|
+
fill="#FEFEFE"
|
|
142
|
+
/>
|
|
143
|
+
<path
|
|
144
|
+
d="M136.223 86.5373C136.223 86.0422 136.625 85.6409 137.12 85.6409H140.108C140.603 85.6409 141.004 86.0422 141.004 86.5373C141.004 87.0324 140.603 87.4337 140.108 87.4337H137.12C136.625 87.4337 136.223 87.0324 136.223 86.5373Z"
|
|
145
|
+
fill="#FEFEFE"
|
|
146
|
+
/>
|
|
147
|
+
<path
|
|
148
|
+
d="M126.661 86.5375C126.661 86.0425 127.063 85.6411 127.558 85.6411H132.936C133.431 85.6411 133.833 86.0425 133.833 86.5375C133.833 87.0326 133.431 87.4339 132.936 87.4339H127.558C127.063 87.4339 126.661 87.0326 126.661 86.5375Z"
|
|
149
|
+
fill="#FEFEFE"
|
|
150
|
+
/>
|
|
151
|
+
<path
|
|
152
|
+
d="M90.8045 136.727C90.8045 137.227 90.3998 137.632 89.9002 137.632H84.8289C84.1688 137.632 83.6336 137.097 83.6336 136.436C83.6338 135.776 84.169 135.241 84.8289 135.241H88.4139V129.266H90.8045V136.727ZM96.1834 135.241H99.7694C100.429 135.241 100.964 135.777 100.964 136.436C100.964 137.096 100.429 137.631 99.7694 137.632H94.6971C94.1977 137.632 93.7928 137.227 93.7928 136.727V129.266H96.1834V135.241ZM155.944 104.165C156.604 104.165 157.139 104.7 157.139 105.36C157.139 106.02 156.604 106.556 155.944 106.556H151.762L141.655 116.661C141.271 117.046 140.676 117.125 140.204 116.855L132.638 112.532V109.544L140.796 114.206C140.918 114.276 141.072 114.251 141.167 114.148L148.176 106.556H146.383C145.723 106.556 145.187 106.02 145.187 105.36C145.187 104.7 145.723 104.165 146.383 104.165H155.944ZM69.1385 95.4335C69.6757 95.499 70.0575 95.9881 69.992 96.5253C69.9337 97.0043 69.9042 97.4925 69.9041 97.9882C69.9041 99.8069 70.3097 101.529 71.034 103.07C71.264 103.56 71.053 104.144 70.5633 104.374C70.0736 104.604 69.4897 104.393 69.2596 103.903C69.0591 103.476 68.8796 103.038 68.7225 102.589C66.1789 103.551 55.7523 107.503 50.7645 109.544L51.9598 110.141V113.13L46.8553 110.577C46.0469 110.172 46.0885 109.005 46.9237 108.659L68.0731 99.8885C67.9882 99.267 67.9442 98.6325 67.9442 97.9882C67.9442 97.4131 67.9788 96.8456 68.0467 96.288C68.1122 95.7508 68.6013 95.368 69.1385 95.4335ZM157.139 85.0419C158.46 85.0419 159.53 86.1123 159.53 87.4325V99.3846C159.53 100.705 158.46 101.775 157.139 101.775H145.187C143.867 101.775 142.797 100.705 142.797 99.3846V87.4325C142.797 86.1123 143.867 85.0419 145.187 85.0419H157.139Z"
|
|
153
|
+
fill="#6145F7"
|
|
235
154
|
/>
|
|
236
|
-
</g>
|
|
237
|
-
<path
|
|
238
|
-
fillRule="evenodd"
|
|
239
|
-
clipRule="evenodd"
|
|
240
|
-
d="M152.597 43.0261C153.484 43.9134 153.568 45.2997 152.849 46.2816L154.965 48.3975C155.014 48.4468 155.014 48.5267 154.965 48.5759L154.597 48.9436C154.548 48.9929 154.468 48.9929 154.419 48.9436L152.303 46.8276C151.321 47.5468 149.934 47.4628 149.047 46.5755C148.067 45.5953 148.067 44.0062 149.047 43.0261C150.027 42.0459 151.616 42.0459 152.597 43.0261ZM152.051 46.0295C152.729 45.3509 152.729 44.2508 152.051 43.5722C151.372 42.8936 150.272 42.8936 149.593 43.5722C148.915 44.2508 148.915 45.3509 149.593 46.0295C150.272 46.708 151.372 46.708 152.051 46.0295Z"
|
|
241
|
-
fill="white"
|
|
242
|
-
/>
|
|
243
|
-
<mask
|
|
244
|
-
id="mask0_2573_15404"
|
|
245
|
-
style={{ maskType: "alpha" }}
|
|
246
|
-
maskUnits="userSpaceOnUse"
|
|
247
|
-
x="148"
|
|
248
|
-
y="42"
|
|
249
|
-
width="8"
|
|
250
|
-
height="7"
|
|
251
|
-
>
|
|
252
155
|
<path
|
|
253
156
|
fillRule="evenodd"
|
|
254
157
|
clipRule="evenodd"
|
|
255
|
-
d="M152.
|
|
256
|
-
fill="
|
|
158
|
+
d="M152.021 90.7636C152.866 91.6087 152.946 92.9291 152.261 93.8643L154.221 95.8237C154.299 95.9015 154.299 96.0276 154.221 96.1054L153.982 96.3438C153.905 96.4216 153.778 96.4216 153.701 96.3438L151.741 94.3844C150.806 95.0694 149.486 94.9893 148.641 94.1442C147.707 93.2107 147.707 91.6972 148.641 90.7636C149.574 89.8301 151.088 89.8301 152.021 90.7636ZM151.501 93.6241C152.147 92.9778 152.147 91.93 151.501 91.2837C150.855 90.6374 149.807 90.6374 149.161 91.2837C148.514 91.93 148.514 92.9778 149.161 93.6241C149.807 94.2704 150.855 94.2704 151.501 93.6241Z"
|
|
159
|
+
fill="#FEFEFE"
|
|
257
160
|
/>
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
161
|
+
<path
|
|
162
|
+
d="M81.5421 88.0298C86.9878 88.0299 91.4024 92.4453 91.4024 97.8911C91.4023 103.337 86.9877 107.751 81.5421 107.751C76.0963 107.751 71.6809 103.337 71.6807 97.8911C71.6807 92.4453 76.0962 88.0298 81.5421 88.0298ZM81.5421 89.5376C76.9288 89.5376 73.1885 93.2778 73.1885 97.8911C73.1886 102.504 76.9288 106.244 81.5421 106.244C86.1551 106.244 89.8945 102.504 89.8946 97.8911C89.8946 93.2779 86.1552 89.5377 81.5421 89.5376Z"
|
|
163
|
+
fill="#292A33"
|
|
164
|
+
/>
|
|
165
|
+
<path
|
|
166
|
+
d="M104.251 88.0298C109.697 88.0298 114.111 92.4453 114.111 97.8911C114.111 103.337 109.697 107.751 104.251 107.751C98.8053 107.751 94.3908 103.337 94.3907 97.8911C94.3907 92.4453 98.8052 88.0298 104.251 88.0298ZM104.251 89.5376C99.6378 89.5376 95.8975 93.2778 95.8975 97.8911C95.8976 102.504 99.6378 106.244 104.251 106.244C108.864 106.244 112.604 102.504 112.605 97.8911C112.605 93.2778 108.864 89.5376 104.251 89.5376Z"
|
|
167
|
+
fill="#292A33"
|
|
168
|
+
/>
|
|
169
|
+
<path
|
|
170
|
+
fillRule="evenodd"
|
|
171
|
+
clipRule="evenodd"
|
|
172
|
+
d="M81.5418 97.748C80.5069 97.748 79.7606 98.3498 79.5775 98.9934C79.4636 99.3938 79.0466 99.626 78.6462 99.5121C78.2458 99.3981 78.0136 98.9812 78.1275 98.5808C78.5298 97.167 79.9695 96.2405 81.5418 96.2405C83.1141 96.2405 84.5537 97.167 84.956 98.5808C85.0699 98.9812 84.8377 99.3981 84.4373 99.5121C84.0369 99.626 83.62 99.3938 83.5061 98.9934C83.3229 98.3498 82.5766 97.748 81.5418 97.748Z"
|
|
173
|
+
fill="#292A33"
|
|
174
|
+
/>
|
|
175
|
+
<path
|
|
176
|
+
d="M81.5421 89.5376C86.1552 89.5377 89.8946 93.2779 89.8946 97.8911C89.8945 102.504 86.1551 106.244 81.5421 106.244C76.9288 106.244 73.1886 102.504 73.1885 97.8911C73.1885 93.2778 76.9288 89.5376 81.5421 89.5376ZM81.5421 96.2407C79.9699 96.2407 78.5304 97.167 78.128 98.5806C78.0141 98.981 78.2462 99.3983 78.6465 99.5122C79.0467 99.6259 79.4632 99.3937 79.5772 98.9937C79.7603 98.3501 80.5072 97.7476 81.5421 97.7476C82.5768 97.7477 83.3228 98.3502 83.5059 98.9937C83.6199 99.3939 84.0372 99.6261 84.4376 99.5122C84.8379 99.3982 85.07 98.9809 84.9561 98.5806C84.5538 97.167 83.1142 96.2408 81.5421 96.2407Z"
|
|
177
|
+
fill="#D9DAF9"
|
|
178
|
+
/>
|
|
179
|
+
<path
|
|
180
|
+
fillRule="evenodd"
|
|
181
|
+
clipRule="evenodd"
|
|
182
|
+
d="M104.251 97.7479C103.216 97.7479 102.47 98.3497 102.287 98.9933C102.173 99.3936 101.756 99.6259 101.356 99.5119C100.955 99.398 100.723 98.9811 100.837 98.5807C101.239 97.1669 102.679 96.2404 104.251 96.2404C105.823 96.2404 107.263 97.1669 107.665 98.5807C107.779 98.9811 107.547 99.398 107.147 99.5119C106.746 99.6259 106.329 99.3936 106.215 98.9933C106.032 98.3497 105.286 97.7479 104.251 97.7479Z"
|
|
183
|
+
fill="#292A33"
|
|
184
|
+
/>
|
|
185
|
+
<path
|
|
186
|
+
d="M104.251 89.5376C108.864 89.5376 112.605 93.2778 112.605 97.8911C112.604 102.504 108.864 106.244 104.251 106.244C99.6378 106.244 95.8976 102.504 95.8975 97.8911C95.8975 93.2778 99.6378 89.5376 104.251 89.5376ZM104.251 96.2407C102.679 96.2407 101.239 97.1669 100.837 98.5806C100.723 98.981 100.955 99.3983 101.356 99.5122C101.756 99.6261 102.173 99.3939 102.287 98.9937C102.47 98.3501 103.216 97.7476 104.251 97.7476C105.286 97.7476 106.032 98.3501 106.215 98.9937C106.329 99.3938 106.746 99.626 107.147 99.5122C107.547 99.3983 107.779 98.981 107.665 98.5806C107.263 97.1669 105.823 96.2407 104.251 96.2407Z"
|
|
187
|
+
fill="#D9DAF9"
|
|
266
188
|
/>
|
|
267
189
|
</g>
|
|
268
|
-
<defs>
|
|
269
|
-
<filter
|
|
270
|
-
id="filter0_d_2573_15404"
|
|
271
|
-
x="16.8137"
|
|
272
|
-
y="28.8823"
|
|
273
|
-
width="35.7256"
|
|
274
|
-
height="18.1567"
|
|
275
|
-
filterUnits="userSpaceOnUse"
|
|
276
|
-
colorInterpolationFilters="sRGB"
|
|
277
|
-
>
|
|
278
|
-
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
279
|
-
<feColorMatrix
|
|
280
|
-
in="SourceAlpha"
|
|
281
|
-
type="matrix"
|
|
282
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
283
|
-
result="hardAlpha"
|
|
284
|
-
/>
|
|
285
|
-
<feOffset />
|
|
286
|
-
<feGaussianBlur stdDeviation="2.5" />
|
|
287
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
288
|
-
<feColorMatrix
|
|
289
|
-
type="matrix"
|
|
290
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
291
|
-
/>
|
|
292
|
-
<feBlend
|
|
293
|
-
mode="normal"
|
|
294
|
-
in2="BackgroundImageFix"
|
|
295
|
-
result="effect1_dropShadow_2573_15404"
|
|
296
|
-
/>
|
|
297
|
-
<feBlend
|
|
298
|
-
mode="normal"
|
|
299
|
-
in="SourceGraphic"
|
|
300
|
-
in2="effect1_dropShadow_2573_15404"
|
|
301
|
-
result="shape"
|
|
302
|
-
/>
|
|
303
|
-
</filter>
|
|
304
|
-
<filter
|
|
305
|
-
id="filter1_d_2573_15404"
|
|
306
|
-
x="0.5"
|
|
307
|
-
y="35.7842"
|
|
308
|
-
width="60.8235"
|
|
309
|
-
height="18.1567"
|
|
310
|
-
filterUnits="userSpaceOnUse"
|
|
311
|
-
colorInterpolationFilters="sRGB"
|
|
312
|
-
>
|
|
313
|
-
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
314
|
-
<feColorMatrix
|
|
315
|
-
in="SourceAlpha"
|
|
316
|
-
type="matrix"
|
|
317
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
318
|
-
result="hardAlpha"
|
|
319
|
-
/>
|
|
320
|
-
<feOffset />
|
|
321
|
-
<feGaussianBlur stdDeviation="2.5" />
|
|
322
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
323
|
-
<feColorMatrix
|
|
324
|
-
type="matrix"
|
|
325
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
326
|
-
/>
|
|
327
|
-
<feBlend
|
|
328
|
-
mode="normal"
|
|
329
|
-
in2="BackgroundImageFix"
|
|
330
|
-
result="effect1_dropShadow_2573_15404"
|
|
331
|
-
/>
|
|
332
|
-
<feBlend
|
|
333
|
-
mode="normal"
|
|
334
|
-
in="SourceGraphic"
|
|
335
|
-
in2="effect1_dropShadow_2573_15404"
|
|
336
|
-
result="shape"
|
|
337
|
-
/>
|
|
338
|
-
</filter>
|
|
339
|
-
<filter
|
|
340
|
-
id="filter2_d_2573_15404"
|
|
341
|
-
x="127.245"
|
|
342
|
-
y="22.6079"
|
|
343
|
-
width="46.3921"
|
|
344
|
-
height="18.1567"
|
|
345
|
-
filterUnits="userSpaceOnUse"
|
|
346
|
-
colorInterpolationFilters="sRGB"
|
|
347
|
-
>
|
|
348
|
-
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
349
|
-
<feColorMatrix
|
|
350
|
-
in="SourceAlpha"
|
|
351
|
-
type="matrix"
|
|
352
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
353
|
-
result="hardAlpha"
|
|
354
|
-
/>
|
|
355
|
-
<feOffset />
|
|
356
|
-
<feGaussianBlur stdDeviation="2.5" />
|
|
357
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
358
|
-
<feColorMatrix
|
|
359
|
-
type="matrix"
|
|
360
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
361
|
-
/>
|
|
362
|
-
<feBlend
|
|
363
|
-
mode="normal"
|
|
364
|
-
in2="BackgroundImageFix"
|
|
365
|
-
result="effect1_dropShadow_2573_15404"
|
|
366
|
-
/>
|
|
367
|
-
<feBlend
|
|
368
|
-
mode="normal"
|
|
369
|
-
in="SourceGraphic"
|
|
370
|
-
in2="effect1_dropShadow_2573_15404"
|
|
371
|
-
result="shape"
|
|
372
|
-
/>
|
|
373
|
-
</filter>
|
|
374
|
-
<filter
|
|
375
|
-
id="filter3_d_2573_15404"
|
|
376
|
-
x="117.833"
|
|
377
|
-
y="29.5098"
|
|
378
|
-
width="60.8235"
|
|
379
|
-
height="18.1567"
|
|
380
|
-
filterUnits="userSpaceOnUse"
|
|
381
|
-
colorInterpolationFilters="sRGB"
|
|
382
|
-
>
|
|
383
|
-
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
384
|
-
<feColorMatrix
|
|
385
|
-
in="SourceAlpha"
|
|
386
|
-
type="matrix"
|
|
387
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
388
|
-
result="hardAlpha"
|
|
389
|
-
/>
|
|
390
|
-
<feOffset />
|
|
391
|
-
<feGaussianBlur stdDeviation="2.5" />
|
|
392
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
393
|
-
<feColorMatrix
|
|
394
|
-
type="matrix"
|
|
395
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
396
|
-
/>
|
|
397
|
-
<feBlend
|
|
398
|
-
mode="normal"
|
|
399
|
-
in2="BackgroundImageFix"
|
|
400
|
-
result="effect1_dropShadow_2573_15404"
|
|
401
|
-
/>
|
|
402
|
-
<feBlend
|
|
403
|
-
mode="normal"
|
|
404
|
-
in="SourceGraphic"
|
|
405
|
-
in2="effect1_dropShadow_2573_15404"
|
|
406
|
-
result="shape"
|
|
407
|
-
/>
|
|
408
|
-
</filter>
|
|
409
|
-
<filter
|
|
410
|
-
id="filter4_d_2573_15404"
|
|
411
|
-
x="132.822"
|
|
412
|
-
y="26.9292"
|
|
413
|
-
width="37.7492"
|
|
414
|
-
height="37.7494"
|
|
415
|
-
filterUnits="userSpaceOnUse"
|
|
416
|
-
colorInterpolationFilters="sRGB"
|
|
417
|
-
>
|
|
418
|
-
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
419
|
-
<feColorMatrix
|
|
420
|
-
in="SourceAlpha"
|
|
421
|
-
type="matrix"
|
|
422
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
423
|
-
result="hardAlpha"
|
|
424
|
-
/>
|
|
425
|
-
<feOffset />
|
|
426
|
-
<feGaussianBlur stdDeviation="5.04515" />
|
|
427
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
428
|
-
<feColorMatrix
|
|
429
|
-
type="matrix"
|
|
430
|
-
values="0 0 0 0 0.0823529 0 0 0 0 0.454902 0 0 0 0 0.615686 0 0 0 0.5 0"
|
|
431
|
-
/>
|
|
432
|
-
<feBlend
|
|
433
|
-
mode="normal"
|
|
434
|
-
in2="BackgroundImageFix"
|
|
435
|
-
result="effect1_dropShadow_2573_15404"
|
|
436
|
-
/>
|
|
437
|
-
<feBlend
|
|
438
|
-
mode="normal"
|
|
439
|
-
in="SourceGraphic"
|
|
440
|
-
in2="effect1_dropShadow_2573_15404"
|
|
441
|
-
result="shape"
|
|
442
|
-
/>
|
|
443
|
-
</filter>
|
|
444
|
-
</defs>
|
|
445
190
|
</svg>
|
|
446
191
|
);
|
|
447
192
|
};
|