├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ └── run-tests.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── _tags.scss ├── demo-bs4.html ├── demo-custom.json ├── demo-single.json ├── demo-standalone.html ├── demo-two.json ├── demo.html ├── demo.json ├── jsconfig.json ├── package.json ├── readme.md ├── screenshot.png ├── tags-pure.css ├── tags-pure.min.css ├── tags-pure.scss ├── tags-standalone.css ├── tags-standalone.min.css ├── tags-standalone.scss ├── tags.js ├── tags.min.js ├── tags.min.js.map ├── test ├── _setup-browser-env.js └── tags.test.js └── types └── tags.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dartsass.disableSourceMap": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/LICENSE -------------------------------------------------------------------------------- /_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/_tags.scss -------------------------------------------------------------------------------- /demo-bs4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/demo-bs4.html -------------------------------------------------------------------------------- /demo-custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/demo-custom.json -------------------------------------------------------------------------------- /demo-single.json: -------------------------------------------------------------------------------- 1 | [{ "value": 17049, "label": "American Apologist" }] 2 | -------------------------------------------------------------------------------- /demo-standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/demo-standalone.html -------------------------------------------------------------------------------- /demo-two.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/demo-two.json -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/demo.html -------------------------------------------------------------------------------- /demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/demo.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/screenshot.png -------------------------------------------------------------------------------- /tags-pure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags-pure.css -------------------------------------------------------------------------------- /tags-pure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags-pure.min.css -------------------------------------------------------------------------------- /tags-pure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags-pure.scss -------------------------------------------------------------------------------- /tags-standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags-standalone.css -------------------------------------------------------------------------------- /tags-standalone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags-standalone.min.css -------------------------------------------------------------------------------- /tags-standalone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags-standalone.scss -------------------------------------------------------------------------------- /tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags.js -------------------------------------------------------------------------------- /tags.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags.min.js -------------------------------------------------------------------------------- /tags.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/tags.min.js.map -------------------------------------------------------------------------------- /test/_setup-browser-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/test/_setup-browser-env.js -------------------------------------------------------------------------------- /test/tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/test/tags.test.js -------------------------------------------------------------------------------- /types/tags.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekoala/bootstrap5-tags/HEAD/types/tags.d.ts --------------------------------------------------------------------------------