UNPKG

@dooboostore/dom-render

Version:
11 lines 431 B
import { ValidatorArray } from './ValidatorArray'; export class AllUnCheckedValidatorArray extends ValidatorArray { constructor(value, target, event, autoValid = true) { super(value, target, event, autoValid); } valid() { var _a; return !(((_a = this.value) !== null && _a !== void 0 ? _a : []).filter(it => it.checked).length > 0); } } //# sourceMappingURL=AllUnCheckedValidatorArray.js.map