fix(editor): Update and add design system checkbox component to Editor (#6178)

* fix(editor): Update and add design system checkbox component to Editor

* test(editor): Test Checkbox design system component
This commit is contained in:
Csaba Tuncsik
2023-05-05 09:25:29 +02:00
committed by GitHub
parent b0a1899e71
commit 13c143eb6d
5 changed files with 194 additions and 2 deletions

View File

@@ -8,7 +8,9 @@
:value="value"
@change="onChange"
>
<slot></slot>
<n8n-input-label
v-if="label"
:label="label"
:tooltipText="tooltipText"
:bold="false"
@@ -32,7 +34,6 @@ export default defineComponent({
props: {
label: {
type: String,
required: true,
},
disabled: {
type: Boolean,
@@ -40,7 +41,6 @@ export default defineComponent({
},
tooltipText: {
type: String,
required: false,
},
indeterminate: {
type: Boolean,