UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

17 lines (16 loc) 736 B
import { Violation, IViolationInfo } from "./Violation"; import { Item } from "@aurigma/design-atoms-model/Product/Items"; import { IViewerMessagesConfig } from "../../../Viewer/Interfaces"; import { ProductHandler } from "../../ProductHandler"; export declare class MaxArtworkAreaViolation extends Violation { private _productHandler; private _messages; static statePropertyName: string; static dataPropertyName: string; constructor(_productHandler: ProductHandler, _messages: IViewerMessagesConfig); isAvailableFor(item: Item): boolean; getStatePropertyName(): string; getDataPropertyName(): string; getViolationInfo(item: Item): IViolationInfo; private _isExceedConstraints; }