igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
11 lines • 372 B
JavaScript
import messages from '../common/localization/validation-en.js';
import { requiredValidator } from '../common/validators.js';
export const maskValidators = [
requiredValidator,
{
key: 'badInput',
message: messages.mask,
isValid: ({ parser, maskedValue }) => parser.isValidString(maskedValue),
},
];
//# sourceMappingURL=validators.js.map