├── src ├── docs │ ├── themes │ │ └── creativebulma │ │ │ ├── layouts │ │ │ ├── _default │ │ │ │ ├── list.html │ │ │ │ ├── _markup │ │ │ │ │ └── render-link.html │ │ │ │ ├── baseof.html │ │ │ │ └── single.html │ │ │ ├── partials │ │ │ │ ├── header.html │ │ │ │ ├── footer.html │ │ │ │ ├── head.html │ │ │ │ ├── navbar.html │ │ │ │ └── menu.html │ │ │ ├── shortcodes │ │ │ │ ├── notification.html │ │ │ │ ├── changelog.html │ │ │ │ ├── link.html │ │ │ │ ├── tab.html │ │ │ │ ├── button.html │ │ │ │ ├── variables.html │ │ │ │ ├── table.html │ │ │ │ ├── options.html │ │ │ │ ├── tabs.html │ │ │ │ ├── preview.html │ │ │ │ ├── tag.html │ │ │ │ └── api.html │ │ │ ├── index.html │ │ │ └── 404.html │ │ │ ├── archetypes │ │ │ ├── default.md │ │ │ └── changelog.md │ │ │ ├── static │ │ │ ├── images │ │ │ │ └── clippy.svg │ │ │ ├── js │ │ │ │ ├── docs.js │ │ │ │ └── clipboard.min.js │ │ │ └── css │ │ │ │ └── docs.css │ │ │ ├── theme.toml │ │ │ └── LICENSE │ ├── archetypes │ │ └── default.md │ ├── data │ │ ├── versions.json │ │ ├── social.json │ │ ├── variables.json │ │ ├── events.json │ │ └── options.json │ ├── content │ │ ├── changelog.md │ │ ├── release │ │ │ ├── 1.0.1.md │ │ │ ├── 1.md │ │ │ └── 1.0.2.md │ │ ├── _index.md │ │ ├── how-to │ │ │ └── customize.md │ │ └── get-started │ │ │ ├── installation.md │ │ │ ├── javascript-api.md │ │ │ └── usage.md │ ├── layouts │ │ └── partials │ │ │ ├── footer.html │ │ │ └── head.html │ ├── config.toml │ └── static │ │ └── css │ │ └── bulma-tagsinput.min.css ├── js │ ├── utils │ │ ├── uuid.js │ │ ├── type.js │ │ ├── dom.js │ │ ├── component.js │ │ └── events.js │ ├── templates │ │ ├── dropdown-item.js │ │ ├── tag.js │ │ └── wrapper.js │ └── defaultOptions.js └── sass │ └── index.sass ├── .gitignore ├── docs ├── images │ └── clippy.svg ├── tags │ └── index.xml ├── categories │ └── index.xml ├── 404.html ├── how-to │ ├── index.xml │ └── customize │ │ └── index.html ├── release │ ├── 1 │ │ └── index.html │ ├── index.xml │ ├── 1.0.1 │ │ └── index.html │ └── 1.0.2 │ │ └── index.html ├── sitemap.xml ├── js │ ├── docs.js │ └── clipboard.min.js ├── get-started │ └── index.xml ├── css │ ├── bulma-tagsinput.min.css │ └── docs.css ├── index.xml ├── index.html └── changelog │ └── index.html ├── .eslintrc ├── babel.config.js ├── webpack.config.js ├── LICENSE ├── README.md ├── package.json ├── dist └── css │ └── bulma-tagsinput.min.css └── gulpfile.js /src/docs/themes/creativebulma/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/docs/themes/creativebulma/layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | package-lock.json 3 | 4 | node_modules 5 | -------------------------------------------------------------------------------- /src/docs/themes/creativebulma/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /src/docs/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /src/docs/data/versions.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "version": "v1.0", 4 | "url": "https://demo.creativebulma.net/components/tagsinput/1.0/" 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /src/docs/content/changelog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Changelog" 3 | date: "2020-05-02" 4 | menu: "main" 5 | weight: 100 6 | draft: false 7 | --- 8 | 9 | # Changelog 10 | 11 | {{< changelog >}} 12 | -------------------------------------------------------------------------------- /src/docs/data/social.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "github", 4 | "title" : "Github repository", 5 | "url": "https://github.com/CreativeBulma/bulma-tagsinput" 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /src/js/utils/uuid.js: -------------------------------------------------------------------------------- 1 | export default (prefix = '') => prefix + ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c => (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)); -------------------------------------------------------------------------------- /src/docs/themes/creativebulma/layouts/shortcodes/notification.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |