UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

142 lines (129 loc) 4.53 kB
this.primevue = this.primevue || {}; this.primevue.chip = (function (vue) { 'use strict'; var script = { name: 'Chip', emits: ['remove'], props: { label: { type: String, default: null }, icon: { type: String, default: null }, image: { type: String, default: null }, removable: { type: Boolean, default: false }, removeIcon: { type: String, default: 'pi pi-times-circle' } }, data() { return { visible: true }; }, methods: { onKeydown(event) { if (event.key === 'Enter' || event.key === 'Backspace') { this.close(event); } }, close(event) { this.visible = false; this.$emit('remove', event); } }, computed: { containerClass() { return [ 'p-chip p-component', { 'p-chip-image': this.image != null } ]; }, iconClass() { return ['p-chip-icon', this.icon]; }, removeIconClass() { return ['p-chip-remove-icon', this.removeIcon]; } } }; const _hoisted_1 = ["aria-label"]; const _hoisted_2 = ["src"]; const _hoisted_3 = { key: 2, class: "p-chip-text" }; function render(_ctx, _cache, $props, $setup, $data, $options) { return ($data.visible) ? (vue.openBlock(), vue.createElementBlock("div", { key: 0, class: vue.normalizeClass($options.containerClass), "aria-label": $props.label }, [ vue.renderSlot(_ctx.$slots, "default", {}, () => [ ($props.image) ? (vue.openBlock(), vue.createElementBlock("img", { key: 0, src: $props.image }, null, 8, _hoisted_2)) : ($props.icon) ? (vue.openBlock(), vue.createElementBlock("span", { key: 1, class: vue.normalizeClass($options.iconClass) }, null, 2)) : vue.createCommentVNode("", true), ($props.label) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3, vue.toDisplayString($props.label), 1)) : vue.createCommentVNode("", true) ]), ($props.removable) ? (vue.openBlock(), vue.createElementBlock("span", { key: 0, tabindex: "0", class: vue.normalizeClass($options.removeIconClass), onClick: _cache[0] || (_cache[0] = (...args) => ($options.close && $options.close(...args))), onKeydown: _cache[1] || (_cache[1] = (...args) => ($options.onKeydown && $options.onKeydown(...args))) }, null, 34)) : vue.createCommentVNode("", true) ], 10, _hoisted_1)) : vue.createCommentVNode("", true) } function styleInject(css, ref) { if ( ref === void 0 ) ref = {}; var insertAt = ref.insertAt; if (!css || typeof document === 'undefined') { return; } var head = document.head || document.getElementsByTagName('head')[0]; var style = document.createElement('style'); style.type = 'text/css'; if (insertAt === 'top') { if (head.firstChild) { head.insertBefore(style, head.firstChild); } else { head.appendChild(style); } } else { head.appendChild(style); } if (style.styleSheet) { style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } } var css_248z = "\n.p-chip {\n display: inline-flex;\n align-items: center;\n}\n.p-chip-text {\n line-height: 1.5;\n}\n.p-chip-icon.pi {\n line-height: 1.5;\n}\n.p-chip-remove-icon {\n line-height: 1.5;\n cursor: pointer;\n}\n.p-chip img {\n border-radius: 50%;\n}\n"; styleInject(css_248z); script.render = render; return script; })(Vue);