@reachfive/identity-ui 1.19.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 +22 -1
- package/cjs/identity-ui.js +121 -1768
- package/es/identity-ui.js +122 -1769
- package/index.d.ts +485 -14
- package/package.json +13 -4
- package/umd/identity-ui.js +13408 -5648
- package/umd/identity-ui.min.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,25 @@ 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
|
+
|
|
10
29
|
## [1.19.0] - 2023-02-22
|
|
11
30
|
|
|
12
31
|
### Added
|
|
@@ -323,7 +342,9 @@ The eye icon is now correctly displayed in the Auth widget.
|
|
|
323
342
|
|
|
324
343
|
First version of the SDK Web UI.
|
|
325
344
|
|
|
326
|
-
[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
|
|
327
348
|
|
|
328
349
|
[1.19.0]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.18.0...v1.19.0
|
|
329
350
|
|