New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

capture-template

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

capture-template - npm Package Compare versions

Comparing version

to
1.0.10

28

build/web-page-renderer.js

@@ -188,18 +188,20 @@ "use strict";

return _this.nightmare.viewport(bodySize.width, bodySize.height);
})
.then(function () {
return _this.nightmare.evaluate(function (captureSelector) {
var element = document.querySelector(captureSelector);
var rect = element.getBoundingClientRect();
return {
x: Math.ceil(rect.left),
y: Math.ceil(rect.top),
height: Math.ceil(rect.bottom - rect.top),
width: Math.ceil(rect.right - rect.left),
};
}, options.captureSelector || options.waitSelector);
})
.then(function (rect) {
return _this.nightmare.screenshot(outputFilePath, rect);
})];
case 1:
_a.sent();
this.nightmare.evaluate(function (captureSelector) {
var element = document.querySelector(captureSelector);
var rect = element.getBoundingClientRect();
return {
x: Math.ceil(rect.left),
y: Math.ceil(rect.top),
height: Math.ceil(rect.bottom - rect.top),
width: Math.ceil(rect.right - rect.left),
};
}, options.captureSelector || options.waitSelector)
.then(function (rect) {
return _this.nightmare.screenshot(outputFilePath, rect);
});
return [2 /*return*/];

@@ -206,0 +208,0 @@ }

{
"name": "capture-template",
"version": "1.0.9",
"version": "1.0.10",
"description": "This library is responsible for expanding a template web page and then capturing it PNG or PDF.",

@@ -5,0 +5,0 @@ "main": "build/index.js",

Sorry, the diff of this file is not supported yet