@progress/kendo-angular-editor
Version:
Kendo UI Editor for Angular
28 lines (27 loc) • 1.65 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
import { EditorCommandDialog } from '../shared/editor-command-dialog';
import { EditorLocalizationService } from '../../localization/editor-localization.service';
import { ProviderService } from '../../common/provider.service';
import { EditorToolsService } from '../tools.service';
import * as i0 from "@angular/core";
/**
* Configures a ToolBarButtonComponent as an Editor **ViewSource** tool
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
* The directive sets the SVG icon and `click` event handlers for the button.
*
* @example
* ```html
* <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>
* ```
* @remarks
* Applied to: {@link ToolBarButtonComponent}
*/
export declare class EditorViewSourceButtonDirective extends EditorCommandDialog {
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
static ɵfac: i0.ɵɵFactoryDeclaration<EditorViewSourceButtonDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorViewSourceButtonDirective, "kendo-toolbar-button[kendoEditorViewSourceButton]", never, {}, {}, never, never, true, never>;
}