1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +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,
type: "table",
},
size: "spectrum--medium",
})
const fieldGroup = new Component("@budibase/standard-components/fieldgroup")

View file

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

View file

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

View file

@ -1726,6 +1726,21 @@
"label": "Custom"
}
},
{
"type": "select",
"label": "Size",
"key": "size",
"options": [
{
"label": "Medium",
"value": "spectrum--medium"
}, {
"label": "Large",
"value": "spectrum--large"
}
],
"defaultValue": "spectrum--medium"
},
{
"type": "boolean",
"label": "Disabled",
@ -2448,6 +2463,22 @@
"dependsOn": "dataProvider",
"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",
"label": "Quiet",

View file

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

View file

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