@progress/kendo-spreadsheet-common 1.2.6 → 1.2.7-develop.1
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/index-esm.js +3 -3
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index-esm.js
CHANGED
|
@@ -15357,8 +15357,8 @@ function drawLayout(sheet, layout, group, options) {
|
|
|
15357
15357
|
content.append(bordersGroup);
|
|
15358
15358
|
|
|
15359
15359
|
drawings.forEach(function(d) {
|
|
15360
|
-
let
|
|
15361
|
-
let image =
|
|
15360
|
+
let currentDrawing = d.drawing;
|
|
15361
|
+
let image = currentDrawing.image;
|
|
15362
15362
|
if (image != null) {
|
|
15363
15363
|
let box = d.box;
|
|
15364
15364
|
let url = sheet._workbook.imageUrl(image);
|
|
@@ -15366,7 +15366,7 @@ function drawLayout(sheet, layout, group, options) {
|
|
|
15366
15366
|
new drawing.Image(url, new geometry.Rect(
|
|
15367
15367
|
[ box.left, box.top ],
|
|
15368
15368
|
[ box.width, box.height ]
|
|
15369
|
-
)).opacity(
|
|
15369
|
+
)).opacity(currentDrawing.opacity)
|
|
15370
15370
|
);
|
|
15371
15371
|
}
|
|
15372
15372
|
});
|
package/dist/index.js
CHANGED
|
@@ -15358,16 +15358,16 @@
|
|
|
15358
15358
|
content.append(bordersGroup);
|
|
15359
15359
|
|
|
15360
15360
|
drawings.forEach(function(d) {
|
|
15361
|
-
let
|
|
15362
|
-
let image =
|
|
15361
|
+
let currentDrawing = d.drawing;
|
|
15362
|
+
let image = currentDrawing.image;
|
|
15363
15363
|
if (image != null) {
|
|
15364
15364
|
let box = d.box;
|
|
15365
15365
|
let url = sheet._workbook.imageUrl(image);
|
|
15366
15366
|
content.append(
|
|
15367
|
-
new drawing.Image(url, new kendoDrawing.geometry.Rect(
|
|
15367
|
+
new kendoDrawing.drawing.Image(url, new kendoDrawing.geometry.Rect(
|
|
15368
15368
|
[ box.left, box.top ],
|
|
15369
15369
|
[ box.width, box.height ]
|
|
15370
|
-
)).opacity(
|
|
15370
|
+
)).opacity(currentDrawing.opacity)
|
|
15371
15371
|
);
|
|
15372
15372
|
}
|
|
15373
15373
|
});
|