UNPKG

jodit-pro

Version:

PRO Version of Jodit Editor

21 lines (20 loc) 811 B
/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import type { IDictionary } from "jodit/esm/types/index"; import { UIElement } from "jodit/esm/core/ui/index"; export declare class UIGButton extends UIElement { protected style: IDictionary; /** @override */ className(): string; /** @override */ constructor(jodit: UIElement['jodit'], style: IDictionary); private __updateStyles; static applyStyle(style: IDictionary, btn: HTMLElement): void; update(): void; /** @override */ protected render(): string; static extractStyle(state: IDictionary, target: HTMLButtonElement | HTMLAnchorElement): void; }