109 lines
2.2 KiB
JavaScript
109 lines
2.2 KiB
JavaScript
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",
|
|
},
|
|
},
|
|
|
|
{
|
|
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
|
|
}
|