@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
27 lines (24 loc) • 496 B
text/typescript
export const defaultValidationValues: { [key: string]: any } = {
pristine: true,
dirty: false,
untouched: true,
touched: false,
valid: true,
invalid: false,
errors: []
};
export const defaultFieldValidationValues: { [key: string]: any } = {
value: '',
validators: []
};
export const reservedValidationFields: string[] = [
'value',
'validators',
'pristine',
'dirty',
'untouched',
'touched',
'valid',
'invalid',
'errors'
];