UNPKG

@salla.sa/twilight-components

Version:
77 lines (76 loc) 3.07 kB
/*! * Crafted with ❤ by Salla */ import { h, Host } from "@stencil/core"; export class SallaLoyaltyPrizeItem { onPrizeItemClick() { this.prizeItemSelected.emit(this.item); } render() { return (h(Host, { key: '5434064e3e54117f4df4e16282f70e81503d7489' }, h("div", { key: '28b5a19dcd1f239a74d69e91a1cda66ae7521e8e', onClick: this.onPrizeItemClick.bind(this) }, h("img", { key: '82917e0074006f4e462b2328405714a31d168c17', class: "s-loyalty-prize-item-image", src: this.item.image, alt: this.item.name }), h("div", { key: '089ac134ed2a0474067c79cd590154ca85a380c9', class: "s-loyalty-prize-item-title" }, this.item.name), h("div", { key: '85d245c32c42701274fa29761c4345020532eac1', class: "s-loyalty-prize-item-subtitle" }, this.item.description), h("div", { key: '5f37781c8c77998a0bb586ddcda4640741db0b6e', class: "s-loyalty-prize-item-points" }, this.item.cost_points, " Points")))); } static get is() { return "salla-loyalty-prize-item"; } static get originalStyleUrls() { return { "$": ["salla-loyalty-prize-item.scss"] }; } static get styleUrls() { return { "$": ["salla-loyalty-prize-item.css"] }; } static get properties() { return { "item": { "type": "unknown", "attribute": "item", "mutable": false, "complexType": { "original": "Item", "resolved": "Item", "references": { "Item": { "location": "import", "path": "./loyalty-schema", "id": "src/components/salla-loyalty/loyalty-schema.ts::Item" } } }, "required": false, "optional": false, "docs": { "tags": [], "text": "Prize item to be displayed in this component." }, "getter": false, "setter": false } }; } static get events() { return [{ "method": "prizeItemSelected", "name": "prizeItemSelected", "bubbles": true, "cancelable": true, "composed": true, "docs": { "tags": [], "text": "Event emmited when the user select this item." }, "complexType": { "original": "Item", "resolved": "Item", "references": { "Item": { "location": "import", "path": "./loyalty-schema", "id": "src/components/salla-loyalty/loyalty-schema.ts::Item" } } } }]; } } //# sourceMappingURL=salla-loyalty-prize-item.js.map