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 (14 loc) 433 B
import LocalizationService from '../../services/LocalizationService'; import formRepository from '../formRepository'; import _ from 'underscore'; export default function(options) { options = _.extend( { type: 'length', message: LocalizationService.get('CORE.FORM.VALIDATION.PASSWORD'), min: 8 }, options ); return formRepository.validators.length(options); }