mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Initial commit for nuxt
This commit is contained in:
parent
271fd62d8d
commit
3cb3910561
1047 changed files with 15090 additions and 175754 deletions
|
@ -1,78 +0,0 @@
|
|||
const SidebarProps = [
|
||||
{
|
||||
name: "visible",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "Specifies the visibility of the dialog."
|
||||
},
|
||||
{
|
||||
name: "position",
|
||||
type: "string",
|
||||
default: "left",
|
||||
description: 'Specifies the position of the sidebar, valid values are "left", "right", "top", "bottom" and "full".'
|
||||
},
|
||||
{
|
||||
name: "baseZIndex",
|
||||
type: "number",
|
||||
default: "0",
|
||||
description: "Base zIndex value to use in layering."
|
||||
},
|
||||
{
|
||||
name: "autoZIndex",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Whether to automatically manage layering."
|
||||
},
|
||||
{
|
||||
name: "dismissable",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Whether clicking outside closes the panel."
|
||||
},
|
||||
{
|
||||
name: "showCloseIcon",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Whether to display a close icon inside the panel."
|
||||
},
|
||||
{
|
||||
name: "modal",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Whether to a modal layer behind the sidebar."
|
||||
},
|
||||
{
|
||||
name: "ariaCloseLabel",
|
||||
type: "string",
|
||||
default: "close",
|
||||
description: "Aria label of the close icon."
|
||||
}
|
||||
];
|
||||
|
||||
const SidebarEvents = [
|
||||
{
|
||||
name: "hide",
|
||||
description: "Callback to invoke when sidebar gets hidden."
|
||||
},
|
||||
{
|
||||
name: "show",
|
||||
description: "Callback to invoke when sidebar gets shown."
|
||||
}
|
||||
];
|
||||
|
||||
const SidebarSlots = [
|
||||
{
|
||||
name: "header",
|
||||
description: "Custom content for the component header."
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
sidebar: {
|
||||
name: "Sidebar",
|
||||
description: "Sidebar is a panel component displayed as an overlay at the edges of the screen.",
|
||||
props: SidebarProps,
|
||||
events: SidebarEvents,
|
||||
slots: SidebarSlots
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue