UNPKG

equinox-web-components

Version:

Equinox design for the web using StencilJS

39 lines (35 loc) 2.09 kB
import { r as registerInstance, h } from './index-ab05bccf.js'; const eChipCss = ":host{display:block}button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;gap:10px;-webkit-transition:.3s ease;transition:.3s ease;line-height:150%;background:var(--gray-200);color:var(--primary);padding:4px 8px;border-radius:4px;border:none}button.text,button.outlined,button.disabled,button.shadow{background:none}button.outlined{border:1px solid var(--primary)}button.disabled{color:var(--gray-300) !important}button.shadow{-webkit-box-shadow:0 0 7px rgba(231,204,180,0.22);box-shadow:0 0 7px rgba(231,204,180,0.22);border:1px solid linear-gradient(90deg,#e7ccb4 0%,rgba(255,255,255,0) 100%);border-image-source:linear-gradient(0,#f2f2f2,#f2f2f2),linear-gradient(90deg,#e7ccb4 0%,rgba(255,255,255,0) 100%)}button.rounded{border-radius:100px}"; const EChip = class { constructor(hostRef) { registerInstance(this, hostRef); this.classes = () => ({ text: this.text, outlined: this.outlined, disabled: this.disabled, shadow: this.shadow, rounded: this.rounded, }); this.styles = () => { const styles = {}; if (this.textColor) { styles.color = this.textColor; } if (this.color) { if (this.outlined) { styles.borderColor = this.color; } if (!this.outlined && !this.shadow && !this.text && !this.disabled) { styles.background = this.color; } } return styles; }; this.renderIcon = (icon) => (icon && h("e-icon", { icon: icon })); } render() { return (h("button", { class: this.classes(), style: this.styles() }, h("slot", { name: "prepend" }, this.renderIcon(this.prependIcon)), h("slot", null), h("slot", { name: "append" }))); } }; EChip.style = eChipCss; export { EChip as e_chip };