UNPKG

@progress/kendo-angular-diagrams

Version:

Kendo UI Angular diagrams component

30 lines (29 loc) 877 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** @hidden */ export const DEFAULT_EDITABLE_SHAPE = { drag: true, remove: true, connect: true, }; /** @hidden */ export const DEFAULT_EDITABLE_CONNECTION = { drag: true, remove: true, }; /** @hidden */ export const CONNECTION_DEFAULTS = { editable: DEFAULT_EDITABLE_CONNECTION }; /** @hidden */ export const SHAPE_DEFAULTS = { editable: DEFAULT_EDITABLE_SHAPE, height: 100, width: 100, minHeight: 50, minWidth: 50, x: 0, y: 0, type: 'rectangle', selectable: true, };