feat(editor): NDV UI overhaul experiment (#14209)

Co-authored-by: jakeranallo <jake.ranallo@gmail.com>
This commit is contained in:
Elias Meire
2025-07-04 17:14:17 +02:00
committed by GitHub
parent 5db122be0d
commit 6ef38411d8
33 changed files with 2528 additions and 195 deletions

View File

@@ -51,6 +51,7 @@ const props = withDefaults(
hideIcon?: boolean;
hideLabel?: boolean;
tooltip?: string;
tooltipPlacement?: 'top' | 'bottom' | 'left' | 'right';
}>(),
{
disabled: false,
@@ -387,7 +388,11 @@ async function onClick() {
</script>
<template>
<N8nTooltip placement="right" :disabled="!tooltipText" :content="tooltipText">
<N8nTooltip
:placement="tooltipPlacement ?? 'right'"
:disabled="!tooltipText"
:content="tooltipText"
>
<N8nButton
v-bind="$attrs"
:loading="isLoading"