sets everything up to be used with a longform type in the Form component
This commit is contained in:
parent
201e37a2ba
commit
9799a405fd
|
@ -188,25 +188,17 @@ export default {
|
|||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
_component: "@budibase/standard-components/richtext",
|
||||
name: "Rich Text",
|
||||
description:
|
||||
"A component that allows the user to enter long form text.",
|
||||
icon: "ri-edit-box-line",
|
||||
properties: {
|
||||
design: { ...all },
|
||||
settings: [
|
||||
{ label: "Label", key: "label", control: Input },
|
||||
{
|
||||
label: "Type",
|
||||
key: "type",
|
||||
control: OptionSelect,
|
||||
options: ["text", "password"],
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
// {
|
||||
// _component: "@budibase/standard-components/richtext",
|
||||
// name: "Rich Text",
|
||||
// description:
|
||||
// "A component that allows the user to enter long form text.",
|
||||
// icon: "ri-edit-box-line",
|
||||
// properties: {
|
||||
// design: { ...all },
|
||||
// settings: [],
|
||||
// },
|
||||
// },
|
||||
{
|
||||
_component: "@budibase/standard-components/datepicker",
|
||||
name: "Date Picker",
|
||||
|
|
|
@ -178,8 +178,6 @@
|
|||
"name": "Rich Text",
|
||||
"description": "A component that allows the user to enter long form text.",
|
||||
"props": {
|
||||
"label": "string",
|
||||
"type": "string",
|
||||
"value": "string"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -3,8 +3,18 @@
|
|||
|
||||
export let _bb
|
||||
|
||||
export let label = ""
|
||||
export let value = ""
|
||||
export let content = ""
|
||||
|
||||
const updateValue = content => {
|
||||
if (_bb) {
|
||||
_bb.setBinding("value", content)
|
||||
}
|
||||
}
|
||||
|
||||
$: updateValue(content)
|
||||
|
||||
// Need to determine what options we want to expose.
|
||||
|
||||
let options = {
|
||||
"modules": {
|
||||
"toolbar": [
|
||||
|
@ -31,4 +41,4 @@
|
|||
}
|
||||
</script>
|
||||
|
||||
<RichText {options} />
|
||||
<RichText bind:content {options} />
|
Loading…
Reference in New Issue