diff --git a/src/actions/actionProperties.tsx b/src/actions/actionProperties.tsx index e0d61a27..1a05bc7c 100644 --- a/src/actions/actionProperties.tsx +++ b/src/actions/actionProperties.tsx @@ -95,7 +95,7 @@ import { register } from "./register"; const FONT_SIZE_RELATIVE_INCREASE_STEP = 0.1; -const changeProperty = ( +export const changeProperty = ( elements: readonly ExcalidrawElement[], appState: AppState, callback: (element: ExcalidrawElement) => ExcalidrawElement, @@ -118,7 +118,7 @@ const changeProperty = ( }); }; -const getFormValue = function ( +export const getFormValue = function ( elements: readonly ExcalidrawElement[], appState: AppState, getAttribute: (element: ExcalidrawElement) => T,