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.

33 lines (32 loc) 479 B
import { alpha, alphanumeric, custom, number, email, max, maxLength, min, minLength, required, sameAs } from "@inkline/inkline/validation/validators"; export const validators = { alpha, alphanumeric, custom, number, email, max, maxLength, min, minLength, required, sameAs }; export function registerValidator(name, validator) { validators[name] = validator; } export function unregisterValidator(name) { delete validators[name]; }