* Shortcuts to zoom in/out and to reset zoom * add support for numerical keys * Fixed Firefox compatibility Co-authored-by: David Luzar <luzar.david@gmail.com>
39 lines
924 B
TypeScript
39 lines
924 B
TypeScript
export { ActionManager } from "./manager";
|
|
export { actionDeleteSelected } from "./actionDeleteSelected";
|
|
export {
|
|
actionBringForward,
|
|
actionBringToFront,
|
|
actionSendBackward,
|
|
actionSendToBack,
|
|
} from "./actionZindex";
|
|
export { actionSelectAll } from "./actionSelectAll";
|
|
export {
|
|
actionChangeStrokeColor,
|
|
actionChangeBackgroundColor,
|
|
actionChangeStrokeWidth,
|
|
actionChangeFillStyle,
|
|
actionChangeSloppiness,
|
|
actionChangeOpacity,
|
|
actionChangeFontSize,
|
|
actionChangeFontFamily,
|
|
} from "./actionProperties";
|
|
|
|
export {
|
|
actionChangeViewBackgroundColor,
|
|
actionClearCanvas,
|
|
actionZoomIn,
|
|
actionZoomOut,
|
|
actionResetZoom,
|
|
} from "./actionCanvas";
|
|
|
|
export { actionFinalize } from "./actionFinalize";
|
|
|
|
export {
|
|
actionChangeProjectName,
|
|
actionChangeExportBackground,
|
|
actionSaveScene,
|
|
actionLoadScene,
|
|
} from "./actionExport";
|
|
|
|
export { actionCopyStyles, actionPasteStyles } from "./actionStyles";
|