45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import { style } from '@primeuix/styles/tabview';
|
|
import BaseStyle from '@primevue/core/base/style';
|
|
|
|
var classes = {
|
|
root: function root(_ref) {
|
|
var props = _ref.props;
|
|
return ['p-tabview p-component', {
|
|
'p-tabview-scrollable': props.scrollable
|
|
}];
|
|
},
|
|
navContainer: 'p-tabview-tablist-container',
|
|
prevButton: 'p-tabview-prev-button',
|
|
navContent: 'p-tabview-tablist-scroll-container',
|
|
nav: 'p-tabview-tablist',
|
|
tab: {
|
|
header: function header(_ref2) {
|
|
var instance = _ref2.instance,
|
|
tab = _ref2.tab,
|
|
index = _ref2.index;
|
|
return ['p-tabview-tablist-item', instance.getTabProp(tab, 'headerClass'), {
|
|
'p-tabview-tablist-item-active': instance.d_activeIndex === index,
|
|
'p-disabled': instance.getTabProp(tab, 'disabled')
|
|
}];
|
|
},
|
|
headerAction: 'p-tabview-tab-header',
|
|
headerTitle: 'p-tabview-tab-title',
|
|
content: function content(_ref3) {
|
|
var instance = _ref3.instance,
|
|
tab = _ref3.tab;
|
|
return ['p-tabview-panel', instance.getTabProp(tab, 'contentClass')];
|
|
}
|
|
},
|
|
inkbar: 'p-tabview-ink-bar',
|
|
nextButton: 'p-tabview-next-button',
|
|
panelContainer: 'p-tabview-panels'
|
|
};
|
|
var TabViewStyle = BaseStyle.extend({
|
|
name: 'tabview',
|
|
style: style,
|
|
classes: classes
|
|
});
|
|
|
|
export { TabViewStyle as default };
|
|
//# sourceMappingURL=index.mjs.map
|