@leapfrog/interactive-canvas 1.13.0 → 1.13.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.
@@ -284,63 +284,6 @@ var RedrawAllLayoutFunction = /** @class */ (function () {
284
284
  return RedrawAllLayoutFunction;
285
285
  }());
286
286
 
287
- var RepositionCutoffsLayoutFunction = /** @class */ (function () {
288
- function RepositionCutoffsLayoutFunction() {
289
- }
290
- RepositionCutoffsLayoutFunction.prototype.execute = function (canvas) {
291
- canvas.getObjectsByTypeInternal(ObjectType.CUTOFF)
292
- .forEach(function (cutoff) { return cutoff.updatePosition(); });
293
- };
294
- return RepositionCutoffsLayoutFunction;
295
- }());
296
-
297
- var RepositionBordersLayoutFunction = /** @class */ (function () {
298
- function RepositionBordersLayoutFunction() {
299
- }
300
- RepositionBordersLayoutFunction.prototype.execute = function (canvas) {
301
- canvas.getObjectsByTypeInternal(ObjectType.BORDER)
302
- .forEach(function (border) { return border.updatePosition(); });
303
- };
304
- return RepositionBordersLayoutFunction;
305
- }());
306
-
307
- var PinToBottomLayoutFunction = /** @class */ (function () {
308
- function PinToBottomLayoutFunction() {
309
- }
310
- PinToBottomLayoutFunction.prototype.execute = function (canvas) {
311
- canvas.getObjectsInternal()
312
- .forEach(function (object) { return object.moveToPinnedPosition(); });
313
- };
314
- return PinToBottomLayoutFunction;
315
- }());
316
-
317
- var ResizeCanvasLayoutFunction = /** @class */ (function () {
318
- function ResizeCanvasLayoutFunction() {
319
- }
320
- ResizeCanvasLayoutFunction.prototype.execute = function (canvas) {
321
- if (canvas.getLayoutManager().isEnforcedPositioning)
322
- return;
323
- if (oc(canvas.getDimensionsRestrictions()).fixed(false))
324
- return;
325
- var currentDimensions = canvas.getDimensions();
326
- var baseDimensions = canvas.getBaseDimensions();
327
- var textHeightIncreasePx = _(canvas.getObjectsByTypeInternal(ObjectType.TEXT))
328
- .filter(function (text) { return text.isResizeCanvas(); })
329
- .reduce(function (x, text) { return x + text.getSizeIncreaseSinceCreation(); }, 0);
330
- var increase = baseDimensions.withSize(currentDimensions.width, 0);
331
- while (increase.heightPx < textHeightIncreasePx) {
332
- increase = increase.withSize(increase.width, increase.height + 1);
333
- }
334
- var targetHeight = increase.withSize(increase.width, baseDimensions.height + increase.height);
335
- if (currentDimensions.height !== targetHeight.height) {
336
- canvas.setDimensions(targetHeight);
337
- }
338
- canvas.getObjectsInternal().forEach(function (object) { return object.setCoords(); });
339
- canvas.redraw();
340
- };
341
- return ResizeCanvasLayoutFunction;
342
- }());
343
-
344
287
  var LayoutManager;
345
288
  (function (LayoutManager) {
346
289
  LayoutManager["LEGACY"] = "LEGACY";
@@ -348,45 +291,6 @@ var LayoutManager;
348
291
  LayoutManager["ADVANCED"] = "ADVANCED";
349
292
  })(LayoutManager || (LayoutManager = {}));
350
293
 
351
- var RepositionBackgroundsLayoutFunction = /** @class */ (function () {
352
- function RepositionBackgroundsLayoutFunction() {
353
- }
354
- RepositionBackgroundsLayoutFunction.prototype.execute = function (canvas) {
355
- canvas.getObjectsByTypeInternal(ObjectType.BACKGROUND_IMAGE)
356
- .forEach(function (border) { return border.updatePosition(); });
357
- };
358
- return RepositionBackgroundsLayoutFunction;
359
- }());
360
-
361
- var AdvancedLayoutManager = /** @class */ (function (_super) {
362
- __extends(AdvancedLayoutManager, _super);
363
- function AdvancedLayoutManager(canvas) {
364
- var _this = _super.call(this, canvas) || this;
365
- _this.key = LayoutManager.ADVANCED;
366
- _this.pinToBottom = new PinToBottomLayoutFunction();
367
- _this.redrawAll = new RedrawAllLayoutFunction();
368
- _this.repositionBorders = new RepositionBordersLayoutFunction();
369
- _this.repositionCutoffs = new RepositionCutoffsLayoutFunction();
370
- _this.repositionBackgrounds = new RepositionBackgroundsLayoutFunction();
371
- _this.resizeCanvas = new ResizeCanvasLayoutFunction();
372
- return _this;
373
- }
374
- AdvancedLayoutManager.prototype.onCanvasDimensionsChange = function () {
375
- this.pinToBottom.execute(this.canvas);
376
- this.repositionCutoffs.execute(this.canvas);
377
- this.repositionBorders.execute(this.canvas);
378
- this.repositionBackgrounds.execute(this.canvas);
379
- this.redrawAll.execute(this.canvas);
380
- };
381
- AdvancedLayoutManager.prototype.onTextChange = function () {
382
- this.resizeCanvas.execute(this.canvas);
383
- };
384
- AdvancedLayoutManager.prototype.onObjectListChange = function () {
385
- this.redrawAll.execute(this.canvas);
386
- };
387
- return AdvancedLayoutManager;
388
- }(AbstractLayoutManager));
389
-
390
294
  var UpdateObjectDimensionsLayoutFunction = /** @class */ (function () {
391
295
  function UpdateObjectDimensionsLayoutFunction() {
392
296
  }
@@ -550,6 +454,26 @@ var StackObjectsLayoutFunction = /** @class */ (function () {
550
454
  return StackObjectsLayoutFunction;
551
455
  }());
552
456
 
457
+ var RepositionBordersLayoutFunction = /** @class */ (function () {
458
+ function RepositionBordersLayoutFunction() {
459
+ }
460
+ RepositionBordersLayoutFunction.prototype.execute = function (canvas) {
461
+ canvas.getObjectsByTypeInternal(ObjectType.BORDER)
462
+ .forEach(function (border) { return border.updatePosition(); });
463
+ };
464
+ return RepositionBordersLayoutFunction;
465
+ }());
466
+
467
+ var RepositionBackgroundsLayoutFunction = /** @class */ (function () {
468
+ function RepositionBackgroundsLayoutFunction() {
469
+ }
470
+ RepositionBackgroundsLayoutFunction.prototype.execute = function (canvas) {
471
+ canvas.getObjectsByTypeInternal(ObjectType.BACKGROUND_IMAGE)
472
+ .forEach(function (border) { return border.updatePosition(); });
473
+ };
474
+ return RepositionBackgroundsLayoutFunction;
475
+ }());
476
+
553
477
  var StandardLayoutManager = /** @class */ (function (_super) {
554
478
  __extends(StandardLayoutManager, _super);
555
479
  function StandardLayoutManager(canvas) {
@@ -3047,7 +2971,8 @@ var AbstractInteractiveCanvas = /** @class */ (function () {
3047
2971
  var object = new RichText(_this, fabricImage);
3048
2972
  object.htmlContent = htmlContent;
3049
2973
  _this.trackNewObject(object);
3050
- object.setImageWidth(_this.dimensions$.value.widthPx);
2974
+ var margin = _this.getMargin();
2975
+ object.setImageWidth(_this.dimensions$.value.widthPx - margin.left - margin.right);
3051
2976
  _this.selectFabricObject(fabricImage);
3052
2977
  _this.syncObjectList();
3053
2978
  resolve(object);
@@ -3805,4 +3730,80 @@ var InteractiveCanvas = /** @class */ (function (_super) {
3805
3730
  return InteractiveCanvas;
3806
3731
  }(AbstractInteractiveCanvas));
3807
3732
 
3733
+ var RepositionCutoffsLayoutFunction = /** @class */ (function () {
3734
+ function RepositionCutoffsLayoutFunction() {
3735
+ }
3736
+ RepositionCutoffsLayoutFunction.prototype.execute = function (canvas) {
3737
+ canvas.getObjectsByTypeInternal(ObjectType.CUTOFF)
3738
+ .forEach(function (cutoff) { return cutoff.updatePosition(); });
3739
+ };
3740
+ return RepositionCutoffsLayoutFunction;
3741
+ }());
3742
+
3743
+ var PinToBottomLayoutFunction = /** @class */ (function () {
3744
+ function PinToBottomLayoutFunction() {
3745
+ }
3746
+ PinToBottomLayoutFunction.prototype.execute = function (canvas) {
3747
+ canvas.getObjectsInternal()
3748
+ .forEach(function (object) { return object.moveToPinnedPosition(); });
3749
+ };
3750
+ return PinToBottomLayoutFunction;
3751
+ }());
3752
+
3753
+ var ResizeCanvasLayoutFunction = /** @class */ (function () {
3754
+ function ResizeCanvasLayoutFunction() {
3755
+ }
3756
+ ResizeCanvasLayoutFunction.prototype.execute = function (canvas) {
3757
+ if (canvas.getLayoutManager().isEnforcedPositioning)
3758
+ return;
3759
+ if (oc(canvas.getDimensionsRestrictions()).fixed(false))
3760
+ return;
3761
+ var currentDimensions = canvas.getDimensions();
3762
+ var baseDimensions = canvas.getBaseDimensions();
3763
+ var textHeightIncreasePx = _(canvas.getObjectsByTypeInternal(ObjectType.TEXT))
3764
+ .filter(function (text) { return text.isResizeCanvas(); })
3765
+ .reduce(function (x, text) { return x + text.getSizeIncreaseSinceCreation(); }, 0);
3766
+ var increase = baseDimensions.withSize(currentDimensions.width, 0);
3767
+ while (increase.heightPx < textHeightIncreasePx) {
3768
+ increase = increase.withSize(increase.width, increase.height + 1);
3769
+ }
3770
+ var targetHeight = increase.withSize(increase.width, baseDimensions.height + increase.height);
3771
+ if (currentDimensions.height !== targetHeight.height) {
3772
+ canvas.setDimensions(targetHeight);
3773
+ }
3774
+ canvas.getObjectsInternal().forEach(function (object) { return object.setCoords(); });
3775
+ canvas.redraw();
3776
+ };
3777
+ return ResizeCanvasLayoutFunction;
3778
+ }());
3779
+
3780
+ var AdvancedLayoutManager = /** @class */ (function (_super) {
3781
+ __extends(AdvancedLayoutManager, _super);
3782
+ function AdvancedLayoutManager(canvas) {
3783
+ var _this = _super.call(this, canvas) || this;
3784
+ _this.key = LayoutManager.ADVANCED;
3785
+ _this.pinToBottom = new PinToBottomLayoutFunction();
3786
+ _this.redrawAll = new RedrawAllLayoutFunction();
3787
+ _this.repositionBorders = new RepositionBordersLayoutFunction();
3788
+ _this.repositionCutoffs = new RepositionCutoffsLayoutFunction();
3789
+ _this.repositionBackgrounds = new RepositionBackgroundsLayoutFunction();
3790
+ _this.resizeCanvas = new ResizeCanvasLayoutFunction();
3791
+ return _this;
3792
+ }
3793
+ AdvancedLayoutManager.prototype.onCanvasDimensionsChange = function () {
3794
+ this.pinToBottom.execute(this.canvas);
3795
+ this.repositionCutoffs.execute(this.canvas);
3796
+ this.repositionBorders.execute(this.canvas);
3797
+ this.repositionBackgrounds.execute(this.canvas);
3798
+ this.redrawAll.execute(this.canvas);
3799
+ };
3800
+ AdvancedLayoutManager.prototype.onTextChange = function () {
3801
+ this.resizeCanvas.execute(this.canvas);
3802
+ };
3803
+ AdvancedLayoutManager.prototype.onObjectListChange = function () {
3804
+ this.redrawAll.execute(this.canvas);
3805
+ };
3806
+ return AdvancedLayoutManager;
3807
+ }(AbstractLayoutManager));
3808
+
3808
3809
  export { AbstractCanvasObject, AbstractInteractiveCanvas, AbstractLayoutManager, AdvancedLayoutManager, BackgroundImage, Border, CanvasObjectData, Cutoff, DefaultCanvasProfile, Font, FontLibrary, HeadlessInteractiveCanvas, HorizontalRule, Image, ImageType, InteractiveCanvas, LayoutManager, MillimeterDimensions, ObjectType, PixelCanvasDimensions, Print6ColCanvasDimensions, Print8ColCanvasDimensions, Rectangle, RichText, SelectionData, StandardLayoutManager, Text, UNKNOWN_FONT, UnknownFont, VerticalRule, isMutableBackgroundColor, isMutableColor, isMutableImage, isMutablePosition, isMutableStroke, isMutableText, isMutableTextStyle };
@@ -287,108 +287,12 @@ var RedrawAllLayoutFunction = /** @class */ (function () {
287
287
  return RedrawAllLayoutFunction;
288
288
  }());
289
289
 
290
- var RepositionCutoffsLayoutFunction = /** @class */ (function () {
291
- function RepositionCutoffsLayoutFunction() {
292
- }
293
- RepositionCutoffsLayoutFunction.prototype.execute = function (canvas) {
294
- canvas.getObjectsByTypeInternal(exports.ObjectType.CUTOFF)
295
- .forEach(function (cutoff) { return cutoff.updatePosition(); });
296
- };
297
- return RepositionCutoffsLayoutFunction;
298
- }());
299
-
300
- var RepositionBordersLayoutFunction = /** @class */ (function () {
301
- function RepositionBordersLayoutFunction() {
302
- }
303
- RepositionBordersLayoutFunction.prototype.execute = function (canvas) {
304
- canvas.getObjectsByTypeInternal(exports.ObjectType.BORDER)
305
- .forEach(function (border) { return border.updatePosition(); });
306
- };
307
- return RepositionBordersLayoutFunction;
308
- }());
309
-
310
- var PinToBottomLayoutFunction = /** @class */ (function () {
311
- function PinToBottomLayoutFunction() {
312
- }
313
- PinToBottomLayoutFunction.prototype.execute = function (canvas) {
314
- canvas.getObjectsInternal()
315
- .forEach(function (object) { return object.moveToPinnedPosition(); });
316
- };
317
- return PinToBottomLayoutFunction;
318
- }());
319
-
320
- var ResizeCanvasLayoutFunction = /** @class */ (function () {
321
- function ResizeCanvasLayoutFunction() {
322
- }
323
- ResizeCanvasLayoutFunction.prototype.execute = function (canvas) {
324
- if (canvas.getLayoutManager().isEnforcedPositioning)
325
- return;
326
- if (tsOptchain.oc(canvas.getDimensionsRestrictions()).fixed(false))
327
- return;
328
- var currentDimensions = canvas.getDimensions();
329
- var baseDimensions = canvas.getBaseDimensions();
330
- var textHeightIncreasePx = _(canvas.getObjectsByTypeInternal(exports.ObjectType.TEXT))
331
- .filter(function (text) { return text.isResizeCanvas(); })
332
- .reduce(function (x, text) { return x + text.getSizeIncreaseSinceCreation(); }, 0);
333
- var increase = baseDimensions.withSize(currentDimensions.width, 0);
334
- while (increase.heightPx < textHeightIncreasePx) {
335
- increase = increase.withSize(increase.width, increase.height + 1);
336
- }
337
- var targetHeight = increase.withSize(increase.width, baseDimensions.height + increase.height);
338
- if (currentDimensions.height !== targetHeight.height) {
339
- canvas.setDimensions(targetHeight);
340
- }
341
- canvas.getObjectsInternal().forEach(function (object) { return object.setCoords(); });
342
- canvas.redraw();
343
- };
344
- return ResizeCanvasLayoutFunction;
345
- }());
346
-
347
290
  (function (LayoutManager) {
348
291
  LayoutManager["LEGACY"] = "LEGACY";
349
292
  LayoutManager["STANDARD"] = "STANDARD";
350
293
  LayoutManager["ADVANCED"] = "ADVANCED";
351
294
  })(exports.LayoutManager || (exports.LayoutManager = {}));
352
295
 
353
- var RepositionBackgroundsLayoutFunction = /** @class */ (function () {
354
- function RepositionBackgroundsLayoutFunction() {
355
- }
356
- RepositionBackgroundsLayoutFunction.prototype.execute = function (canvas) {
357
- canvas.getObjectsByTypeInternal(exports.ObjectType.BACKGROUND_IMAGE)
358
- .forEach(function (border) { return border.updatePosition(); });
359
- };
360
- return RepositionBackgroundsLayoutFunction;
361
- }());
362
-
363
- var AdvancedLayoutManager = /** @class */ (function (_super) {
364
- __extends(AdvancedLayoutManager, _super);
365
- function AdvancedLayoutManager(canvas) {
366
- var _this = _super.call(this, canvas) || this;
367
- _this.key = exports.LayoutManager.ADVANCED;
368
- _this.pinToBottom = new PinToBottomLayoutFunction();
369
- _this.redrawAll = new RedrawAllLayoutFunction();
370
- _this.repositionBorders = new RepositionBordersLayoutFunction();
371
- _this.repositionCutoffs = new RepositionCutoffsLayoutFunction();
372
- _this.repositionBackgrounds = new RepositionBackgroundsLayoutFunction();
373
- _this.resizeCanvas = new ResizeCanvasLayoutFunction();
374
- return _this;
375
- }
376
- AdvancedLayoutManager.prototype.onCanvasDimensionsChange = function () {
377
- this.pinToBottom.execute(this.canvas);
378
- this.repositionCutoffs.execute(this.canvas);
379
- this.repositionBorders.execute(this.canvas);
380
- this.repositionBackgrounds.execute(this.canvas);
381
- this.redrawAll.execute(this.canvas);
382
- };
383
- AdvancedLayoutManager.prototype.onTextChange = function () {
384
- this.resizeCanvas.execute(this.canvas);
385
- };
386
- AdvancedLayoutManager.prototype.onObjectListChange = function () {
387
- this.redrawAll.execute(this.canvas);
388
- };
389
- return AdvancedLayoutManager;
390
- }(AbstractLayoutManager));
391
-
392
296
  var UpdateObjectDimensionsLayoutFunction = /** @class */ (function () {
393
297
  function UpdateObjectDimensionsLayoutFunction() {
394
298
  }
@@ -552,6 +456,26 @@ var StackObjectsLayoutFunction = /** @class */ (function () {
552
456
  return StackObjectsLayoutFunction;
553
457
  }());
554
458
 
459
+ var RepositionBordersLayoutFunction = /** @class */ (function () {
460
+ function RepositionBordersLayoutFunction() {
461
+ }
462
+ RepositionBordersLayoutFunction.prototype.execute = function (canvas) {
463
+ canvas.getObjectsByTypeInternal(exports.ObjectType.BORDER)
464
+ .forEach(function (border) { return border.updatePosition(); });
465
+ };
466
+ return RepositionBordersLayoutFunction;
467
+ }());
468
+
469
+ var RepositionBackgroundsLayoutFunction = /** @class */ (function () {
470
+ function RepositionBackgroundsLayoutFunction() {
471
+ }
472
+ RepositionBackgroundsLayoutFunction.prototype.execute = function (canvas) {
473
+ canvas.getObjectsByTypeInternal(exports.ObjectType.BACKGROUND_IMAGE)
474
+ .forEach(function (border) { return border.updatePosition(); });
475
+ };
476
+ return RepositionBackgroundsLayoutFunction;
477
+ }());
478
+
555
479
  var StandardLayoutManager = /** @class */ (function (_super) {
556
480
  __extends(StandardLayoutManager, _super);
557
481
  function StandardLayoutManager(canvas) {
@@ -3047,7 +2971,8 @@ var AbstractInteractiveCanvas = /** @class */ (function () {
3047
2971
  var object = new RichText(_this, fabricImage);
3048
2972
  object.htmlContent = htmlContent;
3049
2973
  _this.trackNewObject(object);
3050
- object.setImageWidth(_this.dimensions$.value.widthPx);
2974
+ var margin = _this.getMargin();
2975
+ object.setImageWidth(_this.dimensions$.value.widthPx - margin.left - margin.right);
3051
2976
  _this.selectFabricObject(fabricImage);
3052
2977
  _this.syncObjectList();
3053
2978
  resolve(object);
@@ -3805,6 +3730,82 @@ var InteractiveCanvas = /** @class */ (function (_super) {
3805
3730
  return InteractiveCanvas;
3806
3731
  }(AbstractInteractiveCanvas));
3807
3732
 
3733
+ var RepositionCutoffsLayoutFunction = /** @class */ (function () {
3734
+ function RepositionCutoffsLayoutFunction() {
3735
+ }
3736
+ RepositionCutoffsLayoutFunction.prototype.execute = function (canvas) {
3737
+ canvas.getObjectsByTypeInternal(exports.ObjectType.CUTOFF)
3738
+ .forEach(function (cutoff) { return cutoff.updatePosition(); });
3739
+ };
3740
+ return RepositionCutoffsLayoutFunction;
3741
+ }());
3742
+
3743
+ var PinToBottomLayoutFunction = /** @class */ (function () {
3744
+ function PinToBottomLayoutFunction() {
3745
+ }
3746
+ PinToBottomLayoutFunction.prototype.execute = function (canvas) {
3747
+ canvas.getObjectsInternal()
3748
+ .forEach(function (object) { return object.moveToPinnedPosition(); });
3749
+ };
3750
+ return PinToBottomLayoutFunction;
3751
+ }());
3752
+
3753
+ var ResizeCanvasLayoutFunction = /** @class */ (function () {
3754
+ function ResizeCanvasLayoutFunction() {
3755
+ }
3756
+ ResizeCanvasLayoutFunction.prototype.execute = function (canvas) {
3757
+ if (canvas.getLayoutManager().isEnforcedPositioning)
3758
+ return;
3759
+ if (tsOptchain.oc(canvas.getDimensionsRestrictions()).fixed(false))
3760
+ return;
3761
+ var currentDimensions = canvas.getDimensions();
3762
+ var baseDimensions = canvas.getBaseDimensions();
3763
+ var textHeightIncreasePx = _(canvas.getObjectsByTypeInternal(exports.ObjectType.TEXT))
3764
+ .filter(function (text) { return text.isResizeCanvas(); })
3765
+ .reduce(function (x, text) { return x + text.getSizeIncreaseSinceCreation(); }, 0);
3766
+ var increase = baseDimensions.withSize(currentDimensions.width, 0);
3767
+ while (increase.heightPx < textHeightIncreasePx) {
3768
+ increase = increase.withSize(increase.width, increase.height + 1);
3769
+ }
3770
+ var targetHeight = increase.withSize(increase.width, baseDimensions.height + increase.height);
3771
+ if (currentDimensions.height !== targetHeight.height) {
3772
+ canvas.setDimensions(targetHeight);
3773
+ }
3774
+ canvas.getObjectsInternal().forEach(function (object) { return object.setCoords(); });
3775
+ canvas.redraw();
3776
+ };
3777
+ return ResizeCanvasLayoutFunction;
3778
+ }());
3779
+
3780
+ var AdvancedLayoutManager = /** @class */ (function (_super) {
3781
+ __extends(AdvancedLayoutManager, _super);
3782
+ function AdvancedLayoutManager(canvas) {
3783
+ var _this = _super.call(this, canvas) || this;
3784
+ _this.key = exports.LayoutManager.ADVANCED;
3785
+ _this.pinToBottom = new PinToBottomLayoutFunction();
3786
+ _this.redrawAll = new RedrawAllLayoutFunction();
3787
+ _this.repositionBorders = new RepositionBordersLayoutFunction();
3788
+ _this.repositionCutoffs = new RepositionCutoffsLayoutFunction();
3789
+ _this.repositionBackgrounds = new RepositionBackgroundsLayoutFunction();
3790
+ _this.resizeCanvas = new ResizeCanvasLayoutFunction();
3791
+ return _this;
3792
+ }
3793
+ AdvancedLayoutManager.prototype.onCanvasDimensionsChange = function () {
3794
+ this.pinToBottom.execute(this.canvas);
3795
+ this.repositionCutoffs.execute(this.canvas);
3796
+ this.repositionBorders.execute(this.canvas);
3797
+ this.repositionBackgrounds.execute(this.canvas);
3798
+ this.redrawAll.execute(this.canvas);
3799
+ };
3800
+ AdvancedLayoutManager.prototype.onTextChange = function () {
3801
+ this.resizeCanvas.execute(this.canvas);
3802
+ };
3803
+ AdvancedLayoutManager.prototype.onObjectListChange = function () {
3804
+ this.redrawAll.execute(this.canvas);
3805
+ };
3806
+ return AdvancedLayoutManager;
3807
+ }(AbstractLayoutManager));
3808
+
3808
3809
  exports.AbstractCanvasObject = AbstractCanvasObject;
3809
3810
  exports.AbstractInteractiveCanvas = AbstractInteractiveCanvas;
3810
3811
  exports.AbstractLayoutManager = AbstractLayoutManager;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leapfrog/interactive-canvas",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Leapfrog interactive canvas",
5
5
  "files": [
6
6
  "dist"