# @levinelito/bulma-option-list

> List of selectable options styled with Bulma CSS

Latest version **0.0.5** (published 2022-02-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install @levinelito/bulma-option-list
pnpm add @levinelito/bulma-option-list
yarn add @levinelito/bulma-option-list
bun add @levinelito/bulma-option-list
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2022-02-25 |
| First published | 2022-01-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 29.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Levine Lito |
| Maintainers | levinelito |
| Keywords | Bulma, Client Side, Option List |

## Links

- npm: https://www.npmjs.com/package/@levinelito/bulma-option-list
- npm.io page: https://npm.io/package/@levinelito/bulma-option-list

## Dependencies (1)

- [@levinelito/create-html-element](https://npm.io/package/@levinelito/create-html-element.md) ^1.0.1

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 0.0.5 (latest) — 2022-02-25
- 0.0.4 — 2022-02-08
- 0.0.3 — 2022-02-08
- 0.0.2 — 2022-02-08
- 0.0.1 — 2022-01-19

## README

# Bulma Option Menu
Create interactable lists to select options.  
Press the plus (+) button in the options on the left to select it, and press the minus (-) button in the options on the right to deselect it.

## Usage
_Make sure to include Bulma's CSS and Font Awesome to make sure it works properly_
``` HTML
...
<head>
    ...
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
    ...
</head>
<body>
    ...
    <!-- Font Awesome Kit -->
    <script src="https://kit.fontawesome.com/Your-Kit-Name.js" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/@levinelito/bulma-option-list"></script>
    ...
</body>
...
```

### Using input to contain the data
``` javascript
const OptionMenu = new OptionMenu.List({
    target: 'input',
    data: {added: ['Option A', 'Option B', 'Option C'], available: ['Option D', 'Option E', 'Option F', 'Option G']},
});
```

---
_Source: https://npm.io/package/@levinelito/bulma-option-list · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
