Sieg Integration Modal
This section describes the BfmSiegIntegrationModalComponent component.
Usage
You must import the BfmSiegIntegrationModalComponent 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.
sieg-integration-modal.component.ts
import { BfmSiegIntegrationModalComponent } from '@celerofinancas/ui-user-kit';
import { ModalService } from "@celerofinancas/ui-modals";
import { Component, inject } from '@angular/core';
@Component({
standalone: true,
selector: 'sieg-integration',
templateUrl: './sieg-integration.component.html',
})
export class SiegIntegrationComponent {
/**
* Modal service for handling modals
*/
private modalService = inject(ModalService);
/**
* Open the modal
*/
public openModal(): void {
this.modalService.open(BfmSiegIntegrationModalComponent, {});
};
}
Inputs
The BfmSiegIntegrationModalComponent modalRef has no inputs.
Events
The BfmSiegIntegrationModalComponent modalRef has no events.