Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@crave/farmblocks-dropdown
Advanced tools
Simple dropdown component. See [examples](https://cravefood.github.io/farmblocks/index.html?selectedKind=Dropdown) on storybook
Simple dropdown component. See examples on storybook
npm install @crave/farmblocks-dropdown
import React, { Component } from 'react';
import { render } from 'react-dom';
import {Dropdown, DropdownItem} from '@crave/farmblocks-dropdown';
class App extends Component {
render() {
return (
<Dropdown text='Select fruit'
align='left'
handleSelection={(value, event) => console.log('handle selection', value)}>
<DropdownItem value={1}>Banana</DropdownItem>
<DropdownItem value={2}>Apple</DropdownItem>
<DropdownItem value={3}>Strawberry</DropdownItem>
</Dropdown>
);
}
}
render(<App />, document.getElementById('root'));
This code will render:
Property | Description | Type | Required | Default |
---|---|---|---|---|
children | Pass children of DropdownItem instances | node | x | |
text | The dropdown label. Renders only the icon if this property is empty | string | '' | |
handleSelection | Function to handle selection of a DropdownItem. The first argument is the value, the second is the event | function | () => false | |
align | Align of dropdown items container | oneof(['left', 'right']) | left | |
zIndex | z-index passed to the dropdown items container | number | ||
width | Custom dropdown items container width | string | ||
size | One of the constants in buttonSizes from farmblocks-button package. For convenience, buttonSizes is also exported on this package | string | buttonSizes.MEDIUM | |
buttonProps | Props to be forwarded to the button trigger | Object |
Property | Description | Type | Required | Default |
---|---|---|---|---|
children | content to be rendered as the item text | node | ||
text | This property is rendered as children of the item component. If passed, it suppress the children property | string | ||
value | Option value. This property will be passed as the first argument on handleSelection property from Dropdown component | string or number | ||
footer | Flag to use on a last item to behave like a footer, without hover color and regular cursor | false |
MIT
FAQs
Simple dropdown component. See [examples](https://cravefood.github.io/farmblocks/index.html?selectedKind=Dropdown) on storybook
The npm package @crave/farmblocks-dropdown receives a total of 11 weekly downloads. As such, @crave/farmblocks-dropdown popularity was classified as not popular.
We found that @crave/farmblocks-dropdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.