@quantidia/sdk 1.0.6 → 1.0.8
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 +8 -0
- package/README.md +4 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.0.7] - 2026-06-10
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- CDN URL updated to latest (removed pinned major version tag)
|
|
14
|
+
- NPM section note added to README (documentation in progress)
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
10
18
|
## [1.0.6] - 2026-06-10
|
|
11
19
|
|
|
12
20
|
### Changed
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ JavaScript SDK for integrating Quantidia digital signature into any web applicat
|
|
|
12
12
|
Add the script tag before your app code. The SDK exposes `window.Quantidia` once loaded.
|
|
13
13
|
|
|
14
14
|
```html
|
|
15
|
-
<script src="https://cdn.jsdelivr.net/npm/@quantidia/sdk
|
|
15
|
+
<script src="https://cdn.jsdelivr.net/npm/@quantidia/sdk/dist/quantidia-sdk.umd.min.js"></script>
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
---
|
|
@@ -22,7 +22,7 @@ Add the script tag before your app code. The SDK exposes `window.Quantidia` once
|
|
|
22
22
|
### 1. Load and initialize
|
|
23
23
|
|
|
24
24
|
```html
|
|
25
|
-
<script src="https://cdn.jsdelivr.net/npm/@quantidia/sdk
|
|
25
|
+
<script src="https://cdn.jsdelivr.net/npm/@quantidia/sdk/dist/quantidia-sdk.umd.min.js"></script>
|
|
26
26
|
<script>
|
|
27
27
|
// Wait for the SDK to be available on window.Quantidia
|
|
28
28
|
function waitForSdk(maxTries = 60, delayMs = 100) {
|
|
@@ -138,6 +138,8 @@ await SDK.openSigningWithLogin({
|
|
|
138
138
|
|
|
139
139
|
## NPM / ES Module
|
|
140
140
|
|
|
141
|
+
> 📖 Full NPM and ES Module documentation is in progress.
|
|
142
|
+
|
|
141
143
|
```bash
|
|
142
144
|
npm install @quantidia/sdk
|
|
143
145
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantidia/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Quantidia SDK for digital signature integrations (Fortify, Nexu, cloud signing)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/quantidia-sdk.cjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"./ui": {
|
|
19
19
|
"types": "./dist/src/ui.d.ts",
|
|
20
|
-
"import": "./dist/ui.
|
|
20
|
+
"import": "./dist/ui.js",
|
|
21
21
|
"require": "./dist/ui.cjs"
|
|
22
22
|
}
|
|
23
23
|
},
|