2017-12-08 14:31:53 +08:00
|
|
|
const autoAdjustOverflow = {
|
|
|
|
adjustX: 1,
|
|
|
|
adjustY: 1,
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2017-12-08 14:31:53 +08:00
|
|
|
|
|
|
|
export const 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],
|
|
|
|
},
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2017-12-08 14:31:53 +08:00
|
|
|
|
2019-01-12 11:33:27 +08:00
|
|
|
export default placements;
|