12 lines
409 B
Go
12 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"
|