microboard-temp 0.4.38 → 0.4.39

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.
@@ -52442,7 +52442,7 @@ class Items {
52442
52442
  render(context) {
52443
52443
  const items = this.getItemsInView();
52444
52444
  items.forEach((item) => {
52445
- if (item.parent !== "Board") {
52445
+ if (item.parent === "Board") {
52446
52446
  item.render(context);
52447
52447
  }
52448
52448
  });
package/dist/cjs/index.js CHANGED
@@ -52442,7 +52442,7 @@ class Items {
52442
52442
  render(context) {
52443
52443
  const items = this.getItemsInView();
52444
52444
  items.forEach((item) => {
52445
- if (item.parent !== "Board") {
52445
+ if (item.parent === "Board") {
52446
52446
  item.render(context);
52447
52447
  }
52448
52448
  });
package/dist/cjs/node.js CHANGED
@@ -54915,7 +54915,7 @@ class Items {
54915
54915
  render(context) {
54916
54916
  const items = this.getItemsInView();
54917
54917
  items.forEach((item) => {
54918
- if (item.parent !== "Board") {
54918
+ if (item.parent === "Board") {
54919
54919
  item.render(context);
54920
54920
  }
54921
54921
  });
@@ -52292,7 +52292,7 @@ class Items {
52292
52292
  render(context) {
52293
52293
  const items = this.getItemsInView();
52294
52294
  items.forEach((item) => {
52295
- if (item.parent !== "Board") {
52295
+ if (item.parent === "Board") {
52296
52296
  item.render(context);
52297
52297
  }
52298
52298
  });
package/dist/esm/index.js CHANGED
@@ -52285,7 +52285,7 @@ class Items {
52285
52285
  render(context) {
52286
52286
  const items = this.getItemsInView();
52287
52287
  items.forEach((item) => {
52288
- if (item.parent !== "Board") {
52288
+ if (item.parent === "Board") {
52289
52289
  item.render(context);
52290
52290
  }
52291
52291
  });
package/dist/esm/node.js CHANGED
@@ -54753,7 +54753,7 @@ class Items {
54753
54753
  render(context) {
54754
54754
  const items = this.getItemsInView();
54755
54755
  items.forEach((item) => {
54756
- if (item.parent !== "Board") {
54756
+ if (item.parent === "Board") {
54757
54757
  item.render(context);
54758
54758
  }
54759
54759
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microboard-temp",
3
- "version": "0.4.38",
3
+ "version": "0.4.39",
4
4
  "description": "A flexible interactive whiteboard library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",