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.
@@ -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
  };