1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

Fix grid component definition and add controls for icons and colourpickers

This commit is contained in:
Andrew Kingston 2021-01-19 13:46:25 +00:00
parent 0dadd9a49c
commit 84bba45ad2
3 changed files with 8 additions and 4 deletions

View file

@ -54,7 +54,10 @@
number: Input,
event: EventsEditor,
table: TableSelect,
color: ColorPicker,
icon: IconSelect,
}
const getControl = type => {
return controlMap[type]
}

View file

@ -29,10 +29,9 @@
}
]
},
"grid": {
"datagrid": {
"name": "Grid",
"description":
"A datagrid component with functionality to add, remove and edit rows.",
"description": "A datagrid component with functionality to add, remove and edit rows.",
"icon": "ri-grid-line",
"styleable": true,
"settings": [
@ -73,6 +72,7 @@
},
"screenslot": {
"name": "Screenslot",
"icon": "ri-artboard-2-line",
"description": "Contains your app screens",
"styleable": true
},
@ -344,6 +344,7 @@
]
},
"login": {
"name": "Login Form",
"description": "A component that automatically generates a login screen for your app.",
"icon": "ri-login-box-line",
"styleable": true,

View file

@ -2,7 +2,7 @@ import "@budibase/bbui/dist/bbui.css"
import "flatpickr/dist/flatpickr.css"
export { default as container } from "./Container.svelte"
export { default as grid } from "./grid/Component.svelte"
export { default as datagrid } from "./grid/Component.svelte"
export { default as screenslot } from "./ScreenSlot.svelte"
export { default as button } from "./Button.svelte"
export { default as input } from "./Input.svelte"