From 1ffa054e6f72f7248f288c74064a59cd86d27f2d Mon Sep 17 00:00:00 2001 From: markuczy Date: Thu, 19 Dec 2024 11:30:09 +0100 Subject: [PATCH] fix: portal dialog service docs fix --- .../src/lib/services/portal-dialog.service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/portal-integration-angular/src/lib/services/portal-dialog.service.ts b/libs/portal-integration-angular/src/lib/services/portal-dialog.service.ts index 88546314..e896f70b 100644 --- a/libs/portal-integration-angular/src/lib/services/portal-dialog.service.ts +++ b/libs/portal-integration-angular/src/lib/services/portal-dialog.service.ts @@ -280,11 +280,13 @@ export class PortalDialogService { * * - {@link DialogSecondaryButtonDisabled} - dialog will use the EventEmitter to determine if the secondary button should be disabled * + * - {@link DialogCustomButtonsDisabled} - dialog will use the EventEmitter to determine if the custom buttons should be disabled + * * @param title Translation key for dialog title * @param componentOrMessage Either a component or a translation key of a message with optional parameters and icon to be displayed next to the message * @param primaryButtonTranslationKeyOrDetails Translation key with optional parameters and icon to be displayed next to the text of the button * @param secondaryButtonTranslationKeyOrDetails Translation key with optional parameters and icon to be displayed next to the text of the button - * @param showXButton Determines if X (close) button should be visible in the top right corner of the dialog (not displayed if set to false and displayed if set to true). NOTE: If only one button is being used then close button will not be visible on the dialog + * @param extras Configuration object allowing for customization of the dialog behavior and visual aspects * @returns Observable containing dialog state on close * *