microboard-ui-temp 0.1.69 → 0.1.70

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -446293,7 +446293,11 @@ var pasteWelcomeBoardData = (board, lang) => {
446293
446293
  }
446294
446294
  return [id3, item];
446295
446295
  }));
446296
- board.paste(filteredBoardData, false, false);
446296
+ try {
446297
+ board.paste(filteredBoardData, false, false);
446298
+ } catch (e15) {
446299
+ console.error(e15);
446300
+ }
446297
446301
  const mbr = board.items.getMbr();
446298
446302
  board.selection.removeAll();
446299
446303
  board.camera.zoomToFit(mbr);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microboard-ui-temp",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "type": "module",