@progress/kendo-angular-editor
Version:
Kendo UI Editor for Angular
32 lines (31 loc) • 1.63 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 { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
import { ItemDisabledFn } from '@progress/kendo-angular-dropdowns';
import { EditorLocalizationService } from '../localization/editor-localization.service';
import { FormatItem } from '../common/format-item.interface';
import type { EditorComponent } from '../editor.component';
import { FormatDropDownListComponent } from '../tools/format/editor-format-dropdownlist.component';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export declare class FormatDialogComponent extends DialogContentBase {
dialog: DialogRef;
private localization;
editor: EditorComponent;
formatDropDownList: FormatDropDownListComponent;
data: FormatItem[];
defaultItem: FormatItem;
value: string;
itemDisabled: ItemDisabledFn;
constructor(dialog: DialogRef, localization: EditorLocalizationService);
onCancelAction(): void;
onConfirmAction(): void;
setData(args: any): void;
textFor(key: string): string;
static ɵfac: i0.ɵɵFactoryDeclaration<FormatDialogComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<FormatDialogComponent, "ng-component", never, { "editor": { "alias": "editor"; "required": false; }; }, {}, never, never, true, never>;
}