Pages route change - api generator added

This commit is contained in:
Bahadir Sofuoglu 2022-09-12 10:13:52 +03:00
parent 28b8e0a7e0
commit 3eac7d6658
179 changed files with 10592 additions and 5 deletions

View 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
}
};