mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix broken types for globally defined components (no-changelog) (#16505)
Co-authored-by: Mutasem Aldmour <mutasem@n8n.io>
This commit is contained in:
@@ -2,17 +2,18 @@
|
||||
import { nextTick, ref } from 'vue';
|
||||
import { useToast } from '@/composables/useToast';
|
||||
import { onClickOutside } from '@vueuse/core';
|
||||
import type { InputType } from '@n8n/design-system';
|
||||
|
||||
interface Props {
|
||||
modelValue: string;
|
||||
subtitle?: string;
|
||||
type: string;
|
||||
type: InputType;
|
||||
readonly?: boolean;
|
||||
placeholder?: string;
|
||||
maxlength?: number;
|
||||
required?: boolean;
|
||||
autosize?: boolean | { minRows: number; maxRows: number };
|
||||
inputType?: string;
|
||||
inputType?: InputType;
|
||||
maxHeight?: string;
|
||||
}
|
||||
const props = withDefaults(defineProps<Props>(), {
|
||||
|
||||
Reference in New Issue
Block a user