@shoelace-style/shoelace
Version:
A forward-thinking library of web components.
60 lines (57 loc) • 1.48 kB
JavaScript
import {
badge_styles_default
} from "./chunk.WQC6OWUE.js";
import {
component_styles_default
} from "./chunk.TUVJKY7S.js";
import {
ShoelaceElement
} from "./chunk.UYAO2JRR.js";
import {
__decorateClass
} from "./chunk.B3BW2AY6.js";
// src/components/badge/badge.component.ts
import { classMap } from "lit/directives/class-map.js";
import { html } from "lit";
import { property } from "lit/decorators.js";
var SlBadge = class extends ShoelaceElement {
constructor() {
super(...arguments);
this.variant = "primary";
this.pill = false;
this.pulse = false;
}
render() {
return html`
<span
part="base"
class=${classMap({
badge: true,
"badge--primary": this.variant === "primary",
"badge--success": this.variant === "success",
"badge--neutral": this.variant === "neutral",
"badge--warning": this.variant === "warning",
"badge--danger": this.variant === "danger",
"badge--pill": this.pill,
"badge--pulse": this.pulse
})}
role="status"
>
<slot></slot>
</span>
`;
}
};
SlBadge.styles = [component_styles_default, badge_styles_default];
__decorateClass([
property({ reflect: true })
], SlBadge.prototype, "variant", 2);
__decorateClass([
property({ type: Boolean, reflect: true })
], SlBadge.prototype, "pill", 2);
__decorateClass([
property({ type: Boolean, reflect: true })
], SlBadge.prototype, "pulse", 2);
export {
SlBadge
};