1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +12:00
budibase/packages/builder/tests/testData.js

109 lines
2.2 KiB
JavaScript
Raw Normal View History

export const componentsAndScreens = () => ({
components: [
{
name: "budibase-components/TextBox",
tags: ["Text", "input"],
children: false,
props: {
size: { type: "options", options: ["small", "medium", "large"] },
isPassword: "bool",
placeholder: "string",
label: "string",
},
},
{
name: "budibase-components/Button",
tags: ["input"],
children: true,
props: {
size: { type: "options", options: ["small", "medium", "large"] },
css: "string",
contentText: "string",
},
},
{
name: "budibase-components/div",
tags: ["input"],
props: {
width: "number",
},
},
{
name: "budibase-components/RecordView",
tags: ["record"],
props: {
data: "state",
},
},
],
screens: [
{
name: "common/SmallTextbox",
props: {
_component: "budibase-components/TextBox",
size: "small",
},
},
{
name: "common/PasswordBox",
tags: ["mask"],
props: {
_component: "budibase-components/TextBox",
isPassword: true,
size: "small",
},
},
{
name: "PrimaryButton",
props: {
_component: "budibase-components/Button",
css: "btn-primary",
},
},
2019-09-07 04:25:06 +12:00
{
name: "Screen 1",
route: "",
props: {
_component: "budibase-components/div",
width: 100,
_children: [
{
_component: "budibase-components/Button",
contentText: "Button 1",
},
{
_component: "budibase-components/Button",
contentText: "Button 2",
},
{
_component: "budibase-components/TextBox",
isPassword: true,
size: "small",
},
],
},
},
{
name: "Field",
props: {
_component: "budibase-components/div",
_children: [
{
_component: "common/SmallTextbox",
},
],
},
},
],
})
export const stripStandardProps = props => {
delete props._code
delete props._id
delete props._styles
}