@seniorsistemas/angular-components 14.10.1 → 14.10.2
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.
- package/bundles/seniorsistemas-angular-components.umd.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/dynamic-form/components/fields/radio-button/radio-button-field.component.js +2 -2
- package/esm2015/components/info-sign/info-sign.component.js +2 -2
- package/esm5/components/dynamic-form/components/fields/radio-button/radio-button-field.component.js +2 -2
- package/esm5/components/info-sign/info-sign.component.js +2 -2
- package/fesm2015/seniorsistemas-angular-components.js +2 -2
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +2 -2
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -3075,7 +3075,7 @@
|
|
|
3075
3075
|
InfoSignComponent = __decorate([
|
|
3076
3076
|
core.Component({
|
|
3077
3077
|
selector: "s-info-sign-component",
|
|
3078
|
-
template: "<span style=\"display: inline-flex; justify-content: flex-start; align-items: baseline;\">\n <span *ngTemplateOutlet=\"templateRef\"></span>\n <i class=\"fa fa-info-circle\"
|
|
3078
|
+
template: "<span style=\"display: inline-flex; justify-content: flex-start; align-items: baseline;\">\n <span *ngTemplateOutlet=\"templateRef\"></span>\n <i class=\"fa fa-info-circle\"\n aria-hidden=\"true\"\n style=\"padding-left: 10px\"\n [pTooltip]=\"tooltip\"\n [escape]=\"false\"></i>\n</span>"
|
|
3079
3079
|
})
|
|
3080
3080
|
], InfoSignComponent);
|
|
3081
3081
|
return InfoSignComponent;
|
|
@@ -4446,7 +4446,7 @@
|
|
|
4446
4446
|
], RadioButtonComponent.prototype, "onFocus", void 0);
|
|
4447
4447
|
RadioButtonComponent = __decorate([
|
|
4448
4448
|
core.Component({
|
|
4449
|
-
template: "<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div class=\"ui-g-12\" *ngFor=\"let option of field.options; let i = index\">\n <ng-container [ngTemplateOutlet]=\"radioButton\" [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <ng-container *ngFor=\"let option of field.options; let i = index\" [ngTemplateOutlet]=\"radioButton\"\n
|
|
4449
|
+
template: "<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div class=\"ui-g-12\" *ngFor=\"let option of field.options; let i = index\">\n <ng-container [ngTemplateOutlet]=\"radioButton\" [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let option of field.options; let i = index\" [ngTemplateOutlet]=\"radioButton\"\n [ngTemplateOutletContext]=\"{option: option, index: i}\">\n </ng-container>\n </div>\n</ng-template>\n\n<ng-template #radioButton let-option=\"option\" let-i=\"index\">\n <p-radioButton [name]=\"field.name\" [value]=\"option.value\" [label]=\"option.label\" [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-' + i\" [pTooltip]=\"field.tooltip\" (onClick)=\"onClick.next($event)\"\n (onFocus)=\"onFocus.next($event)\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n</ng-template>\n"
|
|
4450
4450
|
})
|
|
4451
4451
|
], RadioButtonComponent);
|
|
4452
4452
|
return RadioButtonComponent;
|