UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

85 lines (79 loc) 2.04 kB
import { mergeProps, createBlock, renderSlot, openBlock, resolveDynamicComponent, withCtx, normalizeClass } from 'vue'; import BaseComponent from '@primevue/core/basecomponent'; import AccordionPanelStyle from 'primevue/accordionpanel/style'; var script$1 = { name: 'BaseAccordionPanel', "extends": BaseComponent, props: { value: { type: [String, Number], "default": undefined }, disabled: { type: Boolean, "default": false }, as: { type: [String, Object], "default": 'DIV' }, asChild: { type: Boolean, "default": false } }, style: AccordionPanelStyle, provide: function provide() { return { $pcAccordionPanel: this, $parentInstance: this }; } }; var script = { name: 'AccordionPanel', "extends": script$1, inheritAttrs: false, inject: ['$pcAccordion'], computed: { active: function active() { return this.$pcAccordion.isItemActive(this.value); }, attrs: function attrs() { return mergeProps(this.a11yAttrs, this.ptmi('root', this.ptParams)); }, a11yAttrs: function a11yAttrs() { return { 'data-pc-name': 'accordionpanel', 'data-p-disabled': this.disabled, 'data-p-active': this.active }; }, ptParams: function ptParams() { return { context: { active: this.active } }; } } }; function render(_ctx, _cache, $props, $setup, $data, $options) { return !_ctx.asChild ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.as), mergeProps({ key: 0, "class": _ctx.cx('root') }, $options.attrs), { "default": withCtx(function () { return [renderSlot(_ctx.$slots, "default")]; }), _: 3 }, 16, ["class"])) : renderSlot(_ctx.$slots, "default", { key: 1, "class": normalizeClass(_ctx.cx('root')), active: $options.active, a11yAttrs: $options.a11yAttrs }); } script.render = render; export { script as default }; //# sourceMappingURL=index.mjs.map