@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.
25 lines (24 loc) • 409 B
JavaScript
export const defaultValidationStateValues = {
pristine: true,
dirty: false,
untouched: true,
touched: false,
valid: true,
invalid: false,
errors: []
};
export const defaultValidationFieldValues = {
value: void 0,
validators: []
};
export const reservedValidationFields = [
"value",
"validators",
"pristine",
"dirty",
"untouched",
"touched",
"valid",
"invalid",
"errors"
];