mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Convert to PrimeVue monorepo
This commit is contained in:
parent
970ba75b06
commit
61929eae75
4144 changed files with 59008 additions and 36177 deletions
72
packages/primevue/scripts/components/splitter.js
Normal file
72
packages/primevue/scripts/components/splitter.js
Normal file
|
@ -0,0 +1,72 @@
|
|||
const SplitterProps = [
|
||||
{
|
||||
name: 'layout',
|
||||
type: 'string',
|
||||
default: 'horizontal',
|
||||
description: 'Orientation of the panels, valid values are "horizontal" and "vertical".'
|
||||
},
|
||||
{
|
||||
name: 'gutterSize',
|
||||
type: 'number',
|
||||
default: '4',
|
||||
description: 'Size of the divider in pixels.'
|
||||
},
|
||||
{
|
||||
name: 'stateKey',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
description: 'Storage identifier of a stateful Splitter.'
|
||||
},
|
||||
{
|
||||
name: 'stateStorage',
|
||||
type: 'string',
|
||||
default: 'storage',
|
||||
description: 'Defines where a stateful splitter keeps its state, valid values are "session" for sessionStorage and "local" for localStorage.'
|
||||
},
|
||||
{
|
||||
name: 'step',
|
||||
type: 'number',
|
||||
default: '5',
|
||||
description: 'Step factor to increment/decrement the size of the panels while pressing the arrow keys.'
|
||||
},
|
||||
{
|
||||
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 SplitterEvents = [
|
||||
{
|
||||
name: 'resizened',
|
||||
description: 'Callback to invoke when resize ends.',
|
||||
arguments: [
|
||||
{
|
||||
name: 'event.originalEvent',
|
||||
type: 'object',
|
||||
description: 'Browser event'
|
||||
},
|
||||
{
|
||||
name: 'event.sizes',
|
||||
type: 'array',
|
||||
description: 'Sizes of the panels as an array'
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
splitter: {
|
||||
name: 'Splitter',
|
||||
description: 'Splitter is utilized to separate and resize panels',
|
||||
props: SplitterProps,
|
||||
events: SplitterEvents
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue