d2/d2layouts/d2layoutfeatures/d2layoutfeatures.go
2023-02-18 23:35:18 -08:00

11 lines
409 B
Go

package d2layoutfeatures
// When this is true, objects can set ther `near` key to another object
// When this is false, objects can only set `near` to constants
const NEAR_OBJECT = "near_object"
// When this is true, containers can have dimensions set
const CONTAINER_DIMENSIONS = "container_dimensions"
// When this is true, objects can specify their `top` and `left` keywords
const TOP_LEFT = "top_left"