@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
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { text, select } from "@storybook/addon-knobs";
|
|
3
|
-
import Module from "./Module";
|
|
4
|
-
import page from "../../../../.storybook/page";
|
|
5
|
-
|
|
6
|
-
const variantsLabel = "variant";
|
|
7
|
-
const variants = {
|
|
8
|
-
default: "default",
|
|
9
|
-
largeTitle: "largeTitle",
|
|
10
|
-
None: undefined
|
|
11
|
-
};
|
|
12
|
-
const defaultValue = "default";
|
|
13
|
-
const groupId = "props";
|
|
14
|
-
|
|
15
|
-
export const module = () => (
|
|
16
|
-
<Module
|
|
17
|
-
variant={select(variantsLabel, variants, defaultValue, groupId)}
|
|
18
|
-
heading={text("heading", "Module Title", groupId)}
|
|
19
|
-
spacing={text("spacing", "1rem", groupId)}
|
|
20
|
-
padding={text("padding", "1rem", groupId)}
|
|
21
|
-
spacingBottom={text("spacingBottom", "2.5rem", groupId)}
|
|
22
|
-
>
|
|
23
|
-
{text("child components", "child components go here", groupId)}
|
|
24
|
-
</Module>
|
|
25
|
-
);
|
|
26
|
-
|
|
27
|
-
const story = page({
|
|
28
|
-
title: "Components|Atoms/Module",
|
|
29
|
-
Component: Module
|
|
30
|
-
});
|
|
31
|
-
export default story;
|
|
Binary file
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { number, text } from "@storybook/addon-knobs";
|
|
3
|
-
import Pagination from "./Pagination";
|
|
4
|
-
import page from "../../../../.storybook/page";
|
|
5
|
-
|
|
6
|
-
export const pagination = () => (
|
|
7
|
-
<Pagination
|
|
8
|
-
activeBorderWidth={text("activeBorderWidth", "3px", "props")}
|
|
9
|
-
ariaLabel={text("ariaLabel", "Aria Label", "props")}
|
|
10
|
-
arrowColor={text("arrowColor", "#FFFFFF", "props")}
|
|
11
|
-
borderRadius={text("borderRadius", "3px", "props")}
|
|
12
|
-
buttonHeight={text("buttonHeight", "44px", "props")}
|
|
13
|
-
buttonWidth={text("buttonWidth", "44px", "props")}
|
|
14
|
-
childGap={text("childGap", "24px", "props")}
|
|
15
|
-
currentPage={number("currentPage", 2)}
|
|
16
|
-
fontSize={text("fontSize", "17px", "props")}
|
|
17
|
-
fontWeight={text("fontWeight", "900", "props")}
|
|
18
|
-
numberColor={text("numberColor", "#15749D", "props")}
|
|
19
|
-
pageCount={number("pageCount", 3)}
|
|
20
|
-
pageNext={() => {}}
|
|
21
|
-
pagePrevious={() => {}}
|
|
22
|
-
setCurrentPage={() => {}}
|
|
23
|
-
// themeValues
|
|
24
|
-
/>
|
|
25
|
-
);
|
|
26
|
-
|
|
27
|
-
const story = page({
|
|
28
|
-
title: "Components|Molecules/Pagination",
|
|
29
|
-
Component: Pagination
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
export default story;
|
|
@@ -1,241 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { createStore } from "redux";
|
|
3
|
-
import Tabs from "./Tabs";
|
|
4
|
-
|
|
5
|
-
import page from "../../../../.storybook/page";
|
|
6
|
-
import Text from "../../atoms/text";
|
|
7
|
-
|
|
8
|
-
import { createFormState, onlyIntegers, required } from "redux-freeform";
|
|
9
|
-
import DisplayBox from "../../atoms/display-box";
|
|
10
|
-
import { Box } from "../../atoms/layouts";
|
|
11
|
-
|
|
12
|
-
// Including commented out configs as a preliminary work for
|
|
13
|
-
// https://citybase.atlassian.net/browse/KCORE-2973
|
|
14
|
-
// https://citybase.atlassian.net/browse/KCORE-2974
|
|
15
|
-
// https://citybase.atlassian.net/browse/KCORE-2975
|
|
16
|
-
|
|
17
|
-
const ButtonTest = () => (
|
|
18
|
-
<DisplayBox>
|
|
19
|
-
<Text>Test Button Clicks</Text>
|
|
20
|
-
<Box>
|
|
21
|
-
<button onClick={() => console.log("BUTTON TEST;")}>Click me</button>
|
|
22
|
-
</Box>
|
|
23
|
-
</DisplayBox>
|
|
24
|
-
);
|
|
25
|
-
|
|
26
|
-
//const creditCardFormConfig = {
|
|
27
|
-
// amount: {
|
|
28
|
-
// defaultValue: "100.00",
|
|
29
|
-
// validators: [required()]
|
|
30
|
-
// }
|
|
31
|
-
//};
|
|
32
|
-
|
|
33
|
-
const checkFormConfig = {
|
|
34
|
-
amount: {
|
|
35
|
-
defaultValue: "100.00",
|
|
36
|
-
validators: [required()]
|
|
37
|
-
},
|
|
38
|
-
name: {
|
|
39
|
-
validators: [required()]
|
|
40
|
-
},
|
|
41
|
-
accountNumber: {
|
|
42
|
-
validators: [onlyIntegers()]
|
|
43
|
-
},
|
|
44
|
-
routingNumber: {
|
|
45
|
-
validators: [onlyIntegers()]
|
|
46
|
-
},
|
|
47
|
-
checkType: {
|
|
48
|
-
defaultValue: "Personal"
|
|
49
|
-
}
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
//const cashFormConfig = {
|
|
53
|
-
// amount: {
|
|
54
|
-
// defaultValue: "100.00",
|
|
55
|
-
// validators: [required()]
|
|
56
|
-
// }
|
|
57
|
-
//};
|
|
58
|
-
//
|
|
59
|
-
//const MyCreditCardForm = ({ actions, fields }) => {
|
|
60
|
-
// return (
|
|
61
|
-
// <div>
|
|
62
|
-
// {fields.amount.hasErrors && fields.amount.errors.includes(required.error)
|
|
63
|
-
// ? "Amount"
|
|
64
|
-
// : "Amount"}
|
|
65
|
-
// <input
|
|
66
|
-
// value={fields.amount.rawValue}
|
|
67
|
-
// onChange={evt => actions.fields.amount.set(evt.target.value)}
|
|
68
|
-
// type="text"
|
|
69
|
-
// />
|
|
70
|
-
// </div>
|
|
71
|
-
// );
|
|
72
|
-
//};
|
|
73
|
-
|
|
74
|
-
const MyCheckForm = ({ actions, fields }) => (
|
|
75
|
-
<div>
|
|
76
|
-
{fields.amount.hasErrors && fields.amount.errors.includes(required.error)
|
|
77
|
-
? "AmountError"
|
|
78
|
-
: "Amount"}
|
|
79
|
-
<input
|
|
80
|
-
value={fields.amount.rawValue}
|
|
81
|
-
onChange={evt => actions.fields.amount.set(evt.target.value)}
|
|
82
|
-
type="text"
|
|
83
|
-
/>
|
|
84
|
-
{fields.name.hasErrors && fields.name.errors.includes(required.error)
|
|
85
|
-
? "Name Error"
|
|
86
|
-
: "Name"}
|
|
87
|
-
<input
|
|
88
|
-
value={fields.name.rawValue}
|
|
89
|
-
onChange={evt => actions.fields.name.set(evt.target.value)}
|
|
90
|
-
type="text"
|
|
91
|
-
/>
|
|
92
|
-
{fields.accountNumber.hasErrors &&
|
|
93
|
-
fields.accountNumber.errors.includes(required.error)
|
|
94
|
-
? "Account Number Error"
|
|
95
|
-
: "Account Number"}
|
|
96
|
-
<input
|
|
97
|
-
value={fields.accountNumber.rawValue}
|
|
98
|
-
onChange={evt => actions.fields.accountNumber.set(evt.target.value)}
|
|
99
|
-
type="text"
|
|
100
|
-
/>
|
|
101
|
-
{fields.routingNumber.hasErrors &&
|
|
102
|
-
fields.routingNumber.errors.includes(required.error)
|
|
103
|
-
? "Routing Number Error"
|
|
104
|
-
: "Routing Number"}
|
|
105
|
-
<input
|
|
106
|
-
value={fields.routingNumber.rawValue}
|
|
107
|
-
onChange={evt => actions.fields.routingNumber.set(evt.target.value)}
|
|
108
|
-
type="text"
|
|
109
|
-
/>
|
|
110
|
-
{fields.checkType.hasErrors &&
|
|
111
|
-
fields.checkType.errors.includes(required.error)
|
|
112
|
-
? "Check Type Error"
|
|
113
|
-
: "Check Type"}
|
|
114
|
-
<input
|
|
115
|
-
value={fields.checkType.rawValue}
|
|
116
|
-
onChange={evt => actions.fields.checkType.set(evt.target.value)}
|
|
117
|
-
type="text"
|
|
118
|
-
/>
|
|
119
|
-
</div>
|
|
120
|
-
);
|
|
121
|
-
|
|
122
|
-
//const MyCashForm = ({ actions, fields }) => (
|
|
123
|
-
// <div>
|
|
124
|
-
// {fields.amount.hasErrors && fields.amount.errors.includes(required.error)
|
|
125
|
-
// ? "Amount Error"
|
|
126
|
-
// : "Amount"}
|
|
127
|
-
// <input
|
|
128
|
-
// value={fields.amount.rawValue}
|
|
129
|
-
// onChange={evt => actions.fields.amount.set(evt.target.value)}
|
|
130
|
-
// type="text"
|
|
131
|
-
// />
|
|
132
|
-
// </div>
|
|
133
|
-
//);
|
|
134
|
-
|
|
135
|
-
//const {
|
|
136
|
-
// reducer: cardReducer,
|
|
137
|
-
// mapStateToProps: cardMapStateToProps,
|
|
138
|
-
// mapDispatchToProps: cardMapDispatchToProps
|
|
139
|
-
//} = createFormState(creditCardFormConfig);
|
|
140
|
-
|
|
141
|
-
const {
|
|
142
|
-
reducer: checkReducer,
|
|
143
|
-
mapStateToProps: checkMapStateToProps,
|
|
144
|
-
mapDispatchToProps: checkMapDispatchToProps
|
|
145
|
-
} = createFormState(checkFormConfig);
|
|
146
|
-
|
|
147
|
-
//const {
|
|
148
|
-
// reducer: cashReducer,
|
|
149
|
-
// mapStateToProps: cashMapStateToProps,
|
|
150
|
-
// mapDispatchToProps: cashMapDispatchToProps
|
|
151
|
-
//} = createFormState(cashFormConfig);
|
|
152
|
-
|
|
153
|
-
//const cardStore = createStore(
|
|
154
|
-
// cardReducer,
|
|
155
|
-
// window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
|
|
156
|
-
//);
|
|
157
|
-
|
|
158
|
-
const checkStore = createStore(
|
|
159
|
-
checkReducer,
|
|
160
|
-
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
|
|
161
|
-
);
|
|
162
|
-
|
|
163
|
-
//const cashStore = createStore(
|
|
164
|
-
// cashReducer,
|
|
165
|
-
// window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
|
|
166
|
-
//);
|
|
167
|
-
|
|
168
|
-
//const tabsConfig = {
|
|
169
|
-
// tabs: [
|
|
170
|
-
// {
|
|
171
|
-
// label: 'Credit Card',
|
|
172
|
-
// active: true,
|
|
173
|
-
// content: MyCreditCardForm(
|
|
174
|
-
// {...cardMapStateToProps(cardStore.getState())},
|
|
175
|
-
// {...cardMapDispatchToProps(cardStore.dispatch)}
|
|
176
|
-
// )
|
|
177
|
-
// },
|
|
178
|
-
// {
|
|
179
|
-
// label: 'Check',
|
|
180
|
-
// active: true,
|
|
181
|
-
// content: MyCheckForm(
|
|
182
|
-
// {...checkMapStateToProps(checkStore.getState())},
|
|
183
|
-
// {...checkMapDispatchToProps(checkStore.dispatch)}
|
|
184
|
-
// )
|
|
185
|
-
// },
|
|
186
|
-
// {
|
|
187
|
-
// true: 'Cash',
|
|
188
|
-
// active: true,
|
|
189
|
-
// content: MyCashForm(
|
|
190
|
-
// {...cashMapStateToProps(cashStore.getState())},
|
|
191
|
-
// {...cashMapDispatchToProps(cashStore.dispatch)}
|
|
192
|
-
// )
|
|
193
|
-
// }
|
|
194
|
-
// ]
|
|
195
|
-
//};
|
|
196
|
-
|
|
197
|
-
const LOREM = `
|
|
198
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
|
|
199
|
-
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
|
200
|
-
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
|
201
|
-
nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
|
|
202
|
-
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
|
203
|
-
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
|
|
204
|
-
deserunt mollit anim id est laborum.
|
|
205
|
-
`;
|
|
206
|
-
|
|
207
|
-
const tabsConfig = {
|
|
208
|
-
tabs: [
|
|
209
|
-
{
|
|
210
|
-
label: "Credit Card",
|
|
211
|
-
active: true,
|
|
212
|
-
content: <Text>{LOREM}</Text>
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
label: "Check",
|
|
216
|
-
active: true,
|
|
217
|
-
content: MyCheckForm(
|
|
218
|
-
{ ...checkMapStateToProps(checkStore.getState()) },
|
|
219
|
-
{ ...checkMapDispatchToProps(checkStore.dispatch) }
|
|
220
|
-
)
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
label: "Cash",
|
|
224
|
-
active: true,
|
|
225
|
-
content: <ButtonTest></ButtonTest>
|
|
226
|
-
}
|
|
227
|
-
]
|
|
228
|
-
};
|
|
229
|
-
|
|
230
|
-
const HORIZONTAL = "horizontal";
|
|
231
|
-
|
|
232
|
-
export const tabs = () => (
|
|
233
|
-
<Tabs tabsConfig={tabsConfig} tabsDisplayMode={HORIZONTAL} />
|
|
234
|
-
);
|
|
235
|
-
|
|
236
|
-
const story = page({
|
|
237
|
-
title: "Components|Molecules/Tabs",
|
|
238
|
-
Component: Tabs
|
|
239
|
-
});
|
|
240
|
-
|
|
241
|
-
export default story;
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import React, { useEffect } from "react";
|
|
2
|
-
import ToastNotification from "./ToastNotification";
|
|
3
|
-
import page from "../../../../.storybook/page";
|
|
4
|
-
import { useToastNotification } from "../../../hooks";
|
|
5
|
-
import { ToastVariants } from "../../../types/common";
|
|
6
|
-
import { text } from "@storybook/addon-knobs";
|
|
7
|
-
|
|
8
|
-
const groupId = "props";
|
|
9
|
-
|
|
10
|
-
export const toastNotificationSuccess = () => {
|
|
11
|
-
const {
|
|
12
|
-
isToastOpen,
|
|
13
|
-
toastVariant,
|
|
14
|
-
toastMessage,
|
|
15
|
-
showToast,
|
|
16
|
-
hideToast
|
|
17
|
-
} = useToastNotification();
|
|
18
|
-
|
|
19
|
-
useEffect(() => {
|
|
20
|
-
showToast({
|
|
21
|
-
message: "Success!",
|
|
22
|
-
variant: ToastVariants.SUCCESS
|
|
23
|
-
});
|
|
24
|
-
}, []);
|
|
25
|
-
|
|
26
|
-
return (
|
|
27
|
-
<ToastNotification
|
|
28
|
-
variant={toastVariant}
|
|
29
|
-
message={toastMessage}
|
|
30
|
-
toastOpen={isToastOpen}
|
|
31
|
-
closeToastNotification={() => hideToast()}
|
|
32
|
-
role={text("role", "alert", groupId)}
|
|
33
|
-
minWidth={text("minWidth", null, groupId)}
|
|
34
|
-
maxWidth={text("maxWidth", null, groupId)}
|
|
35
|
-
/>
|
|
36
|
-
);
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
toastNotificationSuccess.storyName = "Success Toast";
|
|
40
|
-
|
|
41
|
-
export const toastNotificationError = () => {
|
|
42
|
-
const {
|
|
43
|
-
isToastOpen,
|
|
44
|
-
toastVariant,
|
|
45
|
-
toastMessage,
|
|
46
|
-
showToast,
|
|
47
|
-
hideToast
|
|
48
|
-
} = useToastNotification();
|
|
49
|
-
|
|
50
|
-
useEffect(() => {
|
|
51
|
-
showToast({
|
|
52
|
-
message: "An error occurred",
|
|
53
|
-
variant: ToastVariants.ERROR
|
|
54
|
-
});
|
|
55
|
-
}, []);
|
|
56
|
-
|
|
57
|
-
return (
|
|
58
|
-
<ToastNotification
|
|
59
|
-
variant={toastVariant}
|
|
60
|
-
message={toastMessage}
|
|
61
|
-
toastOpen={isToastOpen}
|
|
62
|
-
closeToastNotification={() => hideToast()}
|
|
63
|
-
role={text("role", "alert", groupId)}
|
|
64
|
-
minWidth={text("minWidth", null, groupId)}
|
|
65
|
-
maxWidth={text("maxWidth", null, groupId)}
|
|
66
|
-
/>
|
|
67
|
-
);
|
|
68
|
-
};
|
|
69
|
-
toastNotificationError.storyName = "Error Toast";
|
|
70
|
-
|
|
71
|
-
export const toastNotificationNoAutoHide = () => {
|
|
72
|
-
const {
|
|
73
|
-
isToastOpen,
|
|
74
|
-
toastMessage,
|
|
75
|
-
showToast,
|
|
76
|
-
hideToast
|
|
77
|
-
} = useToastNotification({ timeout: 0 });
|
|
78
|
-
|
|
79
|
-
useEffect(() => {
|
|
80
|
-
showToast({
|
|
81
|
-
message: "Success!",
|
|
82
|
-
variant: ToastVariants.SUCCESS
|
|
83
|
-
});
|
|
84
|
-
}, []);
|
|
85
|
-
|
|
86
|
-
return (
|
|
87
|
-
<ToastNotification
|
|
88
|
-
message={toastMessage}
|
|
89
|
-
toastOpen={isToastOpen}
|
|
90
|
-
closeToastNotification={() => hideToast()}
|
|
91
|
-
role={text("role", "alert", groupId)}
|
|
92
|
-
minWidth={text("minWidth", null, groupId)}
|
|
93
|
-
maxWidth={text("maxWidth", null, groupId)}
|
|
94
|
-
/>
|
|
95
|
-
);
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
toastNotificationNoAutoHide.storyName = "No auto-hide";
|
|
99
|
-
|
|
100
|
-
const story = page({
|
|
101
|
-
title: "Components|Molecules/ToastNotification",
|
|
102
|
-
Component: ToastNotification
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
export default story;
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { fn } from '@storybook/test';
|
|
3
|
-
|
|
4
|
-
import { Button } from './Button';
|
|
5
|
-
|
|
6
|
-
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
|
|
7
|
-
const meta: Meta<typeof Button> = {
|
|
8
|
-
title: 'Example/Button',
|
|
9
|
-
component: Button,
|
|
10
|
-
parameters: {
|
|
11
|
-
// Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/configure/story-layout
|
|
12
|
-
layout: 'centered',
|
|
13
|
-
},
|
|
14
|
-
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs
|
|
15
|
-
tags: ['autodocs'],
|
|
16
|
-
// More on argTypes: https://storybook.js.org/docs/api/argtypes
|
|
17
|
-
argTypes: {
|
|
18
|
-
backgroundColor: { control: 'color' },
|
|
19
|
-
},
|
|
20
|
-
// Use `fn` to spy on the onClick arg, which will appear in the actions panel once invoked: https://storybook.js.org/docs/essentials/actions#action-args
|
|
21
|
-
args: { onClick: fn() },
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export default meta;
|
|
25
|
-
type Story = StoryObj<typeof Button>;
|
|
26
|
-
|
|
27
|
-
// More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
|
|
28
|
-
export const Primary: Story = {
|
|
29
|
-
args: {
|
|
30
|
-
primary: true,
|
|
31
|
-
label: 'Button',
|
|
32
|
-
},
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export const Secondary: Story = {
|
|
36
|
-
args: {
|
|
37
|
-
label: 'Button',
|
|
38
|
-
},
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export const Large: Story = {
|
|
42
|
-
args: {
|
|
43
|
-
size: 'large',
|
|
44
|
-
label: 'Button',
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
export const Small: Story = {
|
|
49
|
-
args: {
|
|
50
|
-
size: 'small',
|
|
51
|
-
label: 'Button',
|
|
52
|
-
},
|
|
53
|
-
};
|
package/src/stories/Button.tsx
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import './button.css';
|
|
3
|
-
|
|
4
|
-
interface ButtonProps {
|
|
5
|
-
/**
|
|
6
|
-
* Is this the principal call to action on the page?
|
|
7
|
-
*/
|
|
8
|
-
primary?: boolean;
|
|
9
|
-
/**
|
|
10
|
-
* What background color to use
|
|
11
|
-
*/
|
|
12
|
-
backgroundColor?: string;
|
|
13
|
-
/**
|
|
14
|
-
* How large should the button be?
|
|
15
|
-
*/
|
|
16
|
-
size?: 'small' | 'medium' | 'large';
|
|
17
|
-
/**
|
|
18
|
-
* Button contents
|
|
19
|
-
*/
|
|
20
|
-
label: string;
|
|
21
|
-
/**
|
|
22
|
-
* Optional click handler
|
|
23
|
-
*/
|
|
24
|
-
onClick?: () => void;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Primary UI component for user interaction
|
|
29
|
-
*/
|
|
30
|
-
export const Button = ({
|
|
31
|
-
primary = false,
|
|
32
|
-
size = 'medium',
|
|
33
|
-
backgroundColor,
|
|
34
|
-
label,
|
|
35
|
-
...props
|
|
36
|
-
}: ButtonProps) => {
|
|
37
|
-
const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary';
|
|
38
|
-
return (
|
|
39
|
-
<button
|
|
40
|
-
type="button"
|
|
41
|
-
className={['storybook-button', `storybook-button--${size}`, mode].join(' ')}
|
|
42
|
-
style={{ backgroundColor }}
|
|
43
|
-
{...props}
|
|
44
|
-
>
|
|
45
|
-
{label}
|
|
46
|
-
</button>
|
|
47
|
-
);
|
|
48
|
-
};
|