microboard-temp 0.5.61 → 0.5.62

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.
@@ -48996,6 +48996,9 @@ class Screen extends BaseItem {
48996
48996
  }
48997
48997
  this.subject.publish(this);
48998
48998
  }
48999
+ getOwnerId() {
49000
+ return this.ownerId;
49001
+ }
48999
49002
  getBackgroundColor() {
49000
49003
  return this.backgroundColor;
49001
49004
  }
package/dist/cjs/index.js CHANGED
@@ -48996,6 +48996,9 @@ class Screen extends BaseItem {
48996
48996
  }
48997
48997
  this.subject.publish(this);
48998
48998
  }
48999
+ getOwnerId() {
49000
+ return this.ownerId;
49001
+ }
48999
49002
  getBackgroundColor() {
49000
49003
  return this.backgroundColor;
49001
49004
  }
package/dist/cjs/node.js CHANGED
@@ -51469,6 +51469,9 @@ class Screen extends BaseItem {
51469
51469
  }
51470
51470
  this.subject.publish(this);
51471
51471
  }
51472
+ getOwnerId() {
51473
+ return this.ownerId;
51474
+ }
51472
51475
  getBackgroundColor() {
51473
51476
  return this.backgroundColor;
51474
51477
  }
@@ -48842,6 +48842,9 @@ class Screen extends BaseItem {
48842
48842
  }
48843
48843
  this.subject.publish(this);
48844
48844
  }
48845
+ getOwnerId() {
48846
+ return this.ownerId;
48847
+ }
48845
48848
  getBackgroundColor() {
48846
48849
  return this.backgroundColor;
48847
48850
  }
package/dist/esm/index.js CHANGED
@@ -48835,6 +48835,9 @@ class Screen extends BaseItem {
48835
48835
  }
48836
48836
  this.subject.publish(this);
48837
48837
  }
48838
+ getOwnerId() {
48839
+ return this.ownerId;
48840
+ }
48838
48841
  getBackgroundColor() {
48839
48842
  return this.backgroundColor;
48840
48843
  }
package/dist/esm/node.js CHANGED
@@ -51303,6 +51303,9 @@ class Screen extends BaseItem {
51303
51303
  }
51304
51304
  this.subject.publish(this);
51305
51305
  }
51306
+ getOwnerId() {
51307
+ return this.ownerId;
51308
+ }
51306
51309
  getBackgroundColor() {
51307
51310
  return this.backgroundColor;
51308
51311
  }
@@ -16,6 +16,7 @@ export declare class Screen extends BaseItem {
16
16
  backgroundImage: HTMLImageElement | null;
17
17
  constructor(board: Board, id?: string, ownerId?: string);
18
18
  apply(op: ScreenOperation): void;
19
+ getOwnerId(): string;
19
20
  getBackgroundColor(): string;
20
21
  getBorderStyle(): string;
21
22
  getStrokeColor(): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microboard-temp",
3
- "version": "0.5.61",
3
+ "version": "0.5.62",
4
4
  "description": "A flexible interactive whiteboard library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",