29 lines
507 B
Java
29 lines
507 B
Java
![]() |
var autoAdjustOverflow = {
|
||
|
adjustX: 1,
|
||
|
adjustY: 1
|
||
|
};
|
||
|
|
||
|
export var placements = {
|
||
|
topLeft: {
|
||
|
points: ['bl', 'tl'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [0, -7]
|
||
|
},
|
||
|
bottomLeft: {
|
||
|
points: ['tl', 'bl'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [0, 7]
|
||
|
},
|
||
|
leftTop: {
|
||
|
points: ['tr', 'tl'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [-4, 0]
|
||
|
},
|
||
|
rightTop: {
|
||
|
points: ['tl', 'tr'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [4, 0]
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default placements;
|