@progress/kendo-vue-editor
Version:
31 lines (30 loc) • 975 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { EditorView } from '@progress/kendo-editor-common';
export interface EditorDialogProps {
/**
* The `EditorView` object.
*/
view: EditorView;
/**
* The `settings` object of the Dialog.
*/
settings: any;
/**
* Represents the `dir` HTML attribute.
*/
dir?: string;
/**
* The `close` event which will be triggered when the Dialog is about to be unmounted.
*/
onClose?: () => void;
/**
* Fires when a Dialog is about to be rendered. Used to override the default appearance of the Dialog.
*/
render?: any;
}