*/},{key:"removeCheckboxErrorClasses",value:function removeCheckboxErrorClasses(e){var t=this.$element.find(':checkbox[name="'.concat(e,'"]'));var i=this.findCheckboxLabels(t);var n=this.findFormError(t);i.length&&i.removeClass(this.options.labelErrorClass);n.length&&n.removeClass(this.options.formErrorClass);t.removeClass(this.options.inputErrorClass).attr({"data-invalid":null,"aria-invalid":null})}
/**
     * Removes CSS error class as specified by the Abide settings from the label, input, and the form
     * @param {Object} $el - jQuery object to remove the class from
     */},{key:"removeErrorClasses",value:function removeErrorClasses(e){if("radio"===e[0].type)return this.removeRadioErrorClasses(e.attr("name"));if("checkbox"===e[0].type)return this.removeCheckboxErrorClasses(e.attr("name"));var t=this.findLabel(e);var i=this.findFormError(e);t.length&&t.removeClass(this.options.labelErrorClass);i.length&&i.removeClass(this.options.formErrorClass);e.removeClass(this.options.inputErrorClass).attr({"data-invalid":null,"aria-invalid":null});e.data("abide-describedby")&&e.removeAttr("aria-describedby").removeData("abide-describedby")}