@aws-amplify/ui-react 5.3.1 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Field-6c0e096a.js +1174 -0
- package/dist/esm/PrimitiveCatalog.mjs +16255 -1
- package/dist/esm/components/AccountSettings/AccountSettings.mjs +6 -1
- package/dist/esm/components/AccountSettings/ChangePassword/ChangePassword.mjs +209 -1
- package/dist/esm/components/AccountSettings/ChangePassword/defaults.mjs +77 -1
- package/dist/esm/components/AccountSettings/DeleteUser/DeleteUser.mjs +156 -1
- package/dist/esm/components/AccountSettings/DeleteUser/defaults.mjs +85 -1
- package/dist/esm/components/AccountSettings/constants.mjs +7 -1
- package/dist/esm/components/AccountSettings/shared/Defaults.mjs +66 -1
- package/dist/esm/components/AccountSettings/utils/displayText.mjs +14 -0
- package/dist/esm/components/Authenticator/Authenticator.mjs +74 -1
- package/dist/esm/components/Authenticator/ConfirmSignIn/ConfirmSignIn.mjs +42 -1
- package/dist/esm/components/Authenticator/ConfirmSignUp/ConfirmSignUp.mjs +51 -1
- package/dist/esm/components/Authenticator/FederatedSignIn/FederatedSignIn.mjs +34 -1
- package/dist/esm/components/Authenticator/FederatedSignIn/FederatedSignInButtons/FederatedSignInButton.mjs +54 -1
- package/dist/esm/components/Authenticator/ForceNewPassword/ForceNewPassword.mjs +43 -1
- package/dist/esm/components/Authenticator/ForgotPassword/ConfirmResetPassword.mjs +39 -0
- package/dist/esm/components/Authenticator/ForgotPassword/ForgotPassword.mjs +40 -0
- package/dist/esm/components/Authenticator/RouteContainer/RouteContainer.mjs +26 -1
- package/dist/esm/components/Authenticator/Router/Router.mjs +63 -1
- package/dist/esm/components/Authenticator/SetupTotp/SetupTotp.mjs +76 -0
- package/dist/esm/components/Authenticator/SignIn/SignIn.mjs +47 -1
- package/dist/esm/components/Authenticator/SignUp/SignUp.mjs +46 -1
- package/dist/esm/components/Authenticator/VerifyUser/ConfirmVerifyUser.mjs +37 -1
- package/dist/esm/components/Authenticator/VerifyUser/VerifyUser.mjs +59 -1
- package/dist/esm/components/Authenticator/hooks/useCustomComponents/defaultComponents.mjs +62 -1
- package/dist/esm/components/Authenticator/hooks/useCustomComponents/useCustomComponents.mjs +14 -1
- package/dist/esm/components/Authenticator/hooks/useFormHandlers/useFormHandlers.mjs +30 -1
- package/dist/esm/components/Authenticator/shared/ConfirmSignInFooter.mjs +18 -1
- package/dist/esm/components/Authenticator/shared/FormField.mjs +35 -1
- package/dist/esm/components/Authenticator/shared/FormFields.mjs +15 -1
- package/dist/esm/components/Authenticator/shared/RemoteErrorMessage.mjs +11 -1
- package/dist/esm/components/Authenticator/shared/SignInSignUpTabs.mjs +27 -1
- package/dist/esm/components/Authenticator/shared/TwoButtonSubmitFooter.mjs +35 -1
- package/dist/esm/components/Authenticator/utils.mjs +3 -1
- package/dist/esm/components/Authenticator/withAuthenticator.mjs +14 -1
- package/dist/esm/components/ThemeProvider/ThemeContext.mjs +8 -0
- package/dist/esm/components/ThemeProvider/ThemeProvider.mjs +23 -1
- package/dist/esm/components/index.mjs +5 -1
- package/dist/esm/components/shared/ValidationErrors.mjs +15 -1
- package/dist/esm/helpers/utils.mjs +6 -1
- package/dist/esm/hooks/useAuth.mjs +73 -1
- package/dist/esm/hooks/useBreakpointValue.mjs +29 -1
- package/dist/esm/hooks/useComposeRefsCallback.mjs +20 -1
- package/dist/esm/hooks/useDeprecationWarning.mjs +15 -1
- package/dist/esm/hooks/useStorageURL.mjs +40 -1
- package/dist/esm/hooks/useTheme.mjs +23 -1
- package/dist/esm/hooks/useThemeBreakpoint.mjs +19 -1
- package/dist/esm/index.mjs +71 -1
- package/dist/esm/internal.mjs +32 -1
- package/dist/esm/primitives/Accordion/Accordion.mjs +28 -0
- package/dist/esm/primitives/Accordion/AccordionContainer.mjs +49 -0
- package/dist/esm/primitives/Accordion/AccordionContent.mjs +15 -0
- package/dist/esm/primitives/Accordion/AccordionContext.mjs +6 -0
- package/dist/esm/primitives/Accordion/AccordionIcon.mjs +20 -0
- package/dist/esm/primitives/Accordion/AccordionItem.mjs +19 -0
- package/dist/esm/primitives/Accordion/AccordionTrigger.mjs +27 -0
- package/dist/esm/primitives/Alert/Alert.mjs +36 -1
- package/dist/esm/primitives/Alert/AlertIcon.mjs +36 -1
- package/dist/esm/primitives/Autocomplete/Autocomplete.mjs +67 -1
- package/dist/esm/primitives/Autocomplete/AutocompleteMenu.mjs +36 -1
- package/dist/esm/primitives/Autocomplete/AutocompleteOption.mjs +12 -1
- package/dist/esm/primitives/Autocomplete/useAutocomplete.mjs +188 -1
- package/dist/esm/primitives/Badge/Badge.mjs +16 -1
- package/dist/esm/primitives/Breadcrumbs/BreadcrumbContainer.mjs +18 -1
- package/dist/esm/primitives/Breadcrumbs/BreadcrumbItem.mjs +16 -1
- package/dist/esm/primitives/Breadcrumbs/BreadcrumbLink.mjs +24 -1
- package/dist/esm/primitives/Breadcrumbs/BreadcrumbSeparator.mjs +16 -1
- package/dist/esm/primitives/Breadcrumbs/Breadcrumbs.mjs +28 -1
- package/dist/esm/primitives/Button/Button.mjs +33 -1
- package/dist/esm/primitives/ButtonGroup/ButtonGroup.mjs +19 -1
- package/dist/esm/primitives/Card/Card.mjs +15 -1
- package/dist/esm/primitives/Checkbox/Checkbox.mjs +84 -1
- package/dist/esm/primitives/CheckboxField/CheckboxField.mjs +24 -1
- package/dist/esm/primitives/Collection/Collection.mjs +58 -1
- package/dist/esm/primitives/Collection/utils.mjs +30 -1
- package/dist/esm/primitives/Divider/Divider.mjs +16 -1
- package/dist/esm/primitives/DropZone/DropZone.mjs +27 -1
- package/dist/esm/primitives/DropZone/DropZoneChildren.mjs +39 -1
- package/dist/esm/primitives/DropZone/DropZoneContainer.mjs +18 -1
- package/dist/esm/primitives/DropZone/DropZoneProvider.mjs +8 -1
- package/dist/esm/primitives/DropZone/filterAllowedFiles.mjs +34 -0
- package/dist/esm/primitives/DropZone/useDropZone.mjs +65 -1
- package/dist/esm/primitives/Field/Field.mjs +20 -1
- package/dist/esm/primitives/Field/FieldClearButton.mjs +21 -1
- package/dist/esm/primitives/Field/FieldDescription.mjs +11 -1
- package/dist/esm/primitives/Field/FieldErrorMessage.mjs +10 -1
- package/dist/esm/primitives/FieldGroup/FieldGroup.mjs +29 -1
- package/dist/esm/primitives/FieldGroupIcon/FieldGroupIcon.mjs +12 -1
- package/dist/esm/primitives/FieldGroupIcon/FieldGroupIconButton.mjs +11 -1
- package/dist/esm/primitives/Fieldset/Fieldset.mjs +33 -1
- package/dist/esm/primitives/Fieldset/useFieldset.mjs +13 -1
- package/dist/esm/primitives/Flex/Flex.mjs +13 -1
- package/dist/esm/primitives/Grid/Grid.mjs +13 -1
- package/dist/esm/primitives/Heading/Heading.mjs +21 -1
- package/dist/esm/primitives/HighlightMatch/HighlightMatch.mjs +28 -1
- package/dist/esm/primitives/Icon/Icon.mjs +36 -1
- package/dist/esm/primitives/Icon/context/IconsContext.mjs +5 -1
- package/dist/esm/primitives/Icon/context/IconsProvider.mjs +8 -1
- package/dist/esm/primitives/Icon/context/useIcons.mjs +12 -1
- package/dist/esm/primitives/Icon/icons/IconAdd.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconCheck.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconCheckCircle.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconCheckCircleOutline.mjs +13 -1
- package/dist/esm/primitives/Icon/icons/IconChevronLeft.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconChevronRight.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconClose.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconEdit.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconError.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconExpandMore.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconFile.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconIndeterminate.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconInfo.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconMenu.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconRemove.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconSearch.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconStar.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconUpload.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconVisibility.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconVisibilityOff.mjs +15 -1
- package/dist/esm/primitives/Icon/icons/IconWarning.mjs +15 -1
- package/dist/esm/primitives/Image/Image.mjs +13 -1
- package/dist/esm/primitives/Input/Input.mjs +15 -1
- package/dist/esm/primitives/Label/Label.mjs +14 -1
- package/dist/esm/primitives/Link/Link.mjs +15 -1
- package/dist/esm/primitives/Loader/Loader.mjs +56 -1
- package/dist/esm/primitives/Menu/Menu.mjs +31 -1
- package/dist/esm/primitives/Menu/MenuButton.mjs +18 -1
- package/dist/esm/primitives/Menu/MenuItem.mjs +22 -1
- package/dist/esm/primitives/Message/Message.mjs +23 -1
- package/dist/esm/primitives/Message/MessageContainer.mjs +19 -1
- package/dist/esm/primitives/Message/MessageContent.mjs +12 -1
- package/dist/esm/primitives/Message/MessageDismiss.mjs +28 -1
- package/dist/esm/primitives/Message/MessageHeading.mjs +12 -1
- package/dist/esm/primitives/Message/MessageIcon.mjs +35 -1
- package/dist/esm/primitives/Message/useMessage.mjs +9 -1
- package/dist/esm/primitives/Pagination/Pagination.mjs +31 -1
- package/dist/esm/primitives/Pagination/PaginationItem.mjs +48 -1
- package/dist/esm/primitives/Pagination/usePagination.mjs +41 -1
- package/dist/esm/primitives/Pagination/usePaginationItems.mjs +39 -1
- package/dist/esm/primitives/Pagination/useRange.mjs +72 -1
- package/dist/esm/primitives/PasswordField/PasswordField.mjs +25 -1
- package/dist/esm/primitives/PasswordField/ShowPasswordButton.mjs +30 -1
- package/dist/esm/primitives/PhoneNumberField/DialCodeSelect.mjs +21 -0
- package/dist/esm/primitives/PhoneNumberField/PhoneNumberField.mjs +17 -1
- package/dist/esm/primitives/Placeholder/Placeholder.mjs +18 -1
- package/dist/esm/primitives/Radio/Radio.mjs +31 -1
- package/dist/esm/primitives/RadioGroupField/RadioGroupField.mjs +55 -1
- package/dist/esm/primitives/RadioGroupField/context.mjs +9 -1
- package/dist/esm/primitives/Rating/Rating.mjs +44 -1
- package/dist/esm/primitives/Rating/RatingIcon.mjs +11 -1
- package/dist/esm/primitives/Rating/RatingMixedIcon.mjs +13 -1
- package/dist/esm/primitives/Rating/utils.mjs +18 -1
- package/dist/esm/primitives/ScrollView/ScrollView.mjs +13 -1
- package/dist/esm/primitives/SearchField/SearchField.mjs +38 -1
- package/dist/esm/primitives/SearchField/SearchFieldButton.mjs +21 -1
- package/dist/esm/primitives/SearchField/useSearchField.mjs +64 -1
- package/dist/esm/primitives/Select/Select.mjs +31 -1
- package/dist/esm/primitives/SelectField/SelectField.mjs +42 -1
- package/dist/esm/primitives/SliderField/SliderField.mjs +77 -1
- package/dist/esm/primitives/StepperField/StepperField.mjs +60 -1
- package/dist/esm/primitives/StepperField/useStepper.mjs +113 -1
- package/dist/esm/primitives/SwitchField/SwitchField.mjs +48 -1
- package/dist/esm/primitives/SwitchField/useSwitch.mjs +30 -1
- package/dist/esm/primitives/Table/Table.mjs +18 -1
- package/dist/esm/primitives/Table/TableBody.mjs +10 -1
- package/dist/esm/primitives/Table/TableCell.mjs +12 -1
- package/dist/esm/primitives/Table/TableFoot.mjs +10 -1
- package/dist/esm/primitives/Table/TableHead.mjs +10 -1
- package/dist/esm/primitives/Table/TableRow.mjs +10 -1
- package/dist/esm/primitives/Tabs/Tabs.mjs +24 -1
- package/dist/esm/primitives/Tabs/TabsContainer.mjs +35 -0
- package/dist/esm/primitives/Tabs/TabsContext.mjs +8 -0
- package/dist/esm/primitives/Tabs/TabsItem.mjs +24 -0
- package/dist/esm/primitives/Tabs/TabsList.mjs +85 -0
- package/dist/esm/primitives/Tabs/TabsPanel.mjs +19 -0
- package/dist/esm/primitives/Text/Text.mjs +16 -1
- package/dist/esm/primitives/TextArea/TextArea.mjs +15 -1
- package/dist/esm/primitives/TextAreaField/TextAreaField.mjs +36 -1
- package/dist/esm/primitives/TextField/TextField.mjs +34 -1
- package/dist/esm/primitives/ToggleButton/ToggleButton.mjs +24 -1
- package/dist/esm/primitives/ToggleButton/useToggleButton.mjs +23 -1
- package/dist/esm/primitives/ToggleButtonGroup/ToggleButtonGroup.mjs +35 -1
- package/dist/esm/primitives/ToggleButtonGroup/useToggleButtonGroup.mjs +36 -1
- package/dist/esm/primitives/View/View.mjs +23 -1
- package/dist/esm/primitives/VisuallyHidden/VisuallyHidden.mjs +13 -1
- package/dist/esm/primitives/index.mjs +63 -1
- package/dist/esm/primitives/shared/constants.mjs +98 -1
- package/dist/esm/primitives/shared/getStyleValue.mjs +25 -1
- package/dist/esm/primitives/shared/responsive/getMediaQueries.mjs +29 -1
- package/dist/esm/primitives/shared/responsive/useBreakpoint.mjs +39 -1
- package/dist/esm/primitives/shared/responsive/utils.mjs +51 -1
- package/dist/esm/primitives/shared/styleUtils.mjs +122 -1
- package/dist/esm/primitives/shared/utils.mjs +60 -1
- package/dist/esm/primitives/types/style.mjs +104 -1
- package/dist/esm/primitives/types/theme.mjs +7 -1
- package/dist/esm/primitives/utils/getTestId.mjs +3 -1
- package/dist/esm/primitives/utils/primitiveWithForwardRef.mjs +14 -0
- package/dist/esm/primitives/utils/splitPrimitiveProps.mjs +36 -1
- package/dist/esm/primitives/utils/useLayoutEffect.mjs +13 -1
- package/dist/esm/primitives/utils/useStableId.mjs +34 -1
- package/dist/esm/version.mjs +3 -1
- package/dist/index.js +3485 -1
- package/dist/internal.js +16403 -1
- package/dist/styles/StorageManager.css +138 -0
- package/dist/styles/StorageManager.layer.css +140 -0
- package/dist/styles/_fieldControl.css +0 -0
- package/dist/styles/_fieldControl.layer.css +3 -0
- package/dist/styles/accordion.css +64 -0
- package/dist/styles/accordion.layer.css +66 -0
- package/dist/styles/alert.css +44 -0
- package/dist/styles/alert.layer.css +46 -0
- package/dist/styles/authenticator.css +72 -0
- package/dist/styles/authenticator.layer.css +74 -0
- package/dist/styles/autocomplete.css +48 -0
- package/dist/styles/autocomplete.layer.css +50 -0
- package/dist/styles/badge.css +35 -0
- package/dist/styles/badge.layer.css +37 -0
- package/dist/styles/base.css +1491 -0
- package/dist/styles/base.layer.css +1493 -0
- package/dist/styles/breadcrumbs.css +40 -0
- package/dist/styles/breadcrumbs.layer.css +42 -0
- package/dist/styles/button.css +1122 -0
- package/dist/styles/button.layer.css +1124 -0
- package/dist/styles/card.css +26 -0
- package/dist/styles/card.layer.css +28 -0
- package/dist/styles/checkbox.css +95 -0
- package/dist/styles/checkbox.layer.css +97 -0
- package/dist/styles/checkboxField.css +6 -0
- package/dist/styles/checkboxField.layer.css +8 -0
- package/dist/styles/collection.css +70 -0
- package/dist/styles/collection.layer.css +72 -0
- package/dist/styles/copy.css +27 -0
- package/dist/styles/copy.layer.css +29 -0
- package/dist/styles/dialCodeSelect.css +3 -0
- package/dist/styles/dialCodeSelect.layer.css +5 -0
- package/dist/styles/divider.css +47 -0
- package/dist/styles/divider.layer.css +49 -0
- package/dist/styles/dropZone.css +45 -0
- package/dist/styles/dropZone.layer.css +47 -0
- package/dist/styles/field.css +17 -0
- package/dist/styles/field.layer.css +19 -0
- package/dist/styles/fieldGroup.css +130 -0
- package/dist/styles/fieldGroup.layer.css +132 -0
- package/dist/styles/fieldMessages.css +10 -0
- package/dist/styles/fieldMessages.layer.css +12 -0
- package/dist/styles/fieldModifiers.css +15 -0
- package/dist/styles/fieldModifiers.layer.css +17 -0
- package/dist/styles/fieldset.css +37 -0
- package/dist/styles/fieldset.layer.css +39 -0
- package/dist/styles/flex.css +8 -0
- package/dist/styles/flex.layer.css +10 -0
- package/dist/styles/grid.css +3 -0
- package/dist/styles/grid.layer.css +5 -0
- package/dist/styles/heading.css +40 -0
- package/dist/styles/heading.layer.css +42 -0
- package/dist/styles/highlightMatch.css +3 -0
- package/dist/styles/highlightMatch.layer.css +5 -0
- package/dist/styles/icon.css +14 -0
- package/dist/styles/icon.layer.css +16 -0
- package/dist/styles/image.css +9 -0
- package/dist/styles/image.layer.css +11 -0
- package/dist/styles/inAppMessaging.css +179 -0
- package/dist/styles/inAppMessaging.layer.css +181 -0
- package/dist/styles/input.css +83 -0
- package/dist/styles/input.layer.css +85 -0
- package/dist/styles/link.css +26 -0
- package/dist/styles/link.layer.css +28 -0
- package/dist/styles/liveness.css +374 -0
- package/dist/styles/liveness.layer.css +376 -0
- package/dist/styles/loader.css +108 -0
- package/dist/styles/loader.layer.css +110 -0
- package/dist/styles/menu.css +54 -0
- package/dist/styles/menu.layer.css +56 -0
- package/dist/styles/message.css +111 -0
- package/dist/styles/message.layer.css +113 -0
- package/dist/styles/pagination.css +41 -0
- package/dist/styles/pagination.layer.css +43 -0
- package/dist/styles/passwordField.css +49 -0
- package/dist/styles/passwordField.layer.css +51 -0
- package/dist/styles/phoneNumberField.css +30 -0
- package/dist/styles/phoneNumberField.layer.css +32 -0
- package/dist/styles/placeholder.css +31 -0
- package/dist/styles/placeholder.layer.css +33 -0
- package/dist/styles/radio.css +82 -0
- package/dist/styles/radio.layer.css +84 -0
- package/dist/styles/radioGroupField.css +25 -0
- package/dist/styles/radioGroupField.layer.css +27 -0
- package/dist/styles/radiogroup.css +5 -0
- package/dist/styles/radiogroup.layer.css +7 -0
- package/dist/styles/rating.css +33 -0
- package/dist/styles/rating.layer.css +35 -0
- package/dist/styles/reset.css +76 -0
- package/dist/styles/reset.layer.css +78 -0
- package/dist/styles/scrollView.css +4 -0
- package/dist/styles/scrollView.layer.css +6 -0
- package/dist/styles/searchField.css +29 -0
- package/dist/styles/searchField.layer.css +31 -0
- package/dist/styles/select.css +128 -0
- package/dist/styles/select.layer.css +130 -0
- package/dist/styles/selectField.css +18 -0
- package/dist/styles/selectField.layer.css +20 -0
- package/dist/styles/sliderField.css +143 -0
- package/dist/styles/sliderField.layer.css +145 -0
- package/dist/styles/stepperField.css +77 -0
- package/dist/styles/stepperField.layer.css +79 -0
- package/dist/styles/switchField.css +76 -0
- package/dist/styles/switchField.layer.css +78 -0
- package/dist/styles/table.css +146 -0
- package/dist/styles/table.layer.css +148 -0
- package/dist/styles/tabs.css +87 -0
- package/dist/styles/tabs.layer.css +89 -0
- package/dist/styles/text.css +40 -0
- package/dist/styles/text.layer.css +42 -0
- package/dist/styles/textArea.css +71 -0
- package/dist/styles/textArea.layer.css +73 -0
- package/dist/styles/textAreaField.css +12 -0
- package/dist/styles/textAreaField.layer.css +14 -0
- package/dist/styles/textField.css +14 -0
- package/dist/styles/textField.layer.css +16 -0
- package/dist/styles/toggleButton.css +280 -0
- package/dist/styles/toggleButton.layer.css +282 -0
- package/dist/styles/toggleButtonGroup.css +31 -0
- package/dist/styles/toggleButtonGroup.layer.css +33 -0
- package/dist/styles/visuallyHidden.css +12 -0
- package/dist/styles/visuallyHidden.layer.css +14 -0
- package/dist/styles.css +299 -685
- package/dist/styles.layer.css +6115 -0
- package/dist/types/components/AccountSettings/ChangePassword/ChangePassword.d.ts +6 -6
- package/dist/types/components/AccountSettings/ChangePassword/types.d.ts +3 -0
- package/dist/types/components/AccountSettings/DeleteUser/DeleteUser.d.ts +3 -3
- package/dist/types/components/AccountSettings/DeleteUser/types.d.ts +7 -2
- package/dist/types/components/AccountSettings/utils/displayText.d.ts +18 -0
- package/dist/types/components/AccountSettings/utils/index.d.ts +1 -0
- package/dist/types/components/Authenticator/Authenticator.d.ts +4 -3
- package/dist/types/components/Authenticator/ConfirmSignIn/ConfirmSignIn.d.ts +2 -2
- package/dist/types/components/Authenticator/ConfirmSignUp/ConfirmSignUp.d.ts +2 -2
- package/dist/types/components/Authenticator/{ResetPassword → ForgotPassword}/index.d.ts +1 -1
- package/dist/types/components/Authenticator/{SetupTOTP/SetupTOTP.d.ts → SetupTotp/SetupTotp.d.ts} +1 -1
- package/dist/types/components/Authenticator/SetupTotp/index.d.ts +1 -0
- package/dist/types/components/Authenticator/SignIn/SignIn.d.ts +2 -2
- package/dist/types/components/Authenticator/SignUp/SignUp.d.ts +2 -2
- package/dist/types/components/Authenticator/VerifyUser/ConfirmVerifyUser.d.ts +2 -2
- package/dist/types/components/Authenticator/hooks/useCustomComponents/defaultComponents.d.ts +1 -1
- package/dist/types/components/Authenticator/withAuthenticator.d.ts +2 -2
- package/dist/types/components/ThemeProvider/ThemeContext.d.ts +6 -0
- package/dist/types/components/ThemeProvider/ThemeProvider.d.ts +1 -2
- package/dist/types/components/ThemeProvider/index.d.ts +1 -1
- package/dist/types/components/index.d.ts +0 -1
- package/dist/types/hooks/index.d.ts +0 -1
- package/dist/types/hooks/useAuth.d.ts +2 -2
- package/dist/types/hooks/useStorageURL.d.ts +2 -6
- package/dist/types/hooks/useTheme.d.ts +2 -2
- package/dist/types/index.d.ts +1 -1
- package/dist/types/internal.d.ts +0 -12
- package/dist/types/primitives/Accordion/Accordion.d.ts +19 -0
- package/dist/types/primitives/Accordion/AccordionContainer.d.ts +8 -0
- package/dist/types/primitives/Accordion/AccordionContent.d.ts +9 -0
- package/dist/types/primitives/Accordion/AccordionContext.d.ts +9 -0
- package/dist/types/primitives/Accordion/AccordionIcon.d.ts +9 -0
- package/dist/types/primitives/Accordion/AccordionItem.d.ts +6 -0
- package/dist/types/primitives/Accordion/AccordionTrigger.d.ts +9 -0
- package/dist/types/primitives/Accordion/index.d.ts +2 -0
- package/dist/types/primitives/Accordion/types.d.ts +49 -0
- package/dist/types/primitives/Alert/AlertIcon.d.ts +5 -2
- package/dist/types/primitives/Breadcrumbs/BreadcrumbItem.d.ts +1 -1
- package/dist/types/primitives/DropZone/DropZoneChildren.d.ts +10 -3
- package/dist/types/primitives/DropZone/filterAllowedFiles.d.ts +10 -0
- package/dist/types/primitives/Icon/context/IconsContext.d.ts +1 -1
- package/dist/types/primitives/PhoneNumberField/DialCodeSelect.d.ts +2 -0
- package/dist/types/primitives/StepperField/useStepper.d.ts +1 -1
- package/dist/types/primitives/Tabs/Tabs.d.ts +14 -3
- package/dist/types/primitives/Tabs/TabsContainer.d.ts +6 -0
- package/dist/types/primitives/Tabs/TabsContext.d.ts +7 -0
- package/dist/types/primitives/Tabs/TabsItem.d.ts +6 -0
- package/dist/types/primitives/Tabs/TabsList.d.ts +6 -0
- package/dist/types/primitives/Tabs/TabsPanel.d.ts +6 -0
- package/dist/types/primitives/Tabs/index.d.ts +2 -1
- package/dist/types/primitives/Tabs/types.d.ts +93 -0
- package/dist/types/primitives/components.d.ts +2 -2
- package/dist/types/primitives/index.d.ts +0 -1
- package/dist/types/primitives/shared/constants.d.ts +0 -6
- package/dist/types/primitives/shared/responsive/utils.d.ts +1 -1
- package/dist/types/primitives/shared/styleUtils.d.ts +2 -2
- package/dist/types/primitives/types/collection.d.ts +2 -2
- package/dist/types/primitives/types/fieldset.d.ts +1 -1
- package/dist/types/primitives/types/index.d.ts +0 -3
- package/dist/types/primitives/types/radioGroupField.d.ts +2 -1
- package/dist/types/primitives/types/view.d.ts +32 -2
- package/dist/types/primitives/utils/primitiveWithForwardRef.d.ts +11 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +13 -45
- package/dist/Field-4bd811d7.js +0 -1
- package/dist/esm/components/Authenticator/ResetPassword/ConfirmResetPassword.mjs +0 -1
- package/dist/esm/components/Authenticator/ResetPassword/ResetPassword.mjs +0 -1
- package/dist/esm/components/Authenticator/SetupTOTP/SetupTOTP.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/FileUploader.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/UploadDropZone/UploadDropZone.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/UploadPreviewer/UploadPreviewer.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/UploadTracker/UploadMessage.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/UploadTracker/UploadTracker.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/hooks/useFileUploader/useFileUploader.mjs +0 -1
- package/dist/esm/components/Storage/FileUploader/types.mjs +0 -1
- package/dist/esm/components/ThemeProvider/AmplifyContext.mjs +0 -1
- package/dist/esm/helpers/constants.mjs +0 -1
- package/dist/esm/hooks/actions/constants.mjs +0 -1
- package/dist/esm/hooks/actions/shared/types.mjs +0 -1
- package/dist/esm/hooks/actions/shared/useTypeCastFields.mjs +0 -1
- package/dist/esm/hooks/actions/useAuthSignOutAction.mjs +0 -1
- package/dist/esm/hooks/actions/useDataStoreCreateAction.mjs +0 -1
- package/dist/esm/hooks/actions/useDataStoreDeleteAction.mjs +0 -1
- package/dist/esm/hooks/actions/useDataStoreUpdateAction.mjs +0 -1
- package/dist/esm/hooks/actions/useNavigateAction.mjs +0 -1
- package/dist/esm/hooks/actions/useStateMutationAction.mjs +0 -1
- package/dist/esm/hooks/useAmplify.mjs +0 -1
- package/dist/esm/hooks/useDataStore.mjs +0 -1
- package/dist/esm/primitives/Expander/Expander.mjs +0 -1
- package/dist/esm/primitives/Expander/ExpanderItem.mjs +0 -1
- package/dist/esm/primitives/PhoneNumberField/CountryCodeSelect.mjs +0 -1
- package/dist/esm/primitives/shared/datastore.mjs +0 -1
- package/dist/esm/studio/findChildOverrides.mjs +0 -1
- package/dist/esm/studio/getOverrideProps.mjs +0 -1
- package/dist/esm/studio/getOverridesFromVariants.mjs +0 -1
- package/dist/esm/studio/mergeVariantsAndOverrides.mjs +0 -1
- package/dist/styles.js +0 -2
- package/dist/types/components/Authenticator/SetupTOTP/index.d.ts +0 -1
- package/dist/types/components/Storage/FileUploader/FileUploader.d.ts +0 -3
- package/dist/types/components/Storage/FileUploader/UploadDropZone/UploadDropZone.d.ts +0 -3
- package/dist/types/components/Storage/FileUploader/UploadDropZone/index.d.ts +0 -1
- package/dist/types/components/Storage/FileUploader/UploadPreviewer/UploadPreviewer.d.ts +0 -3
- package/dist/types/components/Storage/FileUploader/UploadPreviewer/index.d.ts +0 -1
- package/dist/types/components/Storage/FileUploader/UploadTracker/UploadMessage.d.ts +0 -3
- package/dist/types/components/Storage/FileUploader/UploadTracker/UploadTracker.d.ts +0 -3
- package/dist/types/components/Storage/FileUploader/UploadTracker/index.d.ts +0 -1
- package/dist/types/components/Storage/FileUploader/hooks/index.d.ts +0 -1
- package/dist/types/components/Storage/FileUploader/hooks/useFileUploader/index.d.ts +0 -2
- package/dist/types/components/Storage/FileUploader/hooks/useFileUploader/types.d.ts +0 -18
- package/dist/types/components/Storage/FileUploader/hooks/useFileUploader/useFileUploader.d.ts +0 -9
- package/dist/types/components/Storage/FileUploader/index.d.ts +0 -1
- package/dist/types/components/Storage/FileUploader/types.d.ts +0 -91
- package/dist/types/components/Storage/index.d.ts +0 -1
- package/dist/types/components/ThemeProvider/AmplifyContext.d.ts +0 -6
- package/dist/types/hooks/actions/constants.d.ts +0 -39
- package/dist/types/hooks/actions/shared/types.d.ts +0 -27
- package/dist/types/hooks/actions/shared/useTypeCastFields.d.ts +0 -15
- package/dist/types/hooks/actions/testModels/model.d.ts +0 -25
- package/dist/types/hooks/actions/testModels/schema.d.ts +0 -2
- package/dist/types/hooks/actions/testModels/todo.d.ts +0 -13
- package/dist/types/hooks/actions/useAuthSignOutAction.d.ts +0 -9
- package/dist/types/hooks/actions/useDataStoreCreateAction.d.ts +0 -9
- package/dist/types/hooks/actions/useDataStoreDeleteAction.d.ts +0 -10
- package/dist/types/hooks/actions/useDataStoreUpdateAction.d.ts +0 -10
- package/dist/types/hooks/actions/useNavigateAction.d.ts +0 -15
- package/dist/types/hooks/actions/useStateMutationAction.d.ts +0 -10
- package/dist/types/hooks/useAmplify.d.ts +0 -6
- package/dist/types/hooks/useDataStore.d.ts +0 -18
- package/dist/types/primitives/Expander/Expander.d.ts +0 -6
- package/dist/types/primitives/Expander/ExpanderItem.d.ts +0 -7
- package/dist/types/primitives/Expander/index.d.ts +0 -2
- package/dist/types/primitives/Menu/__tests_/menu.test.d.ts +0 -1
- package/dist/types/primitives/PhoneNumberField/CountryCodeSelect.d.ts +0 -2
- package/dist/types/primitives/Rating/__test__/Rating.test.d.ts +0 -1
- package/dist/types/primitives/Rating/__test__/utils.test.d.ts +0 -1
- package/dist/types/primitives/Text/__test__/Text.test.d.ts +0 -1
- package/dist/types/primitives/shared/datastore.d.ts +0 -7
- package/dist/types/primitives/shared/index.d.ts +0 -1
- package/dist/types/primitives/shared/types.d.ts +0 -15
- package/dist/types/primitives/types/datastore.d.ts +0 -31
- package/dist/types/primitives/types/expander.d.ts +0 -51
- package/dist/types/primitives/types/tabs.d.ts +0 -63
- package/dist/types/studio/findChildOverrides.d.ts +0 -18
- package/dist/types/studio/getOverrideProps.d.ts +0 -18
- package/dist/types/studio/getOverridesFromVariants.d.ts +0 -20
- package/dist/types/studio/index.d.ts +0 -5
- package/dist/types/studio/mergeVariantsAndOverrides.d.ts +0 -18
- package/dist/types/studio/types.d.ts +0 -18
- package/dist/types/styles.d.ts +0 -1
- /package/dist/types/components/Authenticator/{ResetPassword → ForgotPassword}/ConfirmResetPassword.d.ts +0 -0
- /package/dist/types/components/Authenticator/{ResetPassword/ResetPassword.d.ts → ForgotPassword/ForgotPassword.d.ts} +0 -0
|
@@ -0,0 +1,1124 @@
|
|
|
1
|
+
@layer amplify.components {
|
|
2
|
+
/*
|
|
3
|
+
* Button base styles
|
|
4
|
+
*/
|
|
5
|
+
.amplify-button {
|
|
6
|
+
--amplify-internal-button-background-color: var(
|
|
7
|
+
--amplify-components-button-background-color
|
|
8
|
+
);
|
|
9
|
+
--amplify-internal-button-border-color: var(
|
|
10
|
+
--amplify-components-button-border-color
|
|
11
|
+
);
|
|
12
|
+
--amplify-internal-button-color: var(--amplify-components-button-color);
|
|
13
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
14
|
+
--amplify-components-button-focus-box-shadow
|
|
15
|
+
);
|
|
16
|
+
--amplify-internal-button-border-width: var(
|
|
17
|
+
--amplify-components-button-border-width
|
|
18
|
+
);
|
|
19
|
+
align-items: center;
|
|
20
|
+
background-color: var(--amplify-internal-button-background-color);
|
|
21
|
+
border-color: var(--amplify-internal-button-border-color);
|
|
22
|
+
border-radius: var(--amplify-components-button-border-radius);
|
|
23
|
+
border-style: var(--amplify-components-button-border-style);
|
|
24
|
+
border-width: var(--amplify-internal-button-border-width);
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
color: var(--amplify-internal-button-color);
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
display: inline-flex;
|
|
29
|
+
font-size: var(--amplify-components-button-font-size);
|
|
30
|
+
font-weight: var(--amplify-components-button-font-weight);
|
|
31
|
+
justify-content: center;
|
|
32
|
+
line-height: var(--amplify-components-button-line-height);
|
|
33
|
+
padding-block-start: var(--amplify-components-button-padding-block-start);
|
|
34
|
+
padding-block-end: var(--amplify-components-button-padding-block-end);
|
|
35
|
+
padding-inline-start: var(--amplify-components-button-padding-inline-start);
|
|
36
|
+
padding-inline-end: var(--amplify-components-button-padding-inline-end);
|
|
37
|
+
transition: all var(--amplify-components-button-transition-duration);
|
|
38
|
+
-webkit-user-select: none;
|
|
39
|
+
-moz-user-select: none;
|
|
40
|
+
user-select: none;
|
|
41
|
+
--amplify-internal-button-disabled-color: var(
|
|
42
|
+
--amplify-components-button-disabled-color
|
|
43
|
+
);
|
|
44
|
+
--amplify-internal-button-disabled-background-color: var(
|
|
45
|
+
--amplify-components-button-disabled-background-color
|
|
46
|
+
);
|
|
47
|
+
--amplify-internal-button-disabled-border-color: var(
|
|
48
|
+
--amplify-components-button-disabled-border-color
|
|
49
|
+
);
|
|
50
|
+
--amplify-internal-button-disabled-text-decoration: initial;
|
|
51
|
+
--amplify-internal-button-loading-background-color: var(
|
|
52
|
+
--amplify-components-button-loading-background-color
|
|
53
|
+
);
|
|
54
|
+
--amplify-internal-button-loading-border-color: var(
|
|
55
|
+
--amplify-components-button-loading-border-color
|
|
56
|
+
);
|
|
57
|
+
--amplify-internal-button-loading-color: var(
|
|
58
|
+
--amplify-components-button-loading-color
|
|
59
|
+
);
|
|
60
|
+
--amplify-internal-button-loading-text-decoration: initial;
|
|
61
|
+
}
|
|
62
|
+
.amplify-button:hover {
|
|
63
|
+
--amplify-internal-button-background-color: var(
|
|
64
|
+
--amplify-components-button-hover-background-color
|
|
65
|
+
);
|
|
66
|
+
--amplify-internal-button-border-color: var(
|
|
67
|
+
--amplify-components-button-hover-border-color
|
|
68
|
+
);
|
|
69
|
+
--amplify-internal-button-color: var(
|
|
70
|
+
--amplify-components-button-hover-color
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
.amplify-button:focus {
|
|
74
|
+
--amplify-internal-button-background-color: var(
|
|
75
|
+
--amplify-components-button-hover-background-color
|
|
76
|
+
);
|
|
77
|
+
--amplify-internal-button-border-color: var(
|
|
78
|
+
--amplify-components-button-focus-border-color
|
|
79
|
+
);
|
|
80
|
+
--amplify-internal-button-color: var(
|
|
81
|
+
--amplify-components-button-focus-color
|
|
82
|
+
);
|
|
83
|
+
box-shadow: var(--amplify-internal-button-focus-box-shadow);
|
|
84
|
+
}
|
|
85
|
+
.amplify-button:active {
|
|
86
|
+
--amplify-internal-button-background-color: var(
|
|
87
|
+
--amplify-components-button-active-background-color
|
|
88
|
+
);
|
|
89
|
+
--amplify-internal-button-border-color: var(
|
|
90
|
+
--amplify-components-button-active-border-color
|
|
91
|
+
);
|
|
92
|
+
--amplify-internal-button-color: var(
|
|
93
|
+
--amplify-components-button-active-color
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
.amplify-button--fullwidth {
|
|
97
|
+
width: 100%;
|
|
98
|
+
}
|
|
99
|
+
.amplify-button--outlined--info {
|
|
100
|
+
--amplify-internal-button-background-color: var(
|
|
101
|
+
--amplify-components-button-outlined-info-background-color
|
|
102
|
+
);
|
|
103
|
+
--amplify-internal-button-border-color: var(
|
|
104
|
+
--amplify-components-button-outlined-info-border-color
|
|
105
|
+
);
|
|
106
|
+
--amplify-internal-button-color: var(
|
|
107
|
+
--amplify-components-button-outlined-info-color
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
.amplify-button--outlined--info:hover {
|
|
111
|
+
--amplify-internal-button-background-color: var(
|
|
112
|
+
--amplify-components-button-outlined-info-hover-background-color
|
|
113
|
+
);
|
|
114
|
+
--amplify-internal-button-border-color: var(
|
|
115
|
+
--amplify-components-button-outlined-info-hover-border-color
|
|
116
|
+
);
|
|
117
|
+
--amplify-internal-button-color: var(
|
|
118
|
+
--amplify-components-button-outlined-info-hover-color
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
.amplify-button--outlined--info:focus {
|
|
122
|
+
--amplify-internal-button-background-color: var(
|
|
123
|
+
--amplify-components-button-outlined-info-focus-background-color
|
|
124
|
+
);
|
|
125
|
+
--amplify-internal-button-border-color: var(
|
|
126
|
+
--amplify-components-button-outlined-info-focus-border-color
|
|
127
|
+
);
|
|
128
|
+
--amplify-internal-button-color: var(
|
|
129
|
+
--amplify-components-button-outlined-info-focus-color
|
|
130
|
+
);
|
|
131
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
132
|
+
--amplify-components-button-outlined-info-focus-box-shadow
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
.amplify-button--outlined--info:active {
|
|
136
|
+
--amplify-internal-button-background-color: var(
|
|
137
|
+
--amplify-components-button-outlined-info-active-background-color
|
|
138
|
+
);
|
|
139
|
+
--amplify-internal-button-border-color: var(
|
|
140
|
+
--amplify-components-button-outlined-info-active-border-color
|
|
141
|
+
);
|
|
142
|
+
--amplify-internal-button-color: var(
|
|
143
|
+
--amplify-components-button-outlined-info-active-color
|
|
144
|
+
);
|
|
145
|
+
}
|
|
146
|
+
.amplify-button--outlined--warning {
|
|
147
|
+
--amplify-internal-button-background-color: var(
|
|
148
|
+
--amplify-components-button-outlined-warning-background-color
|
|
149
|
+
);
|
|
150
|
+
--amplify-internal-button-border-color: var(
|
|
151
|
+
--amplify-components-button-outlined-warning-border-color
|
|
152
|
+
);
|
|
153
|
+
--amplify-internal-button-color: var(
|
|
154
|
+
--amplify-components-button-outlined-warning-color
|
|
155
|
+
);
|
|
156
|
+
}
|
|
157
|
+
.amplify-button--outlined--warning:hover {
|
|
158
|
+
--amplify-internal-button-background-color: var(
|
|
159
|
+
--amplify-components-button-outlined-warning-hover-background-color
|
|
160
|
+
);
|
|
161
|
+
--amplify-internal-button-border-color: var(
|
|
162
|
+
--amplify-components-button-outlined-warning-hover-border-color
|
|
163
|
+
);
|
|
164
|
+
--amplify-internal-button-color: var(
|
|
165
|
+
--amplify-components-button-outlined-warning-hover-color
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
.amplify-button--outlined--warning:focus {
|
|
169
|
+
--amplify-internal-button-background-color: var(
|
|
170
|
+
--amplify-components-button-outlined-warning-focus-background-color
|
|
171
|
+
);
|
|
172
|
+
--amplify-internal-button-border-color: var(
|
|
173
|
+
--amplify-components-button-outlined-warning-focus-border-color
|
|
174
|
+
);
|
|
175
|
+
--amplify-internal-button-color: var(
|
|
176
|
+
--amplify-components-button-outlined-warning-focus-color
|
|
177
|
+
);
|
|
178
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
179
|
+
--amplify-components-button-outlined-warning-focus-box-shadow
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
.amplify-button--outlined--warning:active {
|
|
183
|
+
--amplify-internal-button-background-color: var(
|
|
184
|
+
--amplify-components-button-outlined-warning-active-background-color
|
|
185
|
+
);
|
|
186
|
+
--amplify-internal-button-border-color: var(
|
|
187
|
+
--amplify-components-button-outlined-warning-active-border-color
|
|
188
|
+
);
|
|
189
|
+
--amplify-internal-button-color: var(
|
|
190
|
+
--amplify-components-button-outlined-warning-active-color
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
.amplify-button--outlined--error {
|
|
194
|
+
--amplify-internal-button-background-color: var(
|
|
195
|
+
--amplify-components-button-outlined-error-background-color
|
|
196
|
+
);
|
|
197
|
+
--amplify-internal-button-border-color: var(
|
|
198
|
+
--amplify-components-button-outlined-error-border-color
|
|
199
|
+
);
|
|
200
|
+
--amplify-internal-button-color: var(
|
|
201
|
+
--amplify-components-button-outlined-error-color
|
|
202
|
+
);
|
|
203
|
+
}
|
|
204
|
+
.amplify-button--outlined--error:hover {
|
|
205
|
+
--amplify-internal-button-background-color: var(
|
|
206
|
+
--amplify-components-button-outlined-error-hover-background-color
|
|
207
|
+
);
|
|
208
|
+
--amplify-internal-button-border-color: var(
|
|
209
|
+
--amplify-components-button-outlined-error-hover-border-color
|
|
210
|
+
);
|
|
211
|
+
--amplify-internal-button-color: var(
|
|
212
|
+
--amplify-components-button-outlined-error-hover-color
|
|
213
|
+
);
|
|
214
|
+
}
|
|
215
|
+
.amplify-button--outlined--error:focus {
|
|
216
|
+
--amplify-internal-button-background-color: var(
|
|
217
|
+
--amplify-components-button-outlined-error-focus-background-color
|
|
218
|
+
);
|
|
219
|
+
--amplify-internal-button-border-color: var(
|
|
220
|
+
--amplify-components-button-outlined-error-focus-border-color
|
|
221
|
+
);
|
|
222
|
+
--amplify-internal-button-color: var(
|
|
223
|
+
--amplify-components-button-outlined-error-focus-color
|
|
224
|
+
);
|
|
225
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
226
|
+
--amplify-components-button-outlined-error-focus-box-shadow
|
|
227
|
+
);
|
|
228
|
+
}
|
|
229
|
+
.amplify-button--outlined--error:active {
|
|
230
|
+
--amplify-internal-button-background-color: var(
|
|
231
|
+
--amplify-components-button-outlined-error-active-background-color
|
|
232
|
+
);
|
|
233
|
+
--amplify-internal-button-border-color: var(
|
|
234
|
+
--amplify-components-button-outlined-error-active-border-color
|
|
235
|
+
);
|
|
236
|
+
--amplify-internal-button-color: var(
|
|
237
|
+
--amplify-components-button-outlined-error-active-color
|
|
238
|
+
);
|
|
239
|
+
}
|
|
240
|
+
.amplify-button--outlined--success {
|
|
241
|
+
--amplify-internal-button-background-color: var(
|
|
242
|
+
--amplify-components-button-outlined-success-background-color
|
|
243
|
+
);
|
|
244
|
+
--amplify-internal-button-border-color: var(
|
|
245
|
+
--amplify-components-button-outlined-success-border-color
|
|
246
|
+
);
|
|
247
|
+
--amplify-internal-button-color: var(
|
|
248
|
+
--amplify-components-button-outlined-success-color
|
|
249
|
+
);
|
|
250
|
+
}
|
|
251
|
+
.amplify-button--outlined--success:hover {
|
|
252
|
+
--amplify-internal-button-background-color: var(
|
|
253
|
+
--amplify-components-button-outlined-success-hover-background-color
|
|
254
|
+
);
|
|
255
|
+
--amplify-internal-button-border-color: var(
|
|
256
|
+
--amplify-components-button-outlined-success-hover-border-color
|
|
257
|
+
);
|
|
258
|
+
--amplify-internal-button-color: var(
|
|
259
|
+
--amplify-components-button-outlined-success-hover-color
|
|
260
|
+
);
|
|
261
|
+
}
|
|
262
|
+
.amplify-button--outlined--success:focus {
|
|
263
|
+
--amplify-internal-button-background-color: var(
|
|
264
|
+
--amplify-components-button-outlined-success-focus-background-color
|
|
265
|
+
);
|
|
266
|
+
--amplify-internal-button-border-color: var(
|
|
267
|
+
--amplify-components-button-outlined-success-focus-border-color
|
|
268
|
+
);
|
|
269
|
+
--amplify-internal-button-color: var(
|
|
270
|
+
--amplify-components-button-outlined-success-focus-color
|
|
271
|
+
);
|
|
272
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
273
|
+
--amplify-components-button-outlined-success-focus-box-shadow
|
|
274
|
+
);
|
|
275
|
+
}
|
|
276
|
+
.amplify-button--outlined--success:active {
|
|
277
|
+
--amplify-internal-button-background-color: var(
|
|
278
|
+
--amplify-components-button-outlined-success-active-background-color
|
|
279
|
+
);
|
|
280
|
+
--amplify-internal-button-border-color: var(
|
|
281
|
+
--amplify-components-button-outlined-success-active-border-color
|
|
282
|
+
);
|
|
283
|
+
--amplify-internal-button-color: var(
|
|
284
|
+
--amplify-components-button-outlined-success-active-color
|
|
285
|
+
);
|
|
286
|
+
}
|
|
287
|
+
.amplify-button--outlined--overlay {
|
|
288
|
+
--amplify-internal-button-background-color: var(
|
|
289
|
+
--amplify-components-button-outlined-overlay-background-color
|
|
290
|
+
);
|
|
291
|
+
--amplify-internal-button-border-color: var(
|
|
292
|
+
--amplify-components-button-outlined-overlay-border-color
|
|
293
|
+
);
|
|
294
|
+
--amplify-internal-button-color: var(
|
|
295
|
+
--amplify-components-button-outlined-overlay-color
|
|
296
|
+
);
|
|
297
|
+
}
|
|
298
|
+
.amplify-button--outlined--overlay:hover {
|
|
299
|
+
--amplify-internal-button-background-color: var(
|
|
300
|
+
--amplify-components-button-outlined-overlay-hover-background-color
|
|
301
|
+
);
|
|
302
|
+
--amplify-internal-button-border-color: var(
|
|
303
|
+
--amplify-components-button-outlined-overlay-hover-border-color
|
|
304
|
+
);
|
|
305
|
+
--amplify-internal-button-color: var(
|
|
306
|
+
--amplify-components-button-outlined-overlay-hover-color
|
|
307
|
+
);
|
|
308
|
+
}
|
|
309
|
+
.amplify-button--outlined--overlay:focus {
|
|
310
|
+
--amplify-internal-button-background-color: var(
|
|
311
|
+
--amplify-components-button-outlined-overlay-focus-background-color
|
|
312
|
+
);
|
|
313
|
+
--amplify-internal-button-border-color: var(
|
|
314
|
+
--amplify-components-button-outlined-overlay-focus-border-color
|
|
315
|
+
);
|
|
316
|
+
--amplify-internal-button-color: var(
|
|
317
|
+
--amplify-components-button-outlined-overlay-focus-color
|
|
318
|
+
);
|
|
319
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
320
|
+
--amplify-components-button-outlined-overlay-focus-box-shadow
|
|
321
|
+
);
|
|
322
|
+
}
|
|
323
|
+
.amplify-button--outlined--overlay:active {
|
|
324
|
+
--amplify-internal-button-background-color: var(
|
|
325
|
+
--amplify-components-button-outlined-overlay-active-background-color
|
|
326
|
+
);
|
|
327
|
+
--amplify-internal-button-border-color: var(
|
|
328
|
+
--amplify-components-button-outlined-overlay-active-border-color
|
|
329
|
+
);
|
|
330
|
+
--amplify-internal-button-color: var(
|
|
331
|
+
--amplify-components-button-outlined-overlay-active-color
|
|
332
|
+
);
|
|
333
|
+
}
|
|
334
|
+
.amplify-button--menu {
|
|
335
|
+
border-width: var(--amplify-components-button-menu-border-width);
|
|
336
|
+
background-color: var(--amplify-components-button-menu-background-color);
|
|
337
|
+
justify-content: var(--amplify-components-button-menu-justify-content);
|
|
338
|
+
--amplify-internal-button-disabled-color: var(
|
|
339
|
+
--amplify-components-button-menu-disabled-color
|
|
340
|
+
);
|
|
341
|
+
}
|
|
342
|
+
.amplify-button--menu:hover {
|
|
343
|
+
color: var(--amplify-components-button-menu-hover-color);
|
|
344
|
+
background-color: var(--amplify-components-button-menu-hover-background-color);
|
|
345
|
+
}
|
|
346
|
+
.amplify-button--menu:focus {
|
|
347
|
+
box-shadow: none;
|
|
348
|
+
color: var(--amplify-components-button-menu-focus-color);
|
|
349
|
+
background-color: var(--amplify-components-button-menu-focus-background-color);
|
|
350
|
+
}
|
|
351
|
+
.amplify-button--menu:active {
|
|
352
|
+
color: var(--amplify-components-button-menu-active-color);
|
|
353
|
+
background-color: var(--amplify-components-button-menu-active-background-color);
|
|
354
|
+
}
|
|
355
|
+
.amplify-button--primary {
|
|
356
|
+
--amplify-internal-button-border-width: var(
|
|
357
|
+
--amplify-components-button-primary-border-width
|
|
358
|
+
);
|
|
359
|
+
--amplify-internal-button-background-color: var(
|
|
360
|
+
--amplify-components-button-primary-background-color
|
|
361
|
+
);
|
|
362
|
+
--amplify-internal-button-border-color: var(
|
|
363
|
+
--amplify-components-button-primary-border-color
|
|
364
|
+
);
|
|
365
|
+
--amplify-internal-button-color: var(
|
|
366
|
+
--amplify-components-button-primary-color
|
|
367
|
+
);
|
|
368
|
+
--amplify-internal-button-disabled-border-color: var(
|
|
369
|
+
--amplify-components-button-primary-disabled-border-color
|
|
370
|
+
);
|
|
371
|
+
--amplify-internal-button-disabled-background-color: var(
|
|
372
|
+
--amplify-components-button-primary-disabled-background-color
|
|
373
|
+
);
|
|
374
|
+
--amplify-internal-button-disabled-color: var(
|
|
375
|
+
--amplify-components-button-primary-disabled-color
|
|
376
|
+
);
|
|
377
|
+
--amplify-internal-button-loading-background-color: var(
|
|
378
|
+
--amplify-components-button-primary-loading-background-color
|
|
379
|
+
);
|
|
380
|
+
--amplify-internal-button-loading-border-color: var(
|
|
381
|
+
--amplify-components-button-primary-loading-border-color
|
|
382
|
+
);
|
|
383
|
+
--amplify-internal-button-loading-color: var(
|
|
384
|
+
--amplify-components-button-primary-loading-color
|
|
385
|
+
);
|
|
386
|
+
}
|
|
387
|
+
.amplify-button--primary:hover {
|
|
388
|
+
--amplify-internal-button-background-color: var(
|
|
389
|
+
--amplify-components-button-primary-hover-background-color
|
|
390
|
+
);
|
|
391
|
+
--amplify-internal-button-border-color: var(
|
|
392
|
+
--amplify-components-button-primary-hover-border-color
|
|
393
|
+
);
|
|
394
|
+
--amplify-internal-button-color: var(
|
|
395
|
+
--amplify-components-button-primary-hover-color
|
|
396
|
+
);
|
|
397
|
+
}
|
|
398
|
+
.amplify-button--primary:focus {
|
|
399
|
+
--amplify-internal-button-background-color: var(
|
|
400
|
+
--amplify-components-button-primary-focus-background-color
|
|
401
|
+
);
|
|
402
|
+
--amplify-internal-button-border-color: var(
|
|
403
|
+
--amplify-components-button-primary-focus-border-color
|
|
404
|
+
);
|
|
405
|
+
--amplify-internal-button-color: var(
|
|
406
|
+
--amplify-components-button-primary-focus-color
|
|
407
|
+
);
|
|
408
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
409
|
+
--amplify-components-button-primary-focus-box-shadow
|
|
410
|
+
);
|
|
411
|
+
}
|
|
412
|
+
.amplify-button--primary:active {
|
|
413
|
+
--amplify-internal-button-background-color: var(
|
|
414
|
+
--amplify-components-button-primary-active-background-color
|
|
415
|
+
);
|
|
416
|
+
--amplify-internal-button-border-color: var(
|
|
417
|
+
--amplify-components-button-primary-active-border-color
|
|
418
|
+
);
|
|
419
|
+
--amplify-internal-button-color: var(
|
|
420
|
+
--amplify-components-button-primary-active-color
|
|
421
|
+
);
|
|
422
|
+
}
|
|
423
|
+
.amplify-button--primary--info {
|
|
424
|
+
--amplify-internal-button-background-color: var(
|
|
425
|
+
--amplify-components-button-primary-info-background-color
|
|
426
|
+
);
|
|
427
|
+
--amplify-internal-button-border-color: var(
|
|
428
|
+
--amplify-components-button-primary-info-border-color
|
|
429
|
+
);
|
|
430
|
+
--amplify-internal-button-color: var(
|
|
431
|
+
--amplify-components-button-primary-info-color
|
|
432
|
+
);
|
|
433
|
+
}
|
|
434
|
+
.amplify-button--primary--info:hover {
|
|
435
|
+
--amplify-internal-button-background-color: var(
|
|
436
|
+
--amplify-components-button-primary-info-hover-background-color
|
|
437
|
+
);
|
|
438
|
+
--amplify-internal-button-border-color: var(
|
|
439
|
+
--amplify-components-button-primary-info-hover-border-color
|
|
440
|
+
);
|
|
441
|
+
--amplify-internal-button-color: var(
|
|
442
|
+
--amplify-components-button-primary-info-hover-color
|
|
443
|
+
);
|
|
444
|
+
}
|
|
445
|
+
.amplify-button--primary--info:focus {
|
|
446
|
+
--amplify-internal-button-background-color: var(
|
|
447
|
+
--amplify-components-button-primary-info-focus-background-color
|
|
448
|
+
);
|
|
449
|
+
--amplify-internal-button-border-color: var(
|
|
450
|
+
--amplify-components-button-primary-info-focus-border-color
|
|
451
|
+
);
|
|
452
|
+
--amplify-internal-button-color: var(
|
|
453
|
+
--amplify-components-button-primary-info-focus-color
|
|
454
|
+
);
|
|
455
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
456
|
+
--amplify-components-button-primary-info-focus-box-shadow
|
|
457
|
+
);
|
|
458
|
+
}
|
|
459
|
+
.amplify-button--primary--info:active {
|
|
460
|
+
--amplify-internal-button-background-color: var(
|
|
461
|
+
--amplify-components-button-primary-info-active-background-color
|
|
462
|
+
);
|
|
463
|
+
--amplify-internal-button-border-color: var(
|
|
464
|
+
--amplify-components-button-primary-info-active-border-color
|
|
465
|
+
);
|
|
466
|
+
--amplify-internal-button-color: var(
|
|
467
|
+
--amplify-components-button-primary-info-active-color
|
|
468
|
+
);
|
|
469
|
+
}
|
|
470
|
+
.amplify-button--primary--warning {
|
|
471
|
+
--amplify-internal-button-background-color: var(
|
|
472
|
+
--amplify-components-button-primary-warning-background-color
|
|
473
|
+
);
|
|
474
|
+
--amplify-internal-button-border-color: var(
|
|
475
|
+
--amplify-components-button-primary-warning-border-color
|
|
476
|
+
);
|
|
477
|
+
--amplify-internal-button-color: var(
|
|
478
|
+
--amplify-components-button-primary-warning-color
|
|
479
|
+
);
|
|
480
|
+
}
|
|
481
|
+
.amplify-button--primary--warning:hover {
|
|
482
|
+
--amplify-internal-button-background-color: var(
|
|
483
|
+
--amplify-components-button-primary-warning-hover-background-color
|
|
484
|
+
);
|
|
485
|
+
--amplify-internal-button-border-color: var(
|
|
486
|
+
--amplify-components-button-primary-warning-hover-border-color
|
|
487
|
+
);
|
|
488
|
+
--amplify-internal-button-color: var(
|
|
489
|
+
--amplify-components-button-primary-warning-hover-color
|
|
490
|
+
);
|
|
491
|
+
}
|
|
492
|
+
.amplify-button--primary--warning:focus {
|
|
493
|
+
--amplify-internal-button-background-color: var(
|
|
494
|
+
--amplify-components-button-primary-warning-focus-background-color
|
|
495
|
+
);
|
|
496
|
+
--amplify-internal-button-border-color: var(
|
|
497
|
+
--amplify-components-button-primary-warning-focus-border-color
|
|
498
|
+
);
|
|
499
|
+
--amplify-internal-button-color: var(
|
|
500
|
+
--amplify-components-button-primary-warning-focus-color
|
|
501
|
+
);
|
|
502
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
503
|
+
--amplify-components-button-primary-warning-focus-box-shadow
|
|
504
|
+
);
|
|
505
|
+
}
|
|
506
|
+
.amplify-button--primary--warning:active {
|
|
507
|
+
--amplify-internal-button-background-color: var(
|
|
508
|
+
--amplify-components-button-primary-warning-active-background-color
|
|
509
|
+
);
|
|
510
|
+
--amplify-internal-button-border-color: var(
|
|
511
|
+
--amplify-components-button-primary-warning-active-border-color
|
|
512
|
+
);
|
|
513
|
+
--amplify-internal-button-color: var(
|
|
514
|
+
--amplify-components-button-primary-warning-active-color
|
|
515
|
+
);
|
|
516
|
+
}
|
|
517
|
+
.amplify-button--primary--error {
|
|
518
|
+
--amplify-internal-button-background-color: var(
|
|
519
|
+
--amplify-components-button-primary-error-background-color
|
|
520
|
+
);
|
|
521
|
+
--amplify-internal-button-border-color: var(
|
|
522
|
+
--amplify-components-button-primary-error-border-color
|
|
523
|
+
);
|
|
524
|
+
--amplify-internal-button-color: var(
|
|
525
|
+
--amplify-components-button-primary-error-color
|
|
526
|
+
);
|
|
527
|
+
}
|
|
528
|
+
.amplify-button--primary--error:hover {
|
|
529
|
+
--amplify-internal-button-background-color: var(
|
|
530
|
+
--amplify-components-button-primary-error-hover-background-color
|
|
531
|
+
);
|
|
532
|
+
--amplify-internal-button-border-color: var(
|
|
533
|
+
--amplify-components-button-primary-error-hover-border-color
|
|
534
|
+
);
|
|
535
|
+
--amplify-internal-button-color: var(
|
|
536
|
+
--amplify-components-button-primary-error-hover-color
|
|
537
|
+
);
|
|
538
|
+
}
|
|
539
|
+
.amplify-button--primary--error:focus {
|
|
540
|
+
--amplify-internal-button-background-color: var(
|
|
541
|
+
--amplify-components-button-primary-error-focus-background-color
|
|
542
|
+
);
|
|
543
|
+
--amplify-internal-button-border-color: var(
|
|
544
|
+
--amplify-components-button-primary-error-focus-border-color
|
|
545
|
+
);
|
|
546
|
+
--amplify-internal-button-color: var(
|
|
547
|
+
--amplify-components-button-primary-error-focus-color
|
|
548
|
+
);
|
|
549
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
550
|
+
--amplify-components-button-primary-error-focus-box-shadow
|
|
551
|
+
);
|
|
552
|
+
}
|
|
553
|
+
.amplify-button--primary--error:active {
|
|
554
|
+
--amplify-internal-button-background-color: var(
|
|
555
|
+
--amplify-components-button-primary-error-active-background-color
|
|
556
|
+
);
|
|
557
|
+
--amplify-internal-button-border-color: var(
|
|
558
|
+
--amplify-components-button-primary-error-active-border-color
|
|
559
|
+
);
|
|
560
|
+
--amplify-internal-button-color: var(
|
|
561
|
+
--amplify-components-button-primary-error-active-color
|
|
562
|
+
);
|
|
563
|
+
}
|
|
564
|
+
.amplify-button--primary--success {
|
|
565
|
+
--amplify-internal-button-background-color: var(
|
|
566
|
+
--amplify-components-button-primary-success-background-color
|
|
567
|
+
);
|
|
568
|
+
--amplify-internal-button-border-color: var(
|
|
569
|
+
--amplify-components-button-primary-success-border-color
|
|
570
|
+
);
|
|
571
|
+
--amplify-internal-button-color: var(
|
|
572
|
+
--amplify-components-button-primary-success-color
|
|
573
|
+
);
|
|
574
|
+
}
|
|
575
|
+
.amplify-button--primary--success:hover {
|
|
576
|
+
--amplify-internal-button-background-color: var(
|
|
577
|
+
--amplify-components-button-primary-success-hover-background-color
|
|
578
|
+
);
|
|
579
|
+
--amplify-internal-button-border-color: var(
|
|
580
|
+
--amplify-components-button-primary-success-hover-border-color
|
|
581
|
+
);
|
|
582
|
+
--amplify-internal-button-color: var(
|
|
583
|
+
--amplify-components-button-primary-success-hover-color
|
|
584
|
+
);
|
|
585
|
+
}
|
|
586
|
+
.amplify-button--primary--success:focus {
|
|
587
|
+
--amplify-internal-button-background-color: var(
|
|
588
|
+
--amplify-components-button-primary-success-focus-background-color
|
|
589
|
+
);
|
|
590
|
+
--amplify-internal-button-border-color: var(
|
|
591
|
+
--amplify-components-button-primary-success-focus-border-color
|
|
592
|
+
);
|
|
593
|
+
--amplify-internal-button-color: var(
|
|
594
|
+
--amplify-components-button-primary-success-focus-color
|
|
595
|
+
);
|
|
596
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
597
|
+
--amplify-components-button-primary-success-focus-box-shadow
|
|
598
|
+
);
|
|
599
|
+
}
|
|
600
|
+
.amplify-button--primary--success:active {
|
|
601
|
+
--amplify-internal-button-background-color: var(
|
|
602
|
+
--amplify-components-button-primary-success-active-background-color
|
|
603
|
+
);
|
|
604
|
+
--amplify-internal-button-border-color: var(
|
|
605
|
+
--amplify-components-button-primary-success-active-border-color
|
|
606
|
+
);
|
|
607
|
+
--amplify-internal-button-color: var(
|
|
608
|
+
--amplify-components-button-primary-success-active-color
|
|
609
|
+
);
|
|
610
|
+
}
|
|
611
|
+
.amplify-button--primary--overlay {
|
|
612
|
+
--amplify-internal-button-background-color: var(
|
|
613
|
+
--amplify-components-button-primary-overlay-background-color
|
|
614
|
+
);
|
|
615
|
+
--amplify-internal-button-border-color: var(
|
|
616
|
+
--amplify-components-button-primary-overlay-border-color
|
|
617
|
+
);
|
|
618
|
+
--amplify-internal-button-color: var(
|
|
619
|
+
--amplify-components-button-primary-overlay-color
|
|
620
|
+
);
|
|
621
|
+
}
|
|
622
|
+
.amplify-button--primary--overlay:hover {
|
|
623
|
+
--amplify-internal-button-background-color: var(
|
|
624
|
+
--amplify-components-button-primary-overlay-hover-background-color
|
|
625
|
+
);
|
|
626
|
+
--amplify-internal-button-border-color: var(
|
|
627
|
+
--amplify-components-button-primary-overlay-hover-border-color
|
|
628
|
+
);
|
|
629
|
+
--amplify-internal-button-color: var(
|
|
630
|
+
--amplify-components-button-primary-overlay-hover-color
|
|
631
|
+
);
|
|
632
|
+
}
|
|
633
|
+
.amplify-button--primary--overlay:focus {
|
|
634
|
+
--amplify-internal-button-background-color: var(
|
|
635
|
+
--amplify-components-button-primary-overlay-focus-background-color
|
|
636
|
+
);
|
|
637
|
+
--amplify-internal-button-border-color: var(
|
|
638
|
+
--amplify-components-button-primary-overlay-focus-border-color
|
|
639
|
+
);
|
|
640
|
+
--amplify-internal-button-color: var(
|
|
641
|
+
--amplify-components-button-primary-overlay-focus-color
|
|
642
|
+
);
|
|
643
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
644
|
+
--amplify-components-button-primary-overlay-focus-box-shadow
|
|
645
|
+
);
|
|
646
|
+
}
|
|
647
|
+
.amplify-button--primary--overlay:active {
|
|
648
|
+
--amplify-internal-button-background-color: var(
|
|
649
|
+
--amplify-components-button-primary-overlay-active-background-color
|
|
650
|
+
);
|
|
651
|
+
--amplify-internal-button-border-color: var(
|
|
652
|
+
--amplify-components-button-primary-overlay-active-border-color
|
|
653
|
+
);
|
|
654
|
+
--amplify-internal-button-color: var(
|
|
655
|
+
--amplify-components-button-primary-overlay-active-color
|
|
656
|
+
);
|
|
657
|
+
}
|
|
658
|
+
.amplify-button--link {
|
|
659
|
+
--amplify-internal-button-border-width: var(
|
|
660
|
+
--amplify-components-button-link-border-width
|
|
661
|
+
);
|
|
662
|
+
--amplify-internal-button-background-color: var(
|
|
663
|
+
--amplify-components-button-link-background-color
|
|
664
|
+
);
|
|
665
|
+
--amplify-internal-button-border-color: var(
|
|
666
|
+
--amplify-components-button-link-border-color
|
|
667
|
+
);
|
|
668
|
+
--amplify-internal-button-color: var(
|
|
669
|
+
--amplify-components-button-link-color
|
|
670
|
+
);
|
|
671
|
+
--amplify-internal-button-disabled-border-color: var(
|
|
672
|
+
--amplify-components-button-link-disabled-border-color
|
|
673
|
+
);
|
|
674
|
+
--amplify-internal-button-disabled-background-color: var(
|
|
675
|
+
--amplify-components-button-link-disabled-background-color
|
|
676
|
+
);
|
|
677
|
+
--amplify-internal-button-disabled-color: var(
|
|
678
|
+
--amplify-components-button-link-disabled-color
|
|
679
|
+
);
|
|
680
|
+
--amplify-internal-button-loading-background-color: var(
|
|
681
|
+
--amplify-components-button-link-loading-background-color
|
|
682
|
+
);
|
|
683
|
+
--amplify-internal-button-loading-border-color: var(
|
|
684
|
+
--amplify-components-button-link-loading-border-color
|
|
685
|
+
);
|
|
686
|
+
--amplify-internal-button-loading-color: var(
|
|
687
|
+
--amplify-components-button-link-loading-color
|
|
688
|
+
);
|
|
689
|
+
}
|
|
690
|
+
.amplify-button--link:hover {
|
|
691
|
+
--amplify-internal-button-background-color: var(
|
|
692
|
+
--amplify-components-button-link-hover-background-color
|
|
693
|
+
);
|
|
694
|
+
--amplify-internal-button-border-color: var(
|
|
695
|
+
--amplify-components-button-link-hover-border-color
|
|
696
|
+
);
|
|
697
|
+
--amplify-internal-button-color: var(
|
|
698
|
+
--amplify-components-button-link-hover-color
|
|
699
|
+
);
|
|
700
|
+
}
|
|
701
|
+
.amplify-button--link:focus {
|
|
702
|
+
--amplify-internal-button-background-color: var(
|
|
703
|
+
--amplify-components-button-link-focus-background-color
|
|
704
|
+
);
|
|
705
|
+
--amplify-internal-button-border-color: var(
|
|
706
|
+
--amplify-components-button-link-focus-border-color
|
|
707
|
+
);
|
|
708
|
+
--amplify-internal-button-color: var(
|
|
709
|
+
--amplify-components-button-link-focus-color
|
|
710
|
+
);
|
|
711
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
712
|
+
--amplify-components-button-link-focus-box-shadow
|
|
713
|
+
);
|
|
714
|
+
}
|
|
715
|
+
.amplify-button--link:active {
|
|
716
|
+
--amplify-internal-button-background-color: var(
|
|
717
|
+
--amplify-components-button-link-active-background-color
|
|
718
|
+
);
|
|
719
|
+
--amplify-internal-button-border-color: var(
|
|
720
|
+
--amplify-components-button-link-active-border-color
|
|
721
|
+
);
|
|
722
|
+
--amplify-internal-button-color: var(
|
|
723
|
+
--amplify-components-button-link-active-color
|
|
724
|
+
);
|
|
725
|
+
}
|
|
726
|
+
.amplify-button--link--info {
|
|
727
|
+
--amplify-internal-button-background-color: var(
|
|
728
|
+
--amplify-components-button-link-info-background-color
|
|
729
|
+
);
|
|
730
|
+
--amplify-internal-button-border-color: var(
|
|
731
|
+
--amplify-components-button-link-info-border-color
|
|
732
|
+
);
|
|
733
|
+
--amplify-internal-button-color: var(
|
|
734
|
+
--amplify-components-button-link-info-color
|
|
735
|
+
);
|
|
736
|
+
}
|
|
737
|
+
.amplify-button--link--info:hover {
|
|
738
|
+
--amplify-internal-button-background-color: var(
|
|
739
|
+
--amplify-components-button-link-info-hover-background-color
|
|
740
|
+
);
|
|
741
|
+
--amplify-internal-button-border-color: var(
|
|
742
|
+
--amplify-components-button-link-info-hover-border-color
|
|
743
|
+
);
|
|
744
|
+
--amplify-internal-button-color: var(
|
|
745
|
+
--amplify-components-button-link-info-hover-color
|
|
746
|
+
);
|
|
747
|
+
}
|
|
748
|
+
.amplify-button--link--info:focus {
|
|
749
|
+
--amplify-internal-button-background-color: var(
|
|
750
|
+
--amplify-components-button-link-info-focus-background-color
|
|
751
|
+
);
|
|
752
|
+
--amplify-internal-button-border-color: var(
|
|
753
|
+
--amplify-components-button-link-info-focus-border-color
|
|
754
|
+
);
|
|
755
|
+
--amplify-internal-button-color: var(
|
|
756
|
+
--amplify-components-button-link-info-focus-color
|
|
757
|
+
);
|
|
758
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
759
|
+
--amplify-components-button-link-info-focus-box-shadow
|
|
760
|
+
);
|
|
761
|
+
}
|
|
762
|
+
.amplify-button--link--info:active {
|
|
763
|
+
--amplify-internal-button-background-color: var(
|
|
764
|
+
--amplify-components-button-link-info-active-background-color
|
|
765
|
+
);
|
|
766
|
+
--amplify-internal-button-border-color: var(
|
|
767
|
+
--amplify-components-button-link-info-active-border-color
|
|
768
|
+
);
|
|
769
|
+
--amplify-internal-button-color: var(
|
|
770
|
+
--amplify-components-button-link-info-active-color
|
|
771
|
+
);
|
|
772
|
+
}
|
|
773
|
+
.amplify-button--link--warning {
|
|
774
|
+
--amplify-internal-button-background-color: var(
|
|
775
|
+
--amplify-components-button-link-warning-background-color
|
|
776
|
+
);
|
|
777
|
+
--amplify-internal-button-border-color: var(
|
|
778
|
+
--amplify-components-button-link-warning-border-color
|
|
779
|
+
);
|
|
780
|
+
--amplify-internal-button-color: var(
|
|
781
|
+
--amplify-components-button-link-warning-color
|
|
782
|
+
);
|
|
783
|
+
}
|
|
784
|
+
.amplify-button--link--warning:hover {
|
|
785
|
+
--amplify-internal-button-background-color: var(
|
|
786
|
+
--amplify-components-button-link-warning-hover-background-color
|
|
787
|
+
);
|
|
788
|
+
--amplify-internal-button-border-color: var(
|
|
789
|
+
--amplify-components-button-link-warning-hover-border-color
|
|
790
|
+
);
|
|
791
|
+
--amplify-internal-button-color: var(
|
|
792
|
+
--amplify-components-button-link-warning-hover-color
|
|
793
|
+
);
|
|
794
|
+
}
|
|
795
|
+
.amplify-button--link--warning:focus {
|
|
796
|
+
--amplify-internal-button-background-color: var(
|
|
797
|
+
--amplify-components-button-link-warning-focus-background-color
|
|
798
|
+
);
|
|
799
|
+
--amplify-internal-button-border-color: var(
|
|
800
|
+
--amplify-components-button-link-warning-focus-border-color
|
|
801
|
+
);
|
|
802
|
+
--amplify-internal-button-color: var(
|
|
803
|
+
--amplify-components-button-link-warning-focus-color
|
|
804
|
+
);
|
|
805
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
806
|
+
--amplify-components-button-link-warning-focus-box-shadow
|
|
807
|
+
);
|
|
808
|
+
}
|
|
809
|
+
.amplify-button--link--warning:active {
|
|
810
|
+
--amplify-internal-button-background-color: var(
|
|
811
|
+
--amplify-components-button-link-warning-active-background-color
|
|
812
|
+
);
|
|
813
|
+
--amplify-internal-button-border-color: var(
|
|
814
|
+
--amplify-components-button-link-warning-active-border-color
|
|
815
|
+
);
|
|
816
|
+
--amplify-internal-button-color: var(
|
|
817
|
+
--amplify-components-button-link-warning-active-color
|
|
818
|
+
);
|
|
819
|
+
}
|
|
820
|
+
.amplify-button--link--error {
|
|
821
|
+
--amplify-internal-button-background-color: var(
|
|
822
|
+
--amplify-components-button-link-error-background-color
|
|
823
|
+
);
|
|
824
|
+
--amplify-internal-button-border-color: var(
|
|
825
|
+
--amplify-components-button-link-error-border-color
|
|
826
|
+
);
|
|
827
|
+
--amplify-internal-button-color: var(
|
|
828
|
+
--amplify-components-button-link-error-color
|
|
829
|
+
);
|
|
830
|
+
}
|
|
831
|
+
.amplify-button--link--error:hover {
|
|
832
|
+
--amplify-internal-button-background-color: var(
|
|
833
|
+
--amplify-components-button-link-error-hover-background-color
|
|
834
|
+
);
|
|
835
|
+
--amplify-internal-button-border-color: var(
|
|
836
|
+
--amplify-components-button-link-error-hover-border-color
|
|
837
|
+
);
|
|
838
|
+
--amplify-internal-button-color: var(
|
|
839
|
+
--amplify-components-button-link-error-hover-color
|
|
840
|
+
);
|
|
841
|
+
}
|
|
842
|
+
.amplify-button--link--error:focus {
|
|
843
|
+
--amplify-internal-button-background-color: var(
|
|
844
|
+
--amplify-components-button-link-error-focus-background-color
|
|
845
|
+
);
|
|
846
|
+
--amplify-internal-button-border-color: var(
|
|
847
|
+
--amplify-components-button-link-error-focus-border-color
|
|
848
|
+
);
|
|
849
|
+
--amplify-internal-button-color: var(
|
|
850
|
+
--amplify-components-button-link-error-focus-color
|
|
851
|
+
);
|
|
852
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
853
|
+
--amplify-components-button-link-error-focus-box-shadow
|
|
854
|
+
);
|
|
855
|
+
}
|
|
856
|
+
.amplify-button--link--error:active {
|
|
857
|
+
--amplify-internal-button-background-color: var(
|
|
858
|
+
--amplify-components-button-link-error-active-background-color
|
|
859
|
+
);
|
|
860
|
+
--amplify-internal-button-border-color: var(
|
|
861
|
+
--amplify-components-button-link-error-active-border-color
|
|
862
|
+
);
|
|
863
|
+
--amplify-internal-button-color: var(
|
|
864
|
+
--amplify-components-button-link-error-active-color
|
|
865
|
+
);
|
|
866
|
+
}
|
|
867
|
+
.amplify-button--link--success {
|
|
868
|
+
--amplify-internal-button-background-color: var(
|
|
869
|
+
--amplify-components-button-link-success-background-color
|
|
870
|
+
);
|
|
871
|
+
--amplify-internal-button-border-color: var(
|
|
872
|
+
--amplify-components-button-link-success-border-color
|
|
873
|
+
);
|
|
874
|
+
--amplify-internal-button-color: var(
|
|
875
|
+
--amplify-components-button-link-success-color
|
|
876
|
+
);
|
|
877
|
+
}
|
|
878
|
+
.amplify-button--link--success:hover {
|
|
879
|
+
--amplify-internal-button-background-color: var(
|
|
880
|
+
--amplify-components-button-link-success-hover-background-color
|
|
881
|
+
);
|
|
882
|
+
--amplify-internal-button-border-color: var(
|
|
883
|
+
--amplify-components-button-link-success-hover-border-color
|
|
884
|
+
);
|
|
885
|
+
--amplify-internal-button-color: var(
|
|
886
|
+
--amplify-components-button-link-success-hover-color
|
|
887
|
+
);
|
|
888
|
+
}
|
|
889
|
+
.amplify-button--link--success:focus {
|
|
890
|
+
--amplify-internal-button-background-color: var(
|
|
891
|
+
--amplify-components-button-link-success-focus-background-color
|
|
892
|
+
);
|
|
893
|
+
--amplify-internal-button-border-color: var(
|
|
894
|
+
--amplify-components-button-link-success-focus-border-color
|
|
895
|
+
);
|
|
896
|
+
--amplify-internal-button-color: var(
|
|
897
|
+
--amplify-components-button-link-success-focus-color
|
|
898
|
+
);
|
|
899
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
900
|
+
--amplify-components-button-link-success-focus-box-shadow
|
|
901
|
+
);
|
|
902
|
+
}
|
|
903
|
+
.amplify-button--link--success:active {
|
|
904
|
+
--amplify-internal-button-background-color: var(
|
|
905
|
+
--amplify-components-button-link-success-active-background-color
|
|
906
|
+
);
|
|
907
|
+
--amplify-internal-button-border-color: var(
|
|
908
|
+
--amplify-components-button-link-success-active-border-color
|
|
909
|
+
);
|
|
910
|
+
--amplify-internal-button-color: var(
|
|
911
|
+
--amplify-components-button-link-success-active-color
|
|
912
|
+
);
|
|
913
|
+
}
|
|
914
|
+
.amplify-button--link--overlay {
|
|
915
|
+
--amplify-internal-button-background-color: var(
|
|
916
|
+
--amplify-components-button-link-overlay-background-color
|
|
917
|
+
);
|
|
918
|
+
--amplify-internal-button-border-color: var(
|
|
919
|
+
--amplify-components-button-link-overlay-border-color
|
|
920
|
+
);
|
|
921
|
+
--amplify-internal-button-color: var(
|
|
922
|
+
--amplify-components-button-link-overlay-color
|
|
923
|
+
);
|
|
924
|
+
}
|
|
925
|
+
.amplify-button--link--overlay:hover {
|
|
926
|
+
--amplify-internal-button-background-color: var(
|
|
927
|
+
--amplify-components-button-link-overlay-hover-background-color
|
|
928
|
+
);
|
|
929
|
+
--amplify-internal-button-border-color: var(
|
|
930
|
+
--amplify-components-button-link-overlay-hover-border-color
|
|
931
|
+
);
|
|
932
|
+
--amplify-internal-button-color: var(
|
|
933
|
+
--amplify-components-button-link-overlay-hover-color
|
|
934
|
+
);
|
|
935
|
+
}
|
|
936
|
+
.amplify-button--link--overlay:focus {
|
|
937
|
+
--amplify-internal-button-background-color: var(
|
|
938
|
+
--amplify-components-button-link-overlay-focus-background-color
|
|
939
|
+
);
|
|
940
|
+
--amplify-internal-button-border-color: var(
|
|
941
|
+
--amplify-components-button-link-overlay-focus-border-color
|
|
942
|
+
);
|
|
943
|
+
--amplify-internal-button-color: var(
|
|
944
|
+
--amplify-components-button-link-overlay-focus-color
|
|
945
|
+
);
|
|
946
|
+
--amplify-internal-button-focus-box-shadow: var(
|
|
947
|
+
--amplify-components-button-link-overlay-focus-box-shadow
|
|
948
|
+
);
|
|
949
|
+
}
|
|
950
|
+
.amplify-button--link--overlay:active {
|
|
951
|
+
--amplify-internal-button-background-color: var(
|
|
952
|
+
--amplify-components-button-link-overlay-active-background-color
|
|
953
|
+
);
|
|
954
|
+
--amplify-internal-button-border-color: var(
|
|
955
|
+
--amplify-components-button-link-overlay-active-border-color
|
|
956
|
+
);
|
|
957
|
+
--amplify-internal-button-color: var(
|
|
958
|
+
--amplify-components-button-link-overlay-active-color
|
|
959
|
+
);
|
|
960
|
+
}
|
|
961
|
+
.amplify-button--destructive {
|
|
962
|
+
border-width: var(--amplify-components-button-destructive-border-width);
|
|
963
|
+
background-color: var(--amplify-components-button-destructive-background-color);
|
|
964
|
+
border-color: var(--amplify-components-button-destructive-border-color);
|
|
965
|
+
color: var(--amplify-components-button-destructive-color);
|
|
966
|
+
--amplify-internal-button-disabled-border-color: var(
|
|
967
|
+
--amplify-components-button-destructive-disabled-border-color
|
|
968
|
+
);
|
|
969
|
+
--amplify-internal-button-disabled-background-color: var(
|
|
970
|
+
--amplify-components-button-destructive-disabled-background-color
|
|
971
|
+
);
|
|
972
|
+
--amplify-internal-button-disabled-color: var(
|
|
973
|
+
--amplify-components-button-destructive-disabled-color
|
|
974
|
+
);
|
|
975
|
+
--amplify-internal-button-loading-background-color: var(
|
|
976
|
+
--amplify-components-button-destructive-loading-background-color
|
|
977
|
+
);
|
|
978
|
+
--amplify-internal-button-loading-border-color: var(
|
|
979
|
+
--amplify-components-button-destructive-loading-border-color
|
|
980
|
+
);
|
|
981
|
+
--amplify-internal-button-loading-color: var(
|
|
982
|
+
--amplify-components-button-destructive-loading-color
|
|
983
|
+
);
|
|
984
|
+
}
|
|
985
|
+
.amplify-button--destructive:hover {
|
|
986
|
+
background-color: var(--amplify-components-button-destructive-hover-background-color);
|
|
987
|
+
border-color: var(--amplify-components-button-destructive-hover-border-color);
|
|
988
|
+
color: var(--amplify-components-button-destructive-hover-color);
|
|
989
|
+
}
|
|
990
|
+
.amplify-button--destructive:focus {
|
|
991
|
+
background-color: var(--amplify-components-button-destructive-focus-background-color);
|
|
992
|
+
border-color: var(--amplify-components-button-destructive-focus-border-color);
|
|
993
|
+
color: var(--amplify-components-button-destructive-focus-color);
|
|
994
|
+
box-shadow: var(--amplify-components-button-destructive-focus-box-shadow);
|
|
995
|
+
}
|
|
996
|
+
.amplify-button--destructive:active {
|
|
997
|
+
background-color: var(--amplify-components-button-destructive-active-background-color);
|
|
998
|
+
border-color: var(--amplify-components-button-destructive-active-border-color);
|
|
999
|
+
color: var(--amplify-components-button-destructive-active-color);
|
|
1000
|
+
}
|
|
1001
|
+
.amplify-button--warning {
|
|
1002
|
+
background-color: var(--amplify-components-button-warning-background-color);
|
|
1003
|
+
border-color: var(--amplify-components-button-warning-border-color);
|
|
1004
|
+
border-width: var(--amplify-components-button-warning-border-width);
|
|
1005
|
+
color: var(--amplify-components-button-warning-color);
|
|
1006
|
+
--amplify-internal-button-disabled-text-decoration: none;
|
|
1007
|
+
--amplify-internal-button-disabled-border-color: var(
|
|
1008
|
+
--amplify-components-button-warning-disabled-border-color
|
|
1009
|
+
);
|
|
1010
|
+
--amplify-internal-button-disabled-background-color: var(
|
|
1011
|
+
--amplify-components-button-warning-disabled-background-color
|
|
1012
|
+
);
|
|
1013
|
+
--amplify-internal-button-disabled-color: var(
|
|
1014
|
+
--amplify-components-button-warning-disabled-color
|
|
1015
|
+
);
|
|
1016
|
+
--amplify-internal-button-loading-background-color: var(
|
|
1017
|
+
--amplify-components-button-warning-loading-background-color
|
|
1018
|
+
);
|
|
1019
|
+
--amplify-internal-button-loading-border-color: var(
|
|
1020
|
+
--amplify-components-button-warning-loading-border-color
|
|
1021
|
+
);
|
|
1022
|
+
--amplify-internal-button-loading-color: var(
|
|
1023
|
+
--amplify-components-button-warning-loading-color
|
|
1024
|
+
);
|
|
1025
|
+
--amplify-internal-button-loading-text-decoration: none;
|
|
1026
|
+
}
|
|
1027
|
+
.amplify-button--warning:hover {
|
|
1028
|
+
background-color: var(--amplify-components-button-warning-hover-background-color);
|
|
1029
|
+
border-color: var(--amplify-components-button-warning-hover-border-color);
|
|
1030
|
+
color: var(--amplify-components-button-warning-hover-color);
|
|
1031
|
+
}
|
|
1032
|
+
.amplify-button--warning:focus {
|
|
1033
|
+
background-color: var(--amplify-components-button-warning-focus-background-color);
|
|
1034
|
+
border-color: var(--amplify-components-button-warning-focus-border-color);
|
|
1035
|
+
color: var(--amplify-components-button-warning-focus-color);
|
|
1036
|
+
box-shadow: var(--amplify-components-button-warning-focus-box-shadow);
|
|
1037
|
+
}
|
|
1038
|
+
.amplify-button--warning:active {
|
|
1039
|
+
background-color: var(--amplify-components-button-warning-active-background-color);
|
|
1040
|
+
border-color: var(--amplify-components-button-warning-active-border-color);
|
|
1041
|
+
color: var(--amplify-components-button-warning-active-color);
|
|
1042
|
+
}
|
|
1043
|
+
.amplify-button--small {
|
|
1044
|
+
font-size: var(--amplify-components-button-small-font-size);
|
|
1045
|
+
padding-block-start: var(--amplify-components-button-small-padding-block-start);
|
|
1046
|
+
padding-block-end: var(--amplify-components-button-small-padding-block-end);
|
|
1047
|
+
padding-inline-start: var(--amplify-components-button-small-padding-inline-start);
|
|
1048
|
+
padding-inline-end: var(--amplify-components-button-small-padding-inline-end);
|
|
1049
|
+
}
|
|
1050
|
+
.amplify-button--large {
|
|
1051
|
+
font-size: var(--amplify-components-button-large-font-size);
|
|
1052
|
+
padding-block-start: var(--amplify-components-button-large-padding-block-start);
|
|
1053
|
+
padding-block-end: var(--amplify-components-button-large-padding-block-end);
|
|
1054
|
+
padding-inline-start: var(--amplify-components-button-large-padding-inline-start);
|
|
1055
|
+
padding-inline-end: var(--amplify-components-button-large-padding-inline-end);
|
|
1056
|
+
}
|
|
1057
|
+
.amplify-button--disabled {
|
|
1058
|
+
background-color: var(--amplify-internal-button-disabled-background-color);
|
|
1059
|
+
border-color: var(--amplify-internal-button-disabled-border-color);
|
|
1060
|
+
color: var(--amplify-internal-button-disabled-color);
|
|
1061
|
+
-webkit-text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1062
|
+
text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1063
|
+
cursor: not-allowed;
|
|
1064
|
+
}
|
|
1065
|
+
.amplify-button--disabled:hover {
|
|
1066
|
+
background-color: var(--amplify-internal-button-disabled-background-color);
|
|
1067
|
+
border-color: var(--amplify-internal-button-disabled-border-color);
|
|
1068
|
+
color: var(--amplify-internal-button-disabled-color);
|
|
1069
|
+
-webkit-text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1070
|
+
text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1071
|
+
}
|
|
1072
|
+
.amplify-button--disabled :focus {
|
|
1073
|
+
background-color: var(--amplify-internal-button-disabled-background-color);
|
|
1074
|
+
border-color: var(--amplify-internal-button-disabled-border-color);
|
|
1075
|
+
color: var(--amplify-internal-button-disabled-color);
|
|
1076
|
+
-webkit-text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1077
|
+
text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1078
|
+
}
|
|
1079
|
+
.amplify-button--disabled:active {
|
|
1080
|
+
background-color: var(--amplify-internal-button-disabled-background-color);
|
|
1081
|
+
border-color: var(--amplify-internal-button-disabled-border-color);
|
|
1082
|
+
color: var(--amplify-internal-button-disabled-color);
|
|
1083
|
+
-webkit-text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1084
|
+
text-decoration: var(--amplify-internal-button-disabled-text-decoration);
|
|
1085
|
+
}
|
|
1086
|
+
.amplify-button--loading {
|
|
1087
|
+
background-color: var(--amplify-internal-button-loading-background-color);
|
|
1088
|
+
border-color: var(--amplify-internal-button-loading-border-color);
|
|
1089
|
+
color: var(--amplify-components-button-loading-color);
|
|
1090
|
+
-webkit-text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1091
|
+
text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1092
|
+
}
|
|
1093
|
+
.amplify-button--loading:hover {
|
|
1094
|
+
background-color: var(--amplify-internal-button-loading-background-color);
|
|
1095
|
+
border-color: var(--amplify-internal-button-loading-border-color);
|
|
1096
|
+
color: var(--amplify-components-button-loading-color);
|
|
1097
|
+
-webkit-text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1098
|
+
text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1099
|
+
}
|
|
1100
|
+
.amplify-button--loading:focus {
|
|
1101
|
+
background-color: var(--amplify-internal-button-loading-background-color);
|
|
1102
|
+
border-color: var(--amplify-internal-button-loading-border-color);
|
|
1103
|
+
color: var(--amplify-components-button-loading-color);
|
|
1104
|
+
-webkit-text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1105
|
+
text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1106
|
+
}
|
|
1107
|
+
.amplify-button--loading:active {
|
|
1108
|
+
background-color: var(--amplify-internal-button-loading-background-color);
|
|
1109
|
+
border-color: var(--amplify-internal-button-loading-border-color);
|
|
1110
|
+
color: var(--amplify-components-button-loading-color);
|
|
1111
|
+
-webkit-text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1112
|
+
text-decoration: var(--amplify-internal-button-loading-text-decoration);
|
|
1113
|
+
}
|
|
1114
|
+
.amplify-button__loader-wrapper {
|
|
1115
|
+
align-items: var(--amplify-components-button-loader-wrapper-align-items);
|
|
1116
|
+
gap: var(--amplify-components-button-loader-wrapper-gap);
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1120
|
+
.amplify-button {
|
|
1121
|
+
transition: none;
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
}
|