Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crabvk/bulma-tagsfield
Multi-line tags input control (Bulma extension)
https://github.com/crabvk/bulma-tagsfield
bulma tags tagsfield tagsinput
Last synced: 2 months ago
JSON representation
Multi-line tags input control (Bulma extension)
- Host: GitHub
- URL: https://github.com/crabvk/bulma-tagsfield
- Owner: crabvk
- License: mit
- Created: 2020-06-14T17:28:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-09T20:05:22.000Z (over 2 years ago)
- Last Synced: 2024-09-27T19:41:05.706Z (3 months ago)
- Topics: bulma, tags, tagsfield, tagsinput
- Language: JavaScript
- Homepage: https://crabvk.github.io/bulma-tagsfield/
- Size: 300 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bulma - bulma-tagsfield - Multi-line tags input control (Extensions / Courses)
README
# Tagsfield - multi-line tags input control
[Bulma](https://bulma.io/) extension based on `span[contenteditable]` and styles of [field](https://github.com/jgthms/bulma/blob/0.9.0/sass/form/tools.sass#L32) and [input](https://bulma.io/documentation/form/input).
Demo https://crabvk.github.io/bulma-tagsfield/
## Install
```shell
npm install bulma-tagsfield
```## Import
```js
import Tagsfield from 'bulma-tagsfield'document.querySelectorAll('.tagsfield').forEach(el => new Tagsfield(el))
```