Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@paprika/dropdown-menu
Advanced tools
DropdownMenu component displays a trigger button, which when clicked displays a list of items in a dropdown format. These items can be raw content, Links or actions such as Delete, which will prompt a confirmation panel to be displayed.
DropdownMenu component displays a trigger button, which when clicked displays a list of items in a dropdown format. These items can be raw content, Links or actions such as Delete, which will prompt a confirmation panel to be displayed.
yarn add @paprika/dropdown-menu
or with npm:
npm install @paprika/dropdown-menu
Prop | Type | required | default | Description |
---|---|---|---|---|
align | AlignTypes.ALL | false | AlignTypes.BOTTOM | Alignment of the dropdown menu |
children | node | true | - | Children should consist of <Dropdown.Item /> |
edge | [object Object],[object Object],[object Object] | false | AlignTypes.LEFT | Sets the alignment of the dropdown menu based on the edge of the trigger button |
Prop | Type | required | default | Description |
---|---|---|---|---|
children | node | true | - | HTML for each item |
isDestructive | bool | false | false | If the item is destructive. |
onClick | func | false | () => {} | Callback to be executed when button is clicked |
onKeyDown | func | false | () => {} | Callback to be executed when key is pressed |
onClose | func | false | () => {} | Callback to be executed when dropdown needs to be closed |
onShowConfirmation | func | false | () => {} | Callback to be executed when delete item is clicked |
renderConfirmation | func | false | null | Render prop to render the replacement node |
Prop | Type | required | default | Description |
---|---|---|---|---|
children | node | true | - | HTML for each LinkItem |
link | string | true | - | The url for the href |
onKeyDown | func | false | () => {} | Callback to be executed when key is pressed |
isExternal | bool | false | false | Should the link open content in a new tab |
Prop | Type | required | default | Description |
---|---|---|---|---|
children | node | false | null | |
buttonType | ButtonTypes.ALL | false | "simple" | Determine the styling of the button |
isOpen | bool | false | false | |
menuRefId | string | false | "" | |
onOpenMenu | func | false | () => {} | |
triggerRef | custom | false | null |
import DropdownMenu from "@paprika/dropdown-menu";
import Confirmation from "@paprika/confirmation";
<DropdownMenu>
<DropdownMenu.Trigger>Trigger</DropdownMenu.Trigger>
<DropdownMenu.Item onClick={() => {}}>Edit</DropdownMenu.Item>
<DropdownMenu.LinkItem isExternal link="http://www.wegalvanize.com">
External link
</DropdownMenu.LinkItem>
<DropdownMenu.Item isDisabled onClick={() => {}}>
Disabled Item
</DropdownMenu.Item>
<DropdownMenu.Divider />
<DropdownMenu.Item
isDestructive
renderConfirmation={onCloseMenu => {
return (
<Confirmation
body="Lorem ipsum dolor amet vexillologist tacos selvage narwhal butcher twee ethical hot chicken."
confirmLabel="Delete filter"
defaultIsOpen
heading="Delete filter?"
onConfirm={handleConfirm}
onClose={handleCloseConfirm(onCloseMenu)}
/>
);
}}
>
Delete filter
</DropdownMenu.Item>
</DropdownMenu>;
FAQs
DEPRECATED - DropdownMenu component displays a trigger button, which when clicked displays a list of items in a dropdown menu format. These items can be raw content, Links or actions such as Delete, which will prompt a confirmation panel to be displayed.
The npm package @paprika/dropdown-menu receives a total of 253 weekly downloads. As such, @paprika/dropdown-menu popularity was classified as not popular.
We found that @paprika/dropdown-menu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.