ng-components-tsi 0.0.75 → 0.0.76
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/fesm2022/ng-components-tsi.mjs +3 -2
- package/fesm2022/ng-components-tsi.mjs.map +1 -1
- package/lib/modals/general/md-generico/md-generico.component.d.ts +2 -2
- package/lib/models/button-color.model.d.ts +1 -1
- package/lib/ui/forms/inputs/input/input.component.d.ts +4 -4
- package/lib/ui/forms/inputs/input-radio/input-radio.component.d.ts +1 -1
- package/lib/ui/forms/lists/list-option/list-option.component.d.ts +1 -1
- package/lib/ui/tables/paginador/paginador.component.d.ts +1 -1
- package/lib/ui/tables/table-ultimate/table-ultimate.component.d.ts +2 -2
- package/lib/ui/tables/table-ultimate-pivot/table-ultimate-pivot.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -268,14 +268,15 @@ class ButtonComponent {
|
|
|
268
268
|
getWidthClass() {
|
|
269
269
|
return this.isFullWidth() ? 'w-100' : 'w-auto w-sm-100';
|
|
270
270
|
}
|
|
271
|
-
iconsWithImage = ['sunat', 'bcp', 'ibk', 'bbva'];
|
|
271
|
+
iconsWithImage = ['sunat', 'bcp', 'ibk', 'bbva', 'bnacion'];
|
|
272
272
|
isImageIcon = (icon) => this.iconsWithImage.includes(icon);
|
|
273
273
|
getImageName = () => {
|
|
274
274
|
const imageIcon = {
|
|
275
275
|
'sunat': 'Sunat.ico',
|
|
276
276
|
'bcp': 'BCP.svg',
|
|
277
277
|
'ibk': 'IBK.svg',
|
|
278
|
-
'bbva': 'BBVA.svg'
|
|
278
|
+
'bbva': 'BBVA.svg',
|
|
279
|
+
'bnacion': 'BNACION.svg'
|
|
279
280
|
};
|
|
280
281
|
return `assets/images/${imageIcon[this.icon()]}`;
|
|
281
282
|
};
|