UNPKG

comindware.core.ui

Version:

Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.

17 lines (15 loc) 479 B
import LocalizationService from '../../services/LocalizationService'; import formRepository from '../formRepository'; import _ from 'underscore'; export default function(options) { return formRepository.validators.regexp( _.extend( { type: 'phone', message: LocalizationService.get('CORE.FORM.VALIDATION.PHONE'), regexp: /^\+?[0-9]+[0-9\-().\s]{10,}$/ }, options ) ); }