refactor(editor): Move editor-ui and design-system to frontend dir (no-changelog) (#13564)

This commit is contained in:
Alex Grozav
2025-02-28 14:28:30 +02:00
committed by GitHub
parent 684353436d
commit f5743176e5
1635 changed files with 805 additions and 1079 deletions

View File

@@ -0,0 +1,96 @@
<script setup lang="ts">
import type { ProjectIcon } from '@/types/projects.types';
type Props = {
icon: ProjectIcon;
size?: 'mini' | 'small' | 'medium' | 'large';
round?: boolean;
borderLess?: boolean;
color?: 'text-light' | 'text-base' | 'text-dark';
};
const props = withDefaults(defineProps<Props>(), {
size: 'medium',
round: false,
borderLess: false,
color: 'text-base',
});
</script>
<template>
<div
:class="[
$style.container,
$style[props.size],
{ [$style.round]: props.round, [$style.borderless]: props.borderLess },
]"
>
<N8nIcon
v-if="icon.type === 'icon'"
:icon="icon.value"
:class="$style.icon"
:color="color"
></N8nIcon>
<N8nText v-else-if="icon.type === 'emoji'" color="text-light" :class="$style.emoji">
{{ icon.value }}
</N8nText>
</div>
</template>
<style lang="scss" module>
.container {
display: flex;
align-items: center;
justify-content: center;
border: var(--border-width-base) var(--border-style-base) var(--color-foreground-light);
border-radius: var(--border-radius-base);
&.round {
border-radius: 50%;
}
&.borderless {
border: none;
}
}
.mini {
width: var(--spacing-xs);
height: var(--spacing-xs);
.icon {
font-size: var(--font-size-2xs);
}
.emoji {
font-size: var(--font-size-3xs);
}
}
.small {
min-width: var(--spacing-l);
height: var(--spacing-l);
.emoji {
font-size: var(--font-size-2xs);
}
}
.medium {
min-width: var(--spacing-xl);
height: var(--spacing-xl);
.emoji {
font-size: var(--font-size-xs);
}
}
.large {
// Making this in line with user avatar size
min-width: 40px;
height: 40px;
.emoji {
font-size: var(--font-size-s);
}
}
</style>