UNPKG

@aurigma/design-atoms-interfaces

Version:

29 lines (28 loc) 900 B
import { IShapeItemData } from "./IShapeItemData"; /** * A structure defining the default parameters of ellipses. * @remarks You can apply these parameters to the `ellipse` object through either **clientConfig.json** or {@link https://customerscanvas.com/dev/editors/iframe-api/reference/design-editor-iframe/iconfiguration.html|IConfiguration}. * @example * ```json * { * "defaultItemsConfig": { * "ellipse": { * "borderWidth": 2, * "borderColor": "rgba(155,0,0,0.55)", * "textWrappingMode": "tight", * "shapePermissions": { * "allowChangeBorderWidth": false * }, * "location": { * "x": "50%", "y": "0%", * "originX": "right", * "originY": "top" * } * } * } * } * ``` * @public */ export interface IEllipseItemData extends IShapeItemData { }