ng-inail-common 1.0.422 → 1.0.423

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.
@@ -9853,7 +9853,7 @@
9853
9853
  RadioSelectComponent.decorators = [
9854
9854
  { type: i0.Component, args: [{
9855
9855
  selector: 'inail-radio-select',
9856
- template: "<div [id]='id' class=\"col-lg-{{lg}} col-md-{{md}} col-sm-{{sm}} col-xs-{{xs}} {{class}} noPadding inail-radio-select\">\n <fieldset class=\"form-group col-xs-12 noPaddingLeft\">\n <legend class=\"radio-legend\"\n [hidden]=\"hiddenLabel\"\n [innerHTML]=\"label?.concat(required ? ' '+(requiredSimbol || '*') : '')\"></legend>\n <div class=\"radio {{inline === true ? 'inline' : ''}}\" *ngFor=\"let option of options\">\n <label [for]=\"option?.id\">\n <input [id]=\"option?.id\"\n type=\"radio\"\n class=\"{{inputClass}} {{option?.class}}\"\n [name]=\"name\"\n [disabled]=\"disabled\"\n [attr.aria-required]=\"required === true ? true : undefined\"\n [attr.aria-invalid]=\"checkError() === true ? true : undefined\"\n [attr.aria-describedBy]=\"checkDescError() ? id+'-description-error' : undefined\"\n [value]=\"option?.value\"\n [title]=\"title\"\n [(ngModel)]=\"value\">\n <span [innerHTML]=\"option?.label\"></span>\n </label>\n </div>\n <div *ngIf=\"checkDescError()\">\n <span [id]=\"id+'-description-error'\" class=\"msg msg-errore\">\n <strong [innerHTML]=\"(errorPrefix===false ? '' : 'ERRORE: ')+getDescError()\"></strong>\n </span>\n </div>\n </fieldset>\n</div>\n",
9856
+ template: "<div [id]='id' class=\"col-lg-{{lg}} col-md-{{md}} col-sm-{{sm}} col-xs-{{xs}} {{class}} noPadding inail-radio-select\">\n <fieldset class=\"form-group col-xs-12 noPaddingLeft\">\n <legend class=\"radio-legend\"\n [hidden]=\"hiddenLabel\"\n [innerHTML]=\"label?.concat(required ? ' '+(requiredSimbol || '*') : '')\"></legend>\n <div class=\"radio {{inline === true ? 'inline' : ''}}\" *ngFor=\"let option of options\">\n <label [for]=\"option?.id\">\n <input [id]=\"option?.id\"\n type=\"radio\"\n class=\"{{inputClass}} {{option?.class}}\"\n [attr.name]=\"name\"\n [disabled]=\"disabled\"\n [attr.aria-required]=\"required === true ? true : undefined\"\n [attr.aria-invalid]=\"checkError() === true ? true : undefined\"\n [attr.aria-describedBy]=\"checkDescError() ? id+'-description-error' : undefined\"\n [value]=\"option?.value\"\n [title]=\"title\"\n [(ngModel)]=\"value\">\n <span [innerHTML]=\"option?.label\"></span>\n </label>\n </div>\n <div *ngIf=\"checkDescError()\">\n <span [id]=\"id+'-description-error'\" class=\"msg msg-errore\">\n <strong [innerHTML]=\"(errorPrefix===false ? '' : 'ERRORE: ')+getDescError()\"></strong>\n </span>\n </div>\n </fieldset>\n</div>\n",
9857
9857
  encapsulation: i0.ViewEncapsulation.None,
9858
9858
  styles: [".inail-radio-select .radio.inline{display:inline-block;margin-right:20px}"]
9859
9859
  }] }