@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
35 lines (34 loc) • 1.31 kB
TypeScript
import { SelectionStyleConfig, HoverStyle, SpotlightStyle, RubberbandStyle } from "../Viewer";
export declare class CanvasRendererStyle {
selection: SelectionStyleConfig;
hover: HoverStyle;
spotlight: SpotlightStyle;
rubberband: RubberbandStyle;
private _rotationGripColor;
private _rotationGripLineColor;
private _rotationGripLineLength;
private _baselineColor;
private _canvasItemHoverEnabled;
constructor();
get canvasItemHoverEnabled(): boolean;
set canvasItemHoverEnabled(value: boolean);
get baselineColor(): string;
set baselineColor(value: string);
get rotationGripSize(): number;
set rotationGripSize(value: number);
get resizeGripSize(): number;
set resizeGripSize(value: number);
get resizeGripColor(): string;
set resizeGripColor(value: string);
get rotationGripColor(): string;
set rotationGripColor(value: string);
get resizeGripLineColor(): string;
set resizeGripLineColor(value: string);
get rotationGripLineColor(): string;
set rotationGripLineColor(value: string);
get rotationGripLineLength(): number;
set rotationGripLineLength(value: number);
get highlightColor(): string;
get hoverColor(): string;
set hoverColor(value: string);
}