1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

adds temp structure for panel and components

This commit is contained in:
kevmodrome 2020-04-16 12:47:56 +02:00
parent 63b1e233bf
commit 02b09abd79

View file

@ -0,0 +1,43 @@
{
"categories": [
{
"name": "Basic",
"components": [
{
"component": "Text",
"icon": "Text",
"commonProps": {
//common for all components
//Will include layout props
},
"type": [
{
"_component": "@budibase/standard-components/header",
"name": "Headline",
"icon": "headline",
"props": {
//props for headline
"type": {
"type": "options",
"options": [
"h1",
"h2"
],
"default": "h1"
}
}
},
{
"_component": "@budibase/standard-components/text",
"name": "Paragraph",
"icon": "paragraph",
"props": {
//props for paragraph
}
}
]
}
]
}
]
}