@eid-easy/eideasy-widget 2.8.0 → 2.11.0
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 +31 -0
- package/dist/full/eideasy-widget.common.js +1513 -329
- package/dist/full/eideasy-widget.common.js.map +1 -1
- package/dist/full/eideasy-widget.umd.js +1513 -329
- package/dist/full/eideasy-widget.umd.js.map +1 -1
- package/dist/full/eideasy-widget.umd.min.js +3 -3
- package/dist/full/eideasy-widget.umd.min.js.map +1 -1
- package/dist/index.html +5 -3
- package/package.json +5 -5
package/dist/index.html
CHANGED
|
@@ -34,11 +34,13 @@
|
|
|
34
34
|
<div style="margin-top: 10px; margin-bottom: 10px;">
|
|
35
35
|
<label for="langPicker">Language:</label>
|
|
36
36
|
<select name="langPicker" id="langPicker">
|
|
37
|
+
<option value="cs">Czech</option>
|
|
37
38
|
<option value="en">English</option>
|
|
38
39
|
<option value="et" selected="">Estonian</option>
|
|
39
40
|
<option value="fi">Finnish</option>
|
|
40
41
|
<option value="fr">French</option>
|
|
41
42
|
<option value="de">German</option>
|
|
43
|
+
<option value="it">Italian</option>
|
|
42
44
|
<option value="lv">Latvian</option>
|
|
43
45
|
<option value="lt">Lithuanian</option>
|
|
44
46
|
<option value="pt">Portuguese</option>
|
|
@@ -147,14 +149,14 @@
|
|
|
147
149
|
|
|
148
150
|
const settings = {
|
|
149
151
|
debug: true,
|
|
150
|
-
countryCode: '
|
|
152
|
+
countryCode: 'SE', // ISO 3166 two letter country code
|
|
151
153
|
language: 'et', // ISO 639-1 two letter language code,
|
|
152
154
|
sandbox: true,
|
|
153
155
|
clientId: 'SNcycaJFfibUABHrbx6c51YRqSiV76Nz',
|
|
154
|
-
docId: '
|
|
156
|
+
docId: '7SlYiYzrTqzuG5DgVKNKrnZhhQ6xDUaafsyYQEus',
|
|
155
157
|
redirectUri: 'http://localhost:8080/', // this gets used for redirects e.g. when using eParaksts mobile
|
|
156
158
|
apiEndpoints: {
|
|
157
|
-
base: () => 'https://id.eideasy.
|
|
159
|
+
base: () => 'https://id.eideasy.eu',
|
|
158
160
|
},
|
|
159
161
|
translations: {
|
|
160
162
|
'et': {
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eid-easy/eideasy-widget",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "eID Easy Widget is a client-side embeddable component for creating electronic signatures and identifying users through eID Easy API.",
|
|
5
5
|
"main": "dist/full/eideasy-widget.umd.min.js",
|
|
6
|
-
"sri": "sha256-
|
|
7
|
-
"productionReleaseVersion": "2.
|
|
8
|
-
"productionReleaseSri": "sha256-
|
|
6
|
+
"sri": "sha256-C2NEq3ubxX9vvvADuxKvkHuKxfvdRxZN+sgQnnBxoAg=",
|
|
7
|
+
"productionReleaseVersion": "2.11.0",
|
|
8
|
+
"productionReleaseSri": "sha256-C2NEq3ubxX9vvvADuxKvkHuKxfvdRxZN+sgQnnBxoAg=",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@eid-easy/eideasy-browser-client": "2.
|
|
44
|
+
"@eid-easy/eideasy-browser-client": "2.13.0",
|
|
45
45
|
"core-js": "^3.6.5",
|
|
46
46
|
"i18n-iso-countries": "^6.7.0",
|
|
47
47
|
"lodash.defaultsdeep": "^4.6.1",
|