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

30 lines
722 B
JavaScript
Raw Normal View History

const SplitterPanelProps = [
{
2022-09-14 14:26:41 +00:00
name: 'size',
type: 'number',
default: 'null',
description: 'Size of the element relative to 100%.'
},
{
2022-09-14 14:26:41 +00:00
name: 'minSize',
type: 'number',
default: 'null',
description: 'Minimum size of the element relative to 100%.'
2023-03-27 07:13:31 +00:00
},
{
name: 'pt',
type: 'any',
default: 'null',
2023-08-01 14:01:12 +00:00
description: 'Used to pass attributes to DOM elements inside the component.'
}
];
module.exports = {
splitterpanel: {
2022-09-14 14:26:41 +00:00
name: 'SplitterPanel',
description: 'Splitter requires two SplitterPanel components to wrap.',
'doc-url': 'splitter',
props: SplitterPanelProps
}
};