We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d169452 commit 561041cCopy full SHA for 561041c
components/popconfirm/popconfirm.ts
@@ -76,6 +76,8 @@ export class NzPopconfirmDirective extends NzTooltipBaseDirective {
76
@Input() @WithConfig() nzPopconfirmBackdrop?: boolean = false;
77
@Input() @WithConfig() nzAutofocus: NzAutoFocusType = null;
78
79
+ // eslint-disable-next-line @angular-eslint/no-output-rename
80
+ @Output('nzPopconfirmVisibleChange') override readonly visibleChange = new EventEmitter<boolean>();
81
@Output() readonly nzOnCancel = new EventEmitter<void>();
82
@Output() readonly nzOnConfirm = new EventEmitter<void>();
83
0 commit comments