oui-kit
Version:
🎯 *UI toolkit with a French touch* 🇫🇷
18 lines (17 loc) • 829 B
TypeScript
import { DirectiveBinding } from 'vue';
/** Vue3 Directive! Toggle ref value on click or context menu. */
export declare const vActionToggle: {
mounted: (el: HTMLElement, binding: DirectiveBinding, ...args: any) => void;
};
/** Vue3 Directive! Set ref value to true on click or context menu. */
export declare const vActionTrue: {
mounted: (el: HTMLElement, binding: DirectiveBinding) => void;
};
/** Vue3 Directive! Fixes an issue in WKWebView where the cursor pretends text selection even if user-select: none; */
export declare const vNoSelection: {
mounted: (el: HTMLElement, _binding: DirectiveBinding) => void;
};
/** Vue3 Directive! Set focus onMounted. Use with care, causes issues for transitions. */
export declare const vAutofocus: {
mounted: (el: HTMLElement, _binding: DirectiveBinding) => void;
};