UNPKG

jjb-lc-designable

Version:

基于alibaba-designable源码二次封装的表单设计器。

10 lines 287 B
import { CursorType, KeyCode, Shortcut } from '../models'; export const CursorSwitchSelection = new Shortcut({ codes: [KeyCode.Shift, KeyCode.S], handler(context) { const engine = context?.engine; if (engine) { engine.cursor.setType(CursorType.Selection); } } });