mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #5621 - New Component: Tabs
This commit is contained in:
parent
53168665d4
commit
c80c3ad0ea
57 changed files with 3934 additions and 35 deletions
19
components/lib/tablist/style/TabListStyle.js
Normal file
19
components/lib/tablist/style/TabListStyle.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
import BaseStyle from 'primevue/base/style';
|
||||
|
||||
const classes = {
|
||||
root: 'p-tablist',
|
||||
content: ({ instance }) => [
|
||||
'p-tablist-content',
|
||||
{
|
||||
'p-tablist-scroll-container': instance.$pcTabs.scrollable
|
||||
}
|
||||
],
|
||||
inkbar: 'p-tablist-ink-bar',
|
||||
previousButton: 'p-tablist-prev-button p-tablist-navigator',
|
||||
nextButton: 'p-tablist-next-button p-tablist-navigator'
|
||||
};
|
||||
|
||||
export default BaseStyle.extend({
|
||||
name: 'tablist',
|
||||
classes
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue