microboard-temp 0.1.26 → 0.1.27
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.
- package/dist/cjs/browser.js +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/node.js +1 -1
- package/dist/esm/browser.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/node.js +1 -1
- package/package.json +1 -1
package/dist/cjs/browser.js
CHANGED
|
@@ -40185,7 +40185,7 @@ function getPlaceholderImage(board, imageDimension) {
|
|
|
40185
40185
|
const placeholderCanvas = conf.documentFactory.createElement("canvas");
|
|
40186
40186
|
const placeholderContext = placeholderCanvas.getContext("2d");
|
|
40187
40187
|
const context = new DrawingContext(board.camera, placeholderContext);
|
|
40188
|
-
const placeholder = new Placeholder;
|
|
40188
|
+
const placeholder = new Placeholder(board);
|
|
40189
40189
|
if (imageDimension) {
|
|
40190
40190
|
placeholderCanvas.width = imageDimension.width;
|
|
40191
40191
|
placeholderCanvas.height = imageDimension.height;
|
package/dist/cjs/index.js
CHANGED
|
@@ -40185,7 +40185,7 @@ function getPlaceholderImage(board, imageDimension) {
|
|
|
40185
40185
|
const placeholderCanvas = conf.documentFactory.createElement("canvas");
|
|
40186
40186
|
const placeholderContext = placeholderCanvas.getContext("2d");
|
|
40187
40187
|
const context = new DrawingContext(board.camera, placeholderContext);
|
|
40188
|
-
const placeholder = new Placeholder;
|
|
40188
|
+
const placeholder = new Placeholder(board);
|
|
40189
40189
|
if (imageDimension) {
|
|
40190
40190
|
placeholderCanvas.width = imageDimension.width;
|
|
40191
40191
|
placeholderCanvas.height = imageDimension.height;
|
package/dist/cjs/node.js
CHANGED
|
@@ -42725,7 +42725,7 @@ function getPlaceholderImage(board, imageDimension) {
|
|
|
42725
42725
|
const placeholderCanvas = conf.documentFactory.createElement("canvas");
|
|
42726
42726
|
const placeholderContext = placeholderCanvas.getContext("2d");
|
|
42727
42727
|
const context = new DrawingContext(board.camera, placeholderContext);
|
|
42728
|
-
const placeholder = new Placeholder;
|
|
42728
|
+
const placeholder = new Placeholder(board);
|
|
42729
42729
|
if (imageDimension) {
|
|
42730
42730
|
placeholderCanvas.width = imageDimension.width;
|
|
42731
42731
|
placeholderCanvas.height = imageDimension.height;
|
package/dist/esm/browser.js
CHANGED
|
@@ -40033,7 +40033,7 @@ function getPlaceholderImage(board, imageDimension) {
|
|
|
40033
40033
|
const placeholderCanvas = conf.documentFactory.createElement("canvas");
|
|
40034
40034
|
const placeholderContext = placeholderCanvas.getContext("2d");
|
|
40035
40035
|
const context = new DrawingContext(board.camera, placeholderContext);
|
|
40036
|
-
const placeholder = new Placeholder;
|
|
40036
|
+
const placeholder = new Placeholder(board);
|
|
40037
40037
|
if (imageDimension) {
|
|
40038
40038
|
placeholderCanvas.width = imageDimension.width;
|
|
40039
40039
|
placeholderCanvas.height = imageDimension.height;
|
package/dist/esm/index.js
CHANGED
|
@@ -40026,7 +40026,7 @@ function getPlaceholderImage(board, imageDimension) {
|
|
|
40026
40026
|
const placeholderCanvas = conf.documentFactory.createElement("canvas");
|
|
40027
40027
|
const placeholderContext = placeholderCanvas.getContext("2d");
|
|
40028
40028
|
const context = new DrawingContext(board.camera, placeholderContext);
|
|
40029
|
-
const placeholder = new Placeholder;
|
|
40029
|
+
const placeholder = new Placeholder(board);
|
|
40030
40030
|
if (imageDimension) {
|
|
40031
40031
|
placeholderCanvas.width = imageDimension.width;
|
|
40032
40032
|
placeholderCanvas.height = imageDimension.height;
|
package/dist/esm/node.js
CHANGED
|
@@ -42561,7 +42561,7 @@ function getPlaceholderImage(board, imageDimension) {
|
|
|
42561
42561
|
const placeholderCanvas = conf.documentFactory.createElement("canvas");
|
|
42562
42562
|
const placeholderContext = placeholderCanvas.getContext("2d");
|
|
42563
42563
|
const context = new DrawingContext(board.camera, placeholderContext);
|
|
42564
|
-
const placeholder = new Placeholder;
|
|
42564
|
+
const placeholder = new Placeholder(board);
|
|
42565
42565
|
if (imageDimension) {
|
|
42566
42566
|
placeholderCanvas.width = imageDimension.width;
|
|
42567
42567
|
placeholderCanvas.height = imageDimension.height;
|