You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
613 B
36 lines
613 B
7 years ago
|
const autoAdjustOverflow = {
|
||
|
adjustX: 1,
|
||
|
adjustY: 1,
|
||
|
}
|
||
|
|
||
|
const targetOffset = [0, 0]
|
||
|
|
||
|
const placements = {
|
||
|
bottomLeft: {
|
||
|
points: ['tl', 'tl'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [0, -3],
|
||
|
targetOffset,
|
||
|
},
|
||
|
bottomRight: {
|
||
|
points: ['tr', 'tr'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [0, -3],
|
||
|
targetOffset,
|
||
|
},
|
||
|
topRight: {
|
||
|
points: ['br', 'br'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [0, 3],
|
||
|
targetOffset,
|
||
|
},
|
||
|
topLeft: {
|
||
|
points: ['bl', 'bl'],
|
||
|
overflow: autoAdjustOverflow,
|
||
|
offset: [0, 3],
|
||
|
targetOffset,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default placements
|