1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Merge pull request #2469 from Budibase/cheeks-fixes

Size options for form and table
This commit is contained in:
Martin McKeaveney 2021-08-30 22:53:19 +01:00 committed by GitHub
commit f7be7d5ac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 37 additions and 3 deletions

View file

@ -43,6 +43,7 @@ const createScreen = table => {
tableId: table._id, tableId: table._id,
type: "table", type: "table",
}, },
size: "spectrum--medium",
}) })
const fieldGroup = new Component("@budibase/standard-components/fieldgroup") const fieldGroup = new Component("@budibase/standard-components/fieldgroup")

View file

@ -101,7 +101,6 @@ const createScreen = table => {
.instanceName("Form") .instanceName("Form")
.customProps({ .customProps({
actionType: "Update", actionType: "Update",
theme: "spectrum--lightest",
size: "spectrum--medium", size: "spectrum--medium",
dataSource: { dataSource: {
label: table.name, label: table.name,

View file

@ -65,6 +65,7 @@ const createScreen = table => {
tableId: table._id, tableId: table._id,
type: "table", type: "table",
}, },
size: "spectrum--medium",
paginate: true, paginate: true,
limit: 8, limit: 8,
}) })

View file

@ -1726,6 +1726,21 @@
"label": "Custom" "label": "Custom"
} }
}, },
{
"type": "select",
"label": "Size",
"key": "size",
"options": [
{
"label": "Medium",
"value": "spectrum--medium"
}, {
"label": "Large",
"value": "spectrum--large"
}
],
"defaultValue": "spectrum--medium"
},
{ {
"type": "boolean", "type": "boolean",
"label": "Disabled", "label": "Disabled",
@ -2448,6 +2463,22 @@
"dependsOn": "dataProvider", "dependsOn": "dataProvider",
"placeholder": "All columns" "placeholder": "All columns"
}, },
{
"type": "select",
"label": "Size",
"key": "size",
"defaultValue": "spectrum--medium",
"options": [
{
"label": "Medium",
"value": "spectrum--medium"
},
{
"label": "Large",
"value": "spectrum--large"
}
]
},
{ {
"type": "boolean", "type": "boolean",
"label": "Quiet", "label": "Quiet",

View file

@ -7,6 +7,7 @@
export let dataSource export let dataSource
export let disabled = false export let disabled = false
export let initialValues export let initialValues
export let size
export let schema export let schema
export let table export let table
@ -270,7 +271,7 @@
</script> </script>
<Provider {actions} data={dataContext}> <Provider {actions} data={dataContext}>
<div use:styleable={$component.styles}> <div use:styleable={$component.styles} class={size}>
<slot /> <slot />
</div> </div>
</Provider> </Provider>

View file

@ -8,6 +8,7 @@
export let showAutoColumns export let showAutoColumns
export let rowCount export let rowCount
export let quiet export let quiet
export let size
const component = getContext("component") const component = getContext("component")
const { styleable } = getContext("sdk") const { styleable } = getContext("sdk")
@ -71,7 +72,7 @@
} }
</script> </script>
<div use:styleable={$component.styles}> <div use:styleable={$component.styles} class={size}>
<Table <Table
{data} {data}
{schema} {schema}