microboard-temp 0.4.57 → 0.4.58

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.
@@ -18764,7 +18764,7 @@ class StickerCommand {
18764
18764
  }
18765
18765
 
18766
18766
  // src/Items/Frame/FrameCommand.ts
18767
- class FrameCommand {
18767
+ class FrameCommand extends BaseCommand {
18768
18768
  frame;
18769
18769
  operation;
18770
18770
  reverse;
@@ -18821,6 +18821,8 @@ class FrameCommand {
18821
18821
  children: frame2.getChildrenIds()
18822
18822
  };
18823
18823
  });
18824
+ default:
18825
+ return super.getReverse();
18824
18826
  }
18825
18827
  }
18826
18828
  }
package/dist/cjs/index.js CHANGED
@@ -18764,7 +18764,7 @@ class StickerCommand {
18764
18764
  }
18765
18765
 
18766
18766
  // src/Items/Frame/FrameCommand.ts
18767
- class FrameCommand {
18767
+ class FrameCommand extends BaseCommand {
18768
18768
  frame;
18769
18769
  operation;
18770
18770
  reverse;
@@ -18821,6 +18821,8 @@ class FrameCommand {
18821
18821
  children: frame2.getChildrenIds()
18822
18822
  };
18823
18823
  });
18824
+ default:
18825
+ return super.getReverse();
18824
18826
  }
18825
18827
  }
18826
18828
  }
package/dist/cjs/node.js CHANGED
@@ -21304,7 +21304,7 @@ class StickerCommand {
21304
21304
  }
21305
21305
 
21306
21306
  // src/Items/Frame/FrameCommand.ts
21307
- class FrameCommand {
21307
+ class FrameCommand extends BaseCommand {
21308
21308
  frame;
21309
21309
  operation;
21310
21310
  reverse;
@@ -21361,6 +21361,8 @@ class FrameCommand {
21361
21361
  children: frame2.getChildrenIds()
21362
21362
  };
21363
21363
  });
21364
+ default:
21365
+ return super.getReverse();
21364
21366
  }
21365
21367
  }
21366
21368
  }
@@ -18614,7 +18614,7 @@ class StickerCommand {
18614
18614
  }
18615
18615
 
18616
18616
  // src/Items/Frame/FrameCommand.ts
18617
- class FrameCommand {
18617
+ class FrameCommand extends BaseCommand {
18618
18618
  frame;
18619
18619
  operation;
18620
18620
  reverse;
@@ -18671,6 +18671,8 @@ class FrameCommand {
18671
18671
  children: frame2.getChildrenIds()
18672
18672
  };
18673
18673
  });
18674
+ default:
18675
+ return super.getReverse();
18674
18676
  }
18675
18677
  }
18676
18678
  }
package/dist/esm/index.js CHANGED
@@ -18607,7 +18607,7 @@ class StickerCommand {
18607
18607
  }
18608
18608
 
18609
18609
  // src/Items/Frame/FrameCommand.ts
18610
- class FrameCommand {
18610
+ class FrameCommand extends BaseCommand {
18611
18611
  frame;
18612
18612
  operation;
18613
18613
  reverse;
@@ -18664,6 +18664,8 @@ class FrameCommand {
18664
18664
  children: frame2.getChildrenIds()
18665
18665
  };
18666
18666
  });
18667
+ default:
18668
+ return super.getReverse();
18667
18669
  }
18668
18670
  }
18669
18671
  }
package/dist/esm/node.js CHANGED
@@ -21142,7 +21142,7 @@ class StickerCommand {
21142
21142
  }
21143
21143
 
21144
21144
  // src/Items/Frame/FrameCommand.ts
21145
- class FrameCommand {
21145
+ class FrameCommand extends BaseCommand {
21146
21146
  frame;
21147
21147
  operation;
21148
21148
  reverse;
@@ -21199,6 +21199,8 @@ class FrameCommand {
21199
21199
  children: frame2.getChildrenIds()
21200
21200
  };
21201
21201
  });
21202
+ default:
21203
+ return super.getReverse();
21202
21204
  }
21203
21205
  }
21204
21206
  }
@@ -1,7 +1,7 @@
1
1
  import { Frame } from "./Frame";
2
2
  import { FrameOperation } from "./FrameOperation";
3
- import { Command } from "../../Events";
4
- export declare class FrameCommand implements Command {
3
+ import { BaseCommand } from "../../Events/Command";
4
+ export declare class FrameCommand extends BaseCommand {
5
5
  private frame;
6
6
  private operation;
7
7
  private reverse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microboard-temp",
3
- "version": "0.4.57",
3
+ "version": "0.4.58",
4
4
  "description": "A flexible interactive whiteboard library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",