mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Convert to PrimeVue monorepo
This commit is contained in:
parent
970ba75b06
commit
61929eae75
4144 changed files with 59008 additions and 36177 deletions
114
packages/primevue/scripts/components/sidebar.js
Normal file
114
packages/primevue/scripts/components/sidebar.js
Normal file
|
@ -0,0 +1,114 @@
|
|||
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.'
|
||||
},
|
||||
{
|
||||
name: 'blockScroll',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'Whether background scroll should be blocked when sidebar is visible.'
|
||||
},
|
||||
{
|
||||
name: 'closeIcon',
|
||||
type: 'string',
|
||||
default: 'undefined',
|
||||
description: 'Icon to display in the sidebar close button.'
|
||||
},
|
||||
{
|
||||
name: 'pt',
|
||||
type: 'any',
|
||||
default: 'null',
|
||||
description: 'Used to pass attributes to DOM elements inside the component.'
|
||||
},
|
||||
{
|
||||
name: 'unstyled',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'When enabled, it removes component related styles in the core.'
|
||||
}
|
||||
];
|
||||
|
||||
const SidebarEvents = [
|
||||
{
|
||||
name: 'hide',
|
||||
description: 'Callback to invoke when sidebar gets hidden.'
|
||||
},
|
||||
{
|
||||
name: 'show',
|
||||
description: 'Callback to invoke when sidebar gets shown.'
|
||||
},
|
||||
{
|
||||
name: 'closeicon',
|
||||
description: 'Custom close icon template.'
|
||||
}
|
||||
];
|
||||
|
||||
const SidebarSlots = [
|
||||
{
|
||||
name: 'header',
|
||||
description: 'Custom content for the component header.'
|
||||
},
|
||||
{
|
||||
name: 'closeicon',
|
||||
description: 'Custom close icon template.'
|
||||
},
|
||||
{
|
||||
name: 'container',
|
||||
description: 'Custom container template.'
|
||||
}
|
||||
];
|
||||
|
||||
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