feat(editor): Implement the UserStack design system component (#7559)

Adds [`UserStack`
component](https://www.figma.com/file/5MfPO6Eg2YVfXETAzoGahf/Debt-days-August2023?type=design&node-id=10-13056&mode=design&t=tuJAgCdzkN506SlE-0)
to our design system
This commit is contained in:
Milorad FIlipović
2023-11-01 09:26:06 +01:00
committed by GitHub
parent b94b8b2eb0
commit ce14f6266b
7 changed files with 498 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ import {
N8nUserInfo,
N8nUserSelect,
N8nUsersList,
N8nUserStack,
} from './components';
export const N8nPlugin: Plugin<{}> = {
@@ -103,6 +104,7 @@ export const N8nPlugin: Plugin<{}> = {
app.component('n8n-text', N8nText);
app.component('n8n-tooltip', N8nTooltip);
app.component('n8n-tree', N8nTree);
app.component('n8n-user-stack', N8nUserStack);
app.component('n8n-user-info', N8nUserInfo);
app.component('n8n-users-list', N8nUsersList);
app.component('n8n-user-select', N8nUserSelect);