Skip to main content

Ailos Integration Modal

This section describes the BfmAilosIntegrationModalComponent component.

Usage

You must import the BfmAilosIntegrationModalComponent 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.

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

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

/**
* Open the modal
*/
public openModal(): void {
this.modalService.open(BfmAilosIntegrationModalComponent, {
ailosCheckingAccounts: {}[];
company: {};
keychain: {};
isClient: true;
});
};
}

Inputs

The BfmAilosIntegrationModalComponent modalRef has the following inputs:

[ailosCheckingAccounts]

Ailos Checking Account Data Info

Type
CheckingAccount[]

[company]

Company Data Info

Type
Company

[keychain]

Modal Keychain

Type
KeyChain

[isClient]

Is Client boolean info

Type
boolean

Events

The AilosIntegrationModalComponent modalRef has no events.