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

@@ -50,6 +50,7 @@ import {
N8nUsersList,
N8nResizeWrapper,
N8nRecycleScroller,
N8nCheckbox,
} from './components';
export const N8nPlugin: PluginObject<{}> = {
@@ -103,5 +104,6 @@ export const N8nPlugin: PluginObject<{}> = {
app.component('n8n-user-select', N8nUserSelect);
app.component('n8n-resize-wrapper', N8nResizeWrapper);
app.component('n8n-recycle-scroller', N8nRecycleScroller);
app.component('n8n-checkbox', N8nCheckbox);
},
};