gd-bs 6.6.69 → 6.6.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -688,6 +688,11 @@ var FormControl = /** @class */ (function () {
688
688
  // Set the flag
689
689
  validation.isValid = value.length > 0;
690
690
  }
691
+ // Else, see if this is a checkbox
692
+ else if (this._cb) {
693
+ // Set the flag
694
+ validation.isValid = value.selectedItems ? true : false;
695
+ }
691
696
  }
692
697
  // See if an event exists
693
698
  if (this._props.onValidate) {