primevue-mirror/api-generator/components/tabpanel.js

24 lines
517 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const TabPanelProps = [
{
name: "header",
type: "string",
default: "null",
description: "Orientation of tab headers."
},
{
name: "disabled",
type: "boolean",
default: "null",
description: "Whether the tab is disabled."
}
];
module.exports = {
tabpanel: {
name: "TabPanel",
description: "TabView element consists of one or more TabPanel elements.",
"doc-url": "tabview",
2022-08-22 13:47:07 +00:00
props: TabPanelProps
2021-05-12 09:35:29 +00:00
}
};