ba48974351
* refactor: update UIOptions.canvasActions.export to be a an object * fix * fix * dnt show export icon when false * fix * inline * memoize UIOptions * update docs * fix * tweak readme Co-authored-by: David Luzar <luzar.david@gmail.com>
83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
export { actionDeleteSelected } from "./actionDeleteSelected";
|
|
export {
|
|
actionBringForward,
|
|
actionBringToFront,
|
|
actionSendBackward,
|
|
actionSendToBack,
|
|
} from "./actionZindex";
|
|
export { actionSelectAll } from "./actionSelectAll";
|
|
export { actionDuplicateSelection } from "./actionDuplicateSelection";
|
|
export {
|
|
actionChangeStrokeColor,
|
|
actionChangeBackgroundColor,
|
|
actionChangeStrokeWidth,
|
|
actionChangeFillStyle,
|
|
actionChangeSloppiness,
|
|
actionChangeOpacity,
|
|
actionChangeFontSize,
|
|
actionChangeFontFamily,
|
|
actionChangeTextAlign,
|
|
} from "./actionProperties";
|
|
|
|
export {
|
|
actionChangeViewBackgroundColor,
|
|
actionClearCanvas,
|
|
actionZoomIn,
|
|
actionZoomOut,
|
|
actionResetZoom,
|
|
actionZoomToFit,
|
|
actionToggleTheme,
|
|
} from "./actionCanvas";
|
|
|
|
export { actionFinalize } from "./actionFinalize";
|
|
|
|
export {
|
|
actionChangeProjectName,
|
|
actionChangeExportBackground,
|
|
actionSaveToActiveFile,
|
|
actionSaveFileToDisk,
|
|
actionLoadScene,
|
|
} from "./actionExport";
|
|
|
|
export { actionCopyStyles, actionPasteStyles } from "./actionStyles";
|
|
export {
|
|
actionToggleCanvasMenu,
|
|
actionToggleEditMenu,
|
|
actionFullScreen,
|
|
actionShortcuts,
|
|
} from "./actionMenu";
|
|
|
|
export { actionGroup, actionUngroup } from "./actionGroup";
|
|
|
|
export { actionGoToCollaborator } from "./actionNavigate";
|
|
|
|
export { actionAddToLibrary } from "./actionAddToLibrary";
|
|
|
|
export {
|
|
actionAlignTop,
|
|
actionAlignBottom,
|
|
actionAlignLeft,
|
|
actionAlignRight,
|
|
actionAlignVerticallyCentered,
|
|
actionAlignHorizontallyCentered,
|
|
} from "./actionAlign";
|
|
|
|
export {
|
|
distributeHorizontally,
|
|
distributeVertically,
|
|
} from "./actionDistribute";
|
|
|
|
export { actionFlipHorizontal, actionFlipVertical } from "./actionFlip";
|
|
|
|
export {
|
|
actionCopy,
|
|
actionCut,
|
|
actionCopyAsPng,
|
|
actionCopyAsSvg,
|
|
} from "./actionClipboard";
|
|
|
|
export { actionToggleGridMode } from "./actionToggleGridMode";
|
|
export { actionToggleZenMode } from "./actionToggleZenMode";
|
|
|
|
export { actionToggleStats } from "./actionToggleStats";
|