edatalia-websign 3.4.8 → 3.4.10
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/CHANGELOG.md +12 -0
- package/README.md +2 -2
- package/dist/web-sign-core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All significant updates to this project will be documented here.
|
|
4
4
|
This changelog is public.
|
|
5
5
|
|
|
6
|
+
## [3.4.10] - 2026-03-26
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Allow page 0 (sign all pages) with bridge client
|
|
11
|
+
|
|
12
|
+
## [3.4.9] - 2026-03-18
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Fixed pointer events being registered on PC canvas in DTU + Bridge mode, preventing unintended drawing on the main screen
|
|
17
|
+
|
|
6
18
|
## [3.4.8] - 2026-03-17
|
|
7
19
|
|
|
8
20
|
### Changed
|
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ WebSign comes with default parameter values, but it's recommended to set them to
|
|
|
79
79
|
mainContainerHeight: "800px",
|
|
80
80
|
widget: {
|
|
81
81
|
type: "fixed",
|
|
82
|
-
page: 0
|
|
82
|
+
page: 0,
|
|
83
83
|
width: 160,
|
|
84
84
|
height: 100,
|
|
85
85
|
x: 100,
|
|
@@ -202,7 +202,7 @@ widget: {
|
|
|
202
202
|
height: 100, // height of the signature area
|
|
203
203
|
x: 0, // X position on the PDF page (used if type is 'fixed')
|
|
204
204
|
y: 0, // Y position on the PDF page (used if type is 'fixed')
|
|
205
|
-
page: 0, // PDF page number where the signature will appear
|
|
205
|
+
page: 0, // PDF page number where the signature will appear, 0 = sign all pages
|
|
206
206
|
customText: [ // text displayed on the PDF after signing
|
|
207
207
|
{
|
|
208
208
|
text: "Documento firmado digitalmente",
|