feat(editor): Update styling of embedded NDV (no-changelog) (#17366)

This commit is contained in:
Suguru Inoue
2025-07-22 11:39:14 +02:00
committed by GitHub
parent c1aae67a04
commit ee67e9e354
31 changed files with 623 additions and 265 deletions

View File

@@ -22,12 +22,14 @@ type Props = {
nodeType?: INodeTypeDescription | null;
pushRef?: string;
hideDocs?: boolean;
tabsVariant?: 'modern' | 'legacy';
};
const props = withDefaults(defineProps<Props>(), {
modelValue: 'params',
nodeType: undefined,
pushRef: '',
tabsVariant: undefined,
});
const emit = defineEmits<{
'update:model-value': [tab: Tab];
@@ -147,6 +149,7 @@ onMounted(async () => {
<N8nTabs
:options="options"
:model-value="modelValue"
:variant="tabsVariant"
@update:model-value="onTabSelect"
@tooltip-click="onTooltipClick"
/>