You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
536 B
13 lines
536 B
import Definable from './Definable';
|
|
import Displayable from '../../graphic/Displayable';
|
|
export default class ShadowManager extends Definable {
|
|
private _shadowDomMap;
|
|
private _shadowDomPool;
|
|
constructor(zrId: number, svgRoot: SVGElement);
|
|
private _getFromPool;
|
|
update(svgElement: SVGElement, displayable: Displayable): void;
|
|
remove(svgElement: SVGElement, displayable: Displayable): void;
|
|
updateDom(svgElement: SVGElement, displayable: Displayable, shadowDom: SVGElement): void;
|
|
removeUnused(): void;
|
|
}
|