refactor!: remove unused CellMap type (#210)
parent
3d71f15347
commit
fd0d47ad4a
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
Breaking Changes
|
**Breaking Changes**
|
||||||
- `Stylesheet.getDefaultVertexStyle` and `Stylesheet.getDefaultEdgeStyle` no longer return `undefined`.
|
- `Stylesheet.getDefaultVertexStyle` and `Stylesheet.getDefaultEdgeStyle` no longer return `undefined`.
|
||||||
|
- remove the `CellMap` type. It was not used in the maxGraph code, which should have no impact.
|
||||||
|
|
||||||
## 0.2.1
|
## 0.2.1
|
||||||
|
|
||||||
|
|
|
@ -23,10 +23,6 @@ import type Shape from './view/geometry/Shape';
|
||||||
import type { Graph } from './view/Graph';
|
import type { Graph } from './view/Graph';
|
||||||
import type ImageBox from './view/image/ImageBox';
|
import type ImageBox from './view/image/ImageBox';
|
||||||
|
|
||||||
export type CellMap = {
|
|
||||||
[id: string]: Cell;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type FilterFunction = (cell: Cell) => boolean;
|
export type FilterFunction = (cell: Cell) => boolean;
|
||||||
|
|
||||||
export type UndoableChange = {
|
export type UndoableChange = {
|
||||||
|
|
Loading…
Reference in New Issue