feat: compose form improvements (#13668)

This commit is contained in:
Sivin Varghese
2026-04-14 16:36:06 +05:30
committed by aakashb95
parent b1069d9624
commit cf1cfa6ca0
18 changed files with 354 additions and 73 deletions
@@ -28,7 +28,7 @@ const props = defineProps({
medium: { type: String, default: '' },
});
const emit = defineEmits(['update:modelValue']);
const emit = defineEmits(['update:modelValue', 'executeCopilotAction']);
const slots = useSlots();
@@ -113,6 +113,9 @@ watch(
@input="handleInput"
@focus="handleFocus"
@blur="handleBlur"
@execute-copilot-action="
(...args) => emit('executeCopilotAction', ...args)
"
/>
<div
v-if="showCharacterCount || slots.actions"