UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

28 lines (27 loc) 962 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from "./preventable-event"; /** * Arguments for the `executeAction` event. The `executeAction` event fires when the user clicks * a quick action button. Calling `preventDefault()` suppresses the built-in action handler. */ export class ExecuteActionEvent extends PreventableEvent { /** * The action that will be executed. */ action; /** * The message that contains the action. */ message; /** * @hidden */ constructor(action, message) { super(); this.action = action; this.message = message; } }