accessibleprimevue
Version:
Note: This is the forked version of the Primefaces/PrimeVue repository. Since V3 has reached its EOL this is use to fix identified accessibility bugs in the v3 version of primevue. PrimeVue is an open source UI library for Vue featuring a rich set of 80+
41 lines (32 loc) • 1.16 kB
JavaScript
this.primevue = this.primevue || {};
this.primevue.tabpanel = (function (BaseComponent, TabPanelStyle, vue) {
'use strict';
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
var TabPanelStyle__default = /*#__PURE__*/_interopDefaultLegacy(TabPanelStyle);
var script$1 = {
name: 'BaseTabPanel',
"extends": BaseComponent__default["default"],
props: {
header: null,
headerStyle: null,
headerClass: null,
headerProps: null,
headerActionProps: null,
contentStyle: null,
contentClass: null,
contentProps: null,
disabled: Boolean
},
style: TabPanelStyle__default["default"]
};
var script = {
name: 'TabPanel',
"extends": script$1
};
function render(_ctx, _cache, $props, $setup, $data, $options) {
return vue.renderSlot(_ctx.$slots, "default");
}
script.render = render;
return script;
})(primevue.basecomponent, primevue.tabpanel.style, Vue);