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

144 lines (128 loc) 5.04 kB
'use strict'; var utils = require('primevue/utils'); var Ripple = require('primevue/ripple'); var vue = require('vue'); function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } var Ripple__default = /*#__PURE__*/_interopDefaultLegacy(Ripple); var script = { name: 'Panel', emits: ['update:collapsed', 'toggle'], props: { header: String, toggleable: Boolean, collapsed: Boolean }, data() { return { d_collapsed: this.collapsed } }, watch: { collapsed(newValue) { this.d_collapsed = newValue; } }, methods: { toggle(event) { this.d_collapsed = !this.d_collapsed; this.$emit('update:collapsed', this.d_collapsed); this.$emit('toggle', { originalEvent: event, value: this.d_collapsed }); } }, computed: { ariaId() { return utils.UniqueComponentId(); }, containerClass() { return ['p-panel p-component', {'p-panel-toggleable': this.toggleable}]; } }, directives: { 'ripple': Ripple__default['default'] } }; const _hoisted_1 = { class: "p-panel-header" }; const _hoisted_2 = { class: "p-panel-icons" }; const _hoisted_3 = { class: "p-panel-content" }; function render(_ctx, _cache, $props, $setup, $data, $options) { const _directive_ripple = vue.resolveDirective("ripple"); return (vue.openBlock(), vue.createBlock("div", { class: $options.containerClass }, [ vue.createVNode("div", _hoisted_1, [ vue.renderSlot(_ctx.$slots, "header", {}, () => [ ($props.header) ? (vue.openBlock(), vue.createBlock("span", { key: 0, class: "p-panel-title", id: $options.ariaId + '_header' }, vue.toDisplayString($props.header), 9, ["id"])) : vue.createCommentVNode("", true) ]), vue.createVNode("div", _hoisted_2, [ vue.renderSlot(_ctx.$slots, "icons"), ($props.toggleable) ? vue.withDirectives((vue.openBlock(), vue.createBlock("button", { key: 0, class: "p-panel-header-icon p-panel-toggler p-link", onClick: _cache[1] || (_cache[1] = (...args) => ($options.toggle && $options.toggle(...args))), type: "button", id: $options.ariaId + '_header', "aria-controls": $options.ariaId + '_content', "aria-expanded": !$data.d_collapsed }, [ vue.createVNode("span", { class: {'pi pi-minus': !$data.d_collapsed, 'pi pi-plus': $data.d_collapsed} }, null, 2) ], 8, ["id", "aria-controls", "aria-expanded"])), [ [_directive_ripple] ]) : vue.createCommentVNode("", true) ]) ]), vue.createVNode(vue.Transition, { name: "p-toggleable-content" }, { default: vue.withCtx(() => [ vue.withDirectives(vue.createVNode("div", { class: "p-toggleable-content", role: "region", id: $options.ariaId + '_content', "aria-labelledby": $options.ariaId + '_header' }, [ vue.createVNode("div", _hoisted_3, [ vue.renderSlot(_ctx.$slots, "default") ]) ], 8, ["id", "aria-labelledby"]), [ [vue.vShow, !$data.d_collapsed] ]) ]), _: 3 }) ], 2)) } 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-panel-header {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n}\n.p-panel-title {\n line-height: 1;\n}\n.p-panel-header-icon {\n display: -webkit-inline-box;\n display: -ms-inline-flexbox;\n display: inline-flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n cursor: pointer;\n text-decoration: none;\n overflow: hidden;\n position: relative;\n}\n"; styleInject(css_248z); script.render = render; module.exports = script;