UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

11 lines (10 loc) 279 B
import type { Ref } from 'vue'; export interface FormInjection { schema?: Ref; size: Ref<string>; color: Ref<string>; disabled: Ref<boolean>; readonly: Ref<boolean>; onInput: (name: any, value: any) => void; onBlur: (name: any, event: any) => void; }