bulmil
Version:

24 lines (20 loc) • 1.04 kB
JavaScript
import { r as registerInstance, h } from './index-75c52ae9.js';
const tagsCss = "bm-tags bm-tag:not(:last-child) .tag{margin-right:0.5rem}bm-tags:last-child{margin-bottom:-0.5rem}bm-tags:not(:last-child){margin-bottom:1rem}bm-tags .tags.is-right bm-tag:not(:first-child) .tag{margin-left:0.5rem}bm-tags .tags.is-right bm-tag:not(:last-child) .tag{margin-right:0}bm-tags .tags.has-addons bm-tag:not(:first-child) .tag{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}bm-tags .tags.has-addons bm-tag:not(:last-child) .tag{border-bottom-right-radius:0;border-top-right-radius:0}";
const Tags = class {
constructor(hostRef) {
registerInstance(this, hostRef);
/**
* Has addons
*/
this.hasAddons = false;
}
render() {
return (h("div", { class: {
tags: true,
'has-addons': this.hasAddons,
[this.size]: Boolean(this.size),
} }, h("slot", null)));
}
};
Tags.style = tagsCss;
export { Tags as bm_tags };