I can see that there are references to using size="Large" when using <abp-modal> in ABP.io commercial, however this does not seem to apply to Angular. Is there a way to specify a size for a modal?
size="Large"
<abp-modal>
Using ABP.io 7.3 currently.
You can pass options to abp-modal as follows:
abp-modal
<abp-modal [(visible)]="visible" [busy]="modalBusy" [options]="{ size: 'sm' }">
Allowed size options are: 'sm' | 'lg' | 'xl' |
You can pass options to
abp-modal
as follows:Allowed size options are: 'sm' | 'lg' | 'xl' |
References