diff --git a/.changeset/fix-dropdownDocsStorybook.md b/.changeset/fix-dropdownDocsStorybook.md new file mode 100644 index 000000000..d4d35c223 --- /dev/null +++ b/.changeset/fix-dropdownDocsStorybook.md @@ -0,0 +1,5 @@ +--- +'react-magma-docs': patch +--- + +fix(Dropdown): Removing Dropdown password examples from docs and Storybook in lieu of future fix to UI bug pertaining to the show / hide button. diff --git a/packages/react-magma-dom/src/components/Dropdown/Dropdown.stories.tsx b/packages/react-magma-dom/src/components/Dropdown/Dropdown.stories.tsx index facc7425a..c2956fbb6 100644 --- a/packages/react-magma-dom/src/components/Dropdown/Dropdown.stories.tsx +++ b/packages/react-magma-dom/src/components/Dropdown/Dropdown.stories.tsx @@ -320,33 +320,6 @@ const LinkMenuTemplate: Story = args => ( export const LinkMenu = LinkMenuTemplate.bind({}); LinkMenu.args = { ...Default.args }; -const FormTemplate: Story = args => ( -
- - Dropdown with form - -
- - - -
-

- By signing in, you agree to our Terms of use. -

- -

- Forgot password? -

-
- -
-
-
-); - -export const Form = FormTemplate.bind({}); -Form.args = { ...Default.args }; - export const Inverse = HeaderIconTemplate.bind({}); Inverse.args = { ...Default.args, diff --git a/website/react-magma-docs/src/pages/api/dropdown.mdx b/website/react-magma-docs/src/pages/api/dropdown.mdx index 51ab755cf..e7b1c0b3f 100644 --- a/website/react-magma-docs/src/pages/api/dropdown.mdx +++ b/website/react-magma-docs/src/pages/api/dropdown.mdx @@ -648,56 +648,6 @@ Dropdowns can contain elements other than `DropdownMenuItem` components. They ca While users may navigate between `DropdownMenuItem` components using up and down arrow keys, browser default keyboard behavior applies to other content. -### Dropdown with Form - -```tsx -import React from 'react'; -import { - Button, - Dropdown, - DropdownButton, - DropdownContent, - DropdownDivider, - Input, - InputType, - magma, - PasswordInput, -} from 'react-magma-dom'; - -export function Example() { - return ( - - Dropdown with Login Form - -
- - -
-

- By signing in, you agree to our Terms of use. -

- -

- Forgot password? -

-
- - -
-

- Don't have an account? -
- Register today! -

-
-
-
- ); -} -``` - ### Dropdown with Filter ```tsx