fix(stage): 多选时禁止拖出边界

This commit is contained in:
roymondchen 2022-08-12 14:18:32 +08:00 committed by jia000
parent c949590f80
commit edf66cc076

View File

@ -244,6 +244,15 @@ export default class StageMultiDragResize extends EventEmitter {
zoom: 1,
origin: true,
padding: { left: 0, top: 0, right: 0, bottom: 0 },
snappable: true,
bounds: {
top: 0,
// 设置0的话无法移动到left为0所以只能设置为-1
left: -1,
right: this.container.clientWidth - 1,
bottom: this.container.clientHeight,
...(multiMoveableOptions.bounds || {}),
},
...options,
...multiMoveableOptions,
};