@eid-easy/eideasy-widget 2.108.2 → 2.109.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-LATEST.md +2 -2
- package/CHANGELOG.md +1861 -1852
- package/LICENSE +7 -7
- package/README.md +16 -16
- package/dist/full/eideasy-widget.common.js +515 -330
- package/dist/full/eideasy-widget.umd.js +503 -318
- package/dist/full/eideasy-widget.umd.min.js +3 -3
- package/dist/index.html +4 -4
- package/dist/widget-only/demo.html +1 -0
- package/dist/widget-only/eideasy-widget.common.js +41707 -0
- package/dist/widget-only/eideasy-widget.umd.js +41726 -0
- package/dist/widget-only/eideasy-widget.umd.min.js +14 -0
- package/package.json +5 -5
- package/dist/favicon.ico +0 -0
- package/dist/fonts/verimi-roboto-v20-latin-500.woff +0 -0
- package/dist/fonts/verimi-roboto-v20-latin-500.woff2 +0 -0
- package/dist/js/app.js +0 -20
package/dist/index.html
CHANGED
|
@@ -162,11 +162,11 @@
|
|
|
162
162
|
|
|
163
163
|
const settings = {
|
|
164
164
|
debug: true,
|
|
165
|
-
countryCode: '
|
|
165
|
+
countryCode: 'BE', // 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: 'SNcycaJFfibUABHrbx6c51YRqSiV76Nz',
|
|
169
|
+
docId: '2clr15ltGh3tzFNJ7cRkZibironshOzuaAQFesad',
|
|
170
170
|
apiEndpoints: {
|
|
171
171
|
// base: () => 'http://localhost:8000',
|
|
172
172
|
base: () => 'https://id.eideasy.eu',
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
const signingCertWidget = initSigningWidget(
|
|
257
257
|
document.getElementById('signingCertWidgetHolder'),
|
|
258
258
|
['id-signature', 'lt-id-signature', 'lv-id-signature', 'fi-id-signature'],
|
|
259
|
-
'
|
|
259
|
+
'cscApiAuthorizeCredential'
|
|
260
260
|
);
|
|
261
261
|
const identificationWidget = initIdentificationWidget(document.getElementById('identificationWidgetHolder'));
|
|
262
262
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><meta charset="utf-8"><title>eideasy-widget demo</title><script src="./eideasy-widget.umd.js"></script><script>console.log(eideasy-widget)</script>
|