Skip to main content

Sicredi Integration Modal

This section describes the BfmSicrediIntegrationModalComponent component.

Usage

You must import the BfmSicrediIntegrationModalComponent and provide it to ModalService to open the modal.

info

Modals are not components. They must be used with the ModalService to be opened.

To better understand, check the Modals documentation.

sicredi-integration-modal.component.ts
import { BfmSicrediIntegrationModalComponent } from '@celerofinancas/ui-user-kit';
import { ModalService } from "@celerofinancas/ui-modals";
import { Component, inject } from '@angular/core';

@Component({
standalone: true,
selector: 'sicredi-integration',
templateUrl: './sicredi-integration.component.html',
})
export class SicrediIntegrationComponent {
/**
* Modal service for handling modals
*/
private modalService = inject(ModalService);

/**
* Open the modal
*/
public openModal(): void {
this.modalService.open(BfmSicrediIntegrationModalComponent, {});
};
}

Inputs

The BfmSicrediIntegrationModalComponent modalRef has no inputs.

Events

The BfmSicrediIntegrationModalComponent modalRef has no events.