mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Pages route change - api generator added
This commit is contained in:
parent
28b8e0a7e0
commit
3eac7d6658
179 changed files with 10592 additions and 5 deletions
28
api-generator/components/divider.js
Normal file
28
api-generator/components/divider.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
const DividerProps = [
|
||||
{
|
||||
name: "align",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: 'Alignment of the content, options are "left", "center", "right" for horizontal layout and "top", "center", "bottom" for vertical.'
|
||||
},
|
||||
{
|
||||
name: "layout",
|
||||
type: "string",
|
||||
default: "horizontal",
|
||||
description: 'Specifies the orientation, valid values are "horizontal" and "vertical".'
|
||||
},
|
||||
{
|
||||
name: "type",
|
||||
type: "string",
|
||||
default: "solid",
|
||||
description: 'Border style type, default is "solid" and other options are "dashed" and "dotted".'
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
divider: {
|
||||
name: "Divider",
|
||||
description: "Divider is used to separate contents.",
|
||||
props: DividerProps
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue