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

24 lines
558 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%.'
}
];
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
}
};