microboard-temp 0.5.41 → 0.5.42

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.
@@ -21649,7 +21649,8 @@ class BaseItem extends Mbr {
21649
21649
  linkTo: this.linkTo.serialize(),
21650
21650
  transformation: this.transformation.serialize(),
21651
21651
  itemType: this.defaultItemData?.itemType || this.itemType,
21652
- children: this.index?.list().map((child) => child.getId())
21652
+ children: this.index?.list().map((child) => child.getId()),
21653
+ resizeEnabled: this.resizeEnabled
21653
21654
  };
21654
21655
  Object.keys(this.defaultItemData || {}).forEach((key) => {
21655
21656
  const value = this[key];
package/dist/cjs/index.js CHANGED
@@ -21649,7 +21649,8 @@ class BaseItem extends Mbr {
21649
21649
  linkTo: this.linkTo.serialize(),
21650
21650
  transformation: this.transformation.serialize(),
21651
21651
  itemType: this.defaultItemData?.itemType || this.itemType,
21652
- children: this.index?.list().map((child) => child.getId())
21652
+ children: this.index?.list().map((child) => child.getId()),
21653
+ resizeEnabled: this.resizeEnabled
21653
21654
  };
21654
21655
  Object.keys(this.defaultItemData || {}).forEach((key) => {
21655
21656
  const value = this[key];
package/dist/cjs/node.js CHANGED
@@ -24121,7 +24121,8 @@ class BaseItem extends Mbr {
24121
24121
  linkTo: this.linkTo.serialize(),
24122
24122
  transformation: this.transformation.serialize(),
24123
24123
  itemType: this.defaultItemData?.itemType || this.itemType,
24124
- children: this.index?.list().map((child) => child.getId())
24124
+ children: this.index?.list().map((child) => child.getId()),
24125
+ resizeEnabled: this.resizeEnabled
24125
24126
  };
24126
24127
  Object.keys(this.defaultItemData || {}).forEach((key) => {
24127
24128
  const value = this[key];
@@ -21495,7 +21495,8 @@ class BaseItem extends Mbr {
21495
21495
  linkTo: this.linkTo.serialize(),
21496
21496
  transformation: this.transformation.serialize(),
21497
21497
  itemType: this.defaultItemData?.itemType || this.itemType,
21498
- children: this.index?.list().map((child) => child.getId())
21498
+ children: this.index?.list().map((child) => child.getId()),
21499
+ resizeEnabled: this.resizeEnabled
21499
21500
  };
21500
21501
  Object.keys(this.defaultItemData || {}).forEach((key) => {
21501
21502
  const value = this[key];
package/dist/esm/index.js CHANGED
@@ -21488,7 +21488,8 @@ class BaseItem extends Mbr {
21488
21488
  linkTo: this.linkTo.serialize(),
21489
21489
  transformation: this.transformation.serialize(),
21490
21490
  itemType: this.defaultItemData?.itemType || this.itemType,
21491
- children: this.index?.list().map((child) => child.getId())
21491
+ children: this.index?.list().map((child) => child.getId()),
21492
+ resizeEnabled: this.resizeEnabled
21492
21493
  };
21493
21494
  Object.keys(this.defaultItemData || {}).forEach((key) => {
21494
21495
  const value = this[key];
package/dist/esm/node.js CHANGED
@@ -23955,7 +23955,8 @@ class BaseItem extends Mbr {
23955
23955
  linkTo: this.linkTo.serialize(),
23956
23956
  transformation: this.transformation.serialize(),
23957
23957
  itemType: this.defaultItemData?.itemType || this.itemType,
23958
- children: this.index?.list().map((child) => child.getId())
23958
+ children: this.index?.list().map((child) => child.getId()),
23959
+ resizeEnabled: this.resizeEnabled
23959
23960
  };
23960
23961
  Object.keys(this.defaultItemData || {}).forEach((key) => {
23961
23962
  const value = this[key];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microboard-temp",
3
- "version": "0.5.41",
3
+ "version": "0.5.42",
4
4
  "description": "A flexible interactive whiteboard library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",