@eid-easy/eideasy-widget 2.89.0-beta.1 → 2.91.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
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
# [2.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* Allow smart id signing request without waiting for challenge code ([#208](https://github.com/eideasy/eideasy-widget/issues/208)) ([cdd917a](https://github.com/eideasy/eideasy-widget/commit/cdd917a3033290cfe2e1e3097dc169fabd3aae19))
|
|
1
|
+
# [2.89.0](https://github.com/eideasy/eideasy-widget/compare/v2.89.0-beta.1...v2.89.0) (2023-10-04)
|
|
7
2
|
|
|
8
3
|
|
|
9
4
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,42 @@
|
|
|
1
|
-
# [2.
|
|
1
|
+
# [2.91.0](https://github.com/eideasy/eideasy-widget/compare/v2.89.0...v2.91.0) (2023-10-11)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* start polling the smart-id complete endpoint without waiting for the end user's certificate confirmation ([#210](https://github.com/eideasy/eideasy-widget/issues/210)) ([6eaf20b](https://github.com/eideasy/eideasy-widget/commit/6eaf20b8f56eb8c33bc6e9c00db8fa5fd733a9e2))
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
# [2.
|
|
10
|
+
# [2.90.0](https://github.com/eideasy/eideasy-widget/compare/v2.89.0...v2.90.0) (2023-10-11)
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* Allow smart id signing request without waiting for challenge code ([#208](https://github.com/eideasy/eideasy-widget/issues/208)) ([cdd917a](https://github.com/eideasy/eideasy-widget/commit/cdd917a3033290cfe2e1e3097dc169fabd3aae19))
|
|
16
|
-
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
# [2.87.0](https://github.com/eideasy/eideasy-widget/compare/v2.86.1...v2.87.0) (2023-10-03)
|
|
14
|
+
# [2.89.0](https://github.com/eideasy/eideasy-widget/compare/v2.89.0-beta.1...v2.89.0) (2023-10-04)
|
|
20
15
|
|
|
21
16
|
|
|
22
17
|
|
|
18
|
+
# [2.89.0-beta.1](https://github.com/eideasy/eideasy-widget/compare/v2.88.0...v2.89.0-beta.1) (2023-10-04)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* support safari 13 ([6da2b7d](https://github.com/eideasy/eideasy-widget/commit/6da2b7d1c86a1d048c5670a4cf647c60a25541d2))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# [2.88.0](https://github.com/eideasy/eideasy-widget/compare/v2.87.0...v2.88.0) (2023-10-03)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* Allow smart id signing request without waiting for challenge code ([#208](https://github.com/eideasy/eideasy-widget/issues/208)) ([cdd917a](https://github.com/eideasy/eideasy-widget/commit/cdd917a3033290cfe2e1e3097dc169fabd3aae19))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [2.87.0](https://github.com/eideasy/eideasy-widget/compare/v2.86.1...v2.87.0) (2023-10-03)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
23
40
|
## [2.86.1](https://github.com/eideasy/eideasy-widget/compare/v2.86.0...v2.86.1) (2023-09-29)
|
|
24
41
|
|
|
25
42
|
|
|
@@ -51076,7 +51076,7 @@ const createStore = function createStore({
|
|
|
51076
51076
|
otpFlow: null,
|
|
51077
51077
|
fieldAutocomplete: false,
|
|
51078
51078
|
allowMethodChange: true,
|
|
51079
|
-
waitForChallengeCode:
|
|
51079
|
+
waitForChallengeCode: false
|
|
51080
51080
|
});
|
|
51081
51081
|
const filterMethodsByCountry = function filterMethodsByCountry(methods, country) {
|
|
51082
51082
|
return methods.filter(method => {
|
|
@@ -51086,7 +51086,7 @@ const createStore = function createStore({
|
|
|
51086
51086
|
otpFlow: null,
|
|
51087
51087
|
fieldAutocomplete: false,
|
|
51088
51088
|
allowMethodChange: true,
|
|
51089
|
-
waitForChallengeCode:
|
|
51089
|
+
waitForChallengeCode: false
|
|
51090
51090
|
});
|
|
51091
51091
|
const filterMethodsByCountry = function filterMethodsByCountry(methods, country) {
|
|
51092
51092
|
return methods.filter(method => {
|