@reachfive/identity-ui 1.18.0 → 1.20.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 +32 -1
- package/cjs/identity-ui.js +187 -1790
- package/es/identity-ui.js +188 -1791
- package/index.d.ts +485 -14
- package/package.json +13 -4
- package/umd/identity-ui.js +13596 -5792
- package/umd/identity-ui.min.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.20.0] - 2023-09-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add Captcha in EmailEditor widget [#140](https://github.com/ReachFive/identity-web-ui-sdk/pull/140)
|
|
15
|
+
- Add social provider variant format [#142](https://github.com/ReachFive/identity-web-ui-sdk/pull/142)
|
|
16
|
+
- Add ESLint code analyzer [#143](https://github.com/ReachFive/identity-web-ui-sdk/pull/143)
|
|
17
|
+
- Add type definitions for SDK methods arguments [#145](https://github.com/ReachFive/identity-web-ui-sdk/pull/145)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Show user error in MFA widget [#136](https://github.com/ReachFive/identity-web-ui-sdk/pull/136)
|
|
22
|
+
- Validation on birthdate month and day compatibility + add age restriction message [#141](https://github.com/ReachFive/identity-web-ui-sdk/pull/141)
|
|
23
|
+
- Upgrade libphonenumber version to 1.10.44 [#146](https://github.com/ReachFive/identity-web-ui-sdk/pull/146)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- Fix issue when consentField is missing [#144](https://github.com/ReachFive/identity-web-ui-sdk/pull/144)
|
|
28
|
+
|
|
29
|
+
## [1.19.0] - 2023-02-22
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
Support the social provider Naver
|
|
33
|
+
|
|
34
|
+
### Fixes
|
|
35
|
+
Wrong consent version from profile in signup/profile editor forms
|
|
36
|
+
|
|
10
37
|
## [1.18.0] - 2022-12-12
|
|
11
38
|
|
|
12
39
|
Allow to start a step up flow during a login when mfa is required
|
|
@@ -315,7 +342,11 @@ The eye icon is now correctly displayed in the Auth widget.
|
|
|
315
342
|
|
|
316
343
|
First version of the SDK Web UI.
|
|
317
344
|
|
|
318
|
-
[Unreleased]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.
|
|
345
|
+
[Unreleased]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.20.0...HEAD
|
|
346
|
+
|
|
347
|
+
[1.20.0]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.19.0...v1.20.0
|
|
348
|
+
|
|
349
|
+
[1.19.0]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.18.0...v1.19.0
|
|
319
350
|
|
|
320
351
|
[1.18.0]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.17.0...v1.18.0
|
|
321
352
|
|