@leapfrog/interactive-canvas 2.0.15 → 2.0.17-beta-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abstract-interactive-canvas.d.ts +0 -3
- package/dist/interactive-canvas.es.js +254 -278
- package/dist/interactive-canvas.js +265 -297
- package/dist/object/impl/text.d.ts +1 -9
- package/dist/types/selection-data.interface.d.ts +0 -9
- package/dist/types/text-alignment.interface.d.ts +1 -1
- package/package.json +1 -1
|
@@ -23,7 +23,6 @@ import { ITextSelection } from "./mutator/mutable-text-style.interface";
|
|
|
23
23
|
import { fabric } from "fabric";
|
|
24
24
|
import { IRichText } from "./object/impl/rich-text";
|
|
25
25
|
import { IBackgroundImage } from "./object/impl/background-image";
|
|
26
|
-
import { IEvent } from "fabric/fabric-impl";
|
|
27
26
|
export declare abstract class AbstractInteractiveCanvas implements IInteractiveCanvas {
|
|
28
27
|
fabric: any;
|
|
29
28
|
protected readonly fabricCanvas: fabric.Canvas;
|
|
@@ -369,7 +368,5 @@ export declare class SelectionData implements ISelectionData {
|
|
|
369
368
|
readonly objects: Array<AbstractCanvasObject<any>>;
|
|
370
369
|
readonly isText: boolean;
|
|
371
370
|
readonly textSelection: ITextSelection | null;
|
|
372
|
-
event: IEvent<MouseEvent>;
|
|
373
371
|
constructor(objects: Array<AbstractCanvasObject<any>>);
|
|
374
|
-
setEvent(event: IEvent<MouseEvent>): void;
|
|
375
372
|
}
|