@eid-easy/eideasy-widget 2.87.0 → 2.89.0-beta.1
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-LATEST.md +2 -2
- package/CHANGELOG.md +18 -0
- package/dist/full/eideasy-widget.common.js +1322 -52
- package/dist/full/eideasy-widget.umd.js +1300 -30
- package/dist/full/eideasy-widget.umd.min.js +3 -3
- package/dist/index.html +6 -4
- package/package.json +7 -6
package/dist/index.html
CHANGED
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
countryCode: 'PL', // ISO 3166 two letter country code
|
|
66
66
|
language: 'en', // ISO 639-1 two letter language code,
|
|
67
67
|
sandbox: true,
|
|
68
|
-
clientId: '
|
|
69
|
-
redirectUri: '
|
|
68
|
+
clientId: '9kKmNtYQ7LDOlHvasAE9oYQ0gKS4V4Bl',
|
|
69
|
+
redirectUri: 'https://id.eideasy.eu/admin/oauthlogin', // this gets used for redirects e.g. when using eParaksts mobile
|
|
70
70
|
apiEndpoints: {
|
|
71
71
|
base: () => 'http://id.eideasy.eu',
|
|
72
72
|
identityStart: () => 'http://eid-sample-app.eu/api/identity/start',
|
|
@@ -165,8 +165,8 @@
|
|
|
165
165
|
countryCode: 'FR', // ISO 3166 two letter country code
|
|
166
166
|
language: 'en', // ISO 639-1 two letter language code,
|
|
167
167
|
sandbox: true,
|
|
168
|
-
clientId: '
|
|
169
|
-
docId: '
|
|
168
|
+
clientId: '9kKmNtYQ7LDOlHvasAE9oYQ0gKS4V4Bl',
|
|
169
|
+
docId: 'onUu7fIlq7MU8tL4odnuDaxsGIagRd31Is3OFnTa',
|
|
170
170
|
apiEndpoints: {
|
|
171
171
|
base: () => 'https://id.eideasy.eu',
|
|
172
172
|
},
|
|
@@ -237,6 +237,8 @@
|
|
|
237
237
|
isOtpSent: false,
|
|
238
238
|
//otpFlow: 'start-at-method-selection',
|
|
239
239
|
requireHandwrittenSignature: false,
|
|
240
|
+
fieldAutocomplete: true,
|
|
241
|
+
waitForChallengeCode: false,
|
|
240
242
|
mode,
|
|
241
243
|
}
|
|
242
244
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eid-easy/eideasy-widget",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.89.0-beta.1",
|
|
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-AD0PRzEf8m0GjdrICXny+AXQn6iFG9nTvddTnMiMBQ8=",
|
|
7
|
+
"productionReleaseVersion": "2.88.0",
|
|
8
|
+
"productionReleaseSri": "sha256-L+pPhspJb+wSLBuqxPYKcI5HugbwBALC0XsISspmiTQ=",
|
|
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.71.0",
|
|
45
45
|
"core-js": "^3.8.3",
|
|
46
46
|
"i18n-iso-countries": "^6.7.0",
|
|
47
47
|
"lodash.defaultsdeep": "^4.6.1",
|
|
@@ -128,7 +128,8 @@
|
|
|
128
128
|
"> 1%",
|
|
129
129
|
"last 2 versions",
|
|
130
130
|
"not dead",
|
|
131
|
-
"chrome 75"
|
|
131
|
+
"chrome 75",
|
|
132
|
+
"safari 13"
|
|
132
133
|
],
|
|
133
134
|
"config": {
|
|
134
135
|
"commitizen": {
|