jodit-pro
Version:
PRO Version of Jodit Editor
24 lines (23 loc) • 857 B
TypeScript
/*!
* 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 { IUIRange } from "jodit/esm/types/index";
import { UIInput } from "jodit/esm/core/ui/index";
export declare class UIRange extends UIInput implements IUIRange {
nativeInput: HTMLInputElement;
state: IUIRange['state'];
/** @override */
className(): string;
constructor(jodit: UIInput['jodit'], options: Partial<IUIRange['state']>);
private appendUIRange;
private startValue;
private startX;
private width;
protected onDragStart(e: MouseEvent): void;
protected onDrag(e: MouseEvent): void;
protected onDragEnd(): void;
protected onChangeSelfValue(): void;
destruct(): any;
}