rad-gui
Version:
A simple, feature-rich, and easy-to-use GUI library for better visibility into data intensive applications.
18 lines (17 loc) • 515 B
TypeScript
import BaseControl from './base-control';
export default class ColorControl extends BaseControl {
$input: HTMLInputElement;
$text: HTMLInputElement;
$display: HTMLDivElement;
_format: any;
_rgbScale: any;
_initialValueHexString: any;
_textFocused: boolean;
constructor(parent: any, object: any, property: any, rgbScale: any);
reset(): this;
_setValueFromHexString(value: any): void;
save(): any;
load(value: any): this;
update(): this;
}
export { ColorControl };