2020-02-14 12:51:45 +01:00
|
|
|
export const form = {
|
|
|
|
_id: "1",
|
|
|
|
_component: "@budibase/standard-components/container",
|
|
|
|
type: "main",
|
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/heading",
|
|
|
|
type: "h1",
|
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/text",
|
|
|
|
text: "This is an H1 Heading",
|
|
|
|
},
|
|
|
|
],
|
2019-09-26 06:40:58 +02:00
|
|
|
},
|
2020-02-14 12:51:45 +01:00
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/text",
|
|
|
|
text: "This just some text",
|
|
|
|
type: "strong",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/container",
|
|
|
|
type: "paragraph",
|
2020-02-21 12:43:21 +01:00
|
|
|
backgroundColor: "red",
|
|
|
|
color: "white",
|
|
|
|
borderStyle: "solid",
|
|
|
|
borderWidth: "3px",
|
|
|
|
borderColor: "blue",
|
2020-02-14 12:51:45 +01:00
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/text",
|
|
|
|
formattingTag: "<i>",
|
|
|
|
text: "some iatlics in a paragraph",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/heading",
|
|
|
|
type: "h2",
|
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/text",
|
|
|
|
text: "This is an H2 Heading",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/select",
|
|
|
|
value: "two",
|
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/option",
|
|
|
|
text: "number 1",
|
|
|
|
value: "one",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_component: "@budibase/standard-components/option",
|
|
|
|
text: "number 2",
|
|
|
|
value: "two",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2020-02-03 10:24:25 +01:00
|
|
|
}
|