
* feat: add `reduceToCommonValue()` & improve opacity slider * feat: generalize and simplify type conversion cache * refactor: change cache from atoms to Map * feat: always attempt to reuse original fontSize when converting generic types
20 lines
425 B
TypeScript
20 lines
425 B
TypeScript
export {
|
|
isSomeElementSelected,
|
|
getElementsWithinSelection,
|
|
getSelectedElements,
|
|
getTargetElements,
|
|
} from "@excalidraw/element";
|
|
export { calculateScrollCenter } from "./scroll";
|
|
export {
|
|
hasBackground,
|
|
hasStrokeWidth,
|
|
hasStrokeStyle,
|
|
canHaveArrowheads,
|
|
canChangeRoundness,
|
|
} from "@excalidraw/element";
|
|
export {
|
|
getNormalizedZoom,
|
|
getNormalizedGridSize,
|
|
getNormalizedGridStep,
|
|
} from "./normalize";
|