edatalia-websign 3.0.11 → 3.0.14
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 +18 -3
- package/README.md +5 -4
- package/dist/web-sign-core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
Todas las notas importantes de cambios en este proyecto se documentarán aquí. Este changelog será de carácter público.
|
|
4
4
|
|
|
5
|
-
## [3.0.
|
|
5
|
+
## [3.0.14] - 2025-10-15
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- WebSign: Añade pseudopresión cuando se firma con el dedo sobre el dispositivo móvil
|
|
10
|
+
- WebSign: Usa tsp y ocsp por defecto si se omiten en la configuración
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [3.0.12] - 2025-10-07
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- WebSign Core: Permite mostrar botones de acción en la DTU
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [3.0.11] - 2025-10-03
|
|
6
21
|
|
|
7
22
|
### Fixed
|
|
8
23
|
|
|
@@ -10,9 +25,9 @@ Todas las notas importantes de cambios en este proyecto se documentarán aquí.
|
|
|
10
25
|
|
|
11
26
|
|
|
12
27
|
---
|
|
13
|
-
## [3.0.10] - 2025-
|
|
28
|
+
## [3.0.10] - 2025-10-01
|
|
14
29
|
|
|
15
|
-
###
|
|
30
|
+
### Changed
|
|
16
31
|
|
|
17
32
|
- WebSign Full: Permite pasar el objeto wacom parcialmente.
|
|
18
33
|
|
package/README.md
CHANGED
|
@@ -186,8 +186,9 @@ All parameters below are part of the `config` object:
|
|
|
186
186
|
| `jsUrl` | `boolean` | Js path for dtu |
|
|
187
187
|
| `loadSignedPdf` | `boolean` | Realoads the signed PDF upon completion of the signature on the viewer. Compatible with single file |
|
|
188
188
|
| `encCertKey` | `string` | Value to define the public key for the biometric data encryption certificate. By default, the edatalia encryption certificate will be used. |
|
|
189
|
-
| `
|
|
190
|
-
| `
|
|
189
|
+
| `options` | `Object` | Enable or disable timestamp and ocsp providers.
|
|
190
|
+
| `timestampProvider` | `Object` | Specifies timestamp values to make timestamp signatures (B-T). The includeTimestamp in options must be set to true. To use default timestamp provider omit this param or set to null |
|
|
191
|
+
| `ocspProvider` | `Object` | Specifies ocsp values to make long term validation signatures (B-LT). The includeOCSP in options must be set to true. And the timestamp must be set correctly. To use default ocsp provider omit this param or set to null |
|
|
191
192
|
| `signatureTimeLimit` | `number` | Time limit to be able to sign |
|
|
192
193
|
| `widget` | `Object` | Specifies signature positioning in coordinates or by text search, custom text for the signature, etc. |
|
|
193
194
|
| `edataliaBaseUrl` | `string` | Specifies base url to edatalia scripts, needed for viewer |
|
|
@@ -250,8 +251,8 @@ wacom: {
|
|
|
250
251
|
options: {
|
|
251
252
|
includeTimestamp: false, //set to true if includes timestamp provider
|
|
252
253
|
includeOCSP: false, //set to true if includes ocsp provider
|
|
253
|
-
validateCertificate: false
|
|
254
|
-
pdfCertifiedSignature: false
|
|
254
|
+
validateCertificate: false //verifies certificate validity at the time of signing
|
|
255
|
+
pdfCertifiedSignature: false //if true applies MDP certified type signature
|
|
255
256
|
},
|
|
256
257
|
|
|
257
258
|
```
|