@web3auth/modal 5.2.0 → 6.0.0-alpha.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/dist/modal.cjs.js +92 -25
- package/dist/modal.cjs.js.map +1 -1
- package/dist/modal.esm.js +57 -9
- package/dist/modal.esm.js.map +1 -1
- package/dist/modal.umd.min.js +1 -1
- package/dist/modal.umd.min.js.LICENSE.txt +1 -15
- package/dist/modal.umd.min.js.map +1 -1
- package/dist/types/default.d.ts +3 -1
- package/dist/types/utils.d.ts +1 -0
- package/package.json +23 -16
- package/src/config.ts +1 -1
- package/src/default.ts +35 -4
- package/src/modalManager.ts +13 -2
- package/src/utils.ts +1 -0
|
@@ -33,21 +33,16 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
33
33
|
PERFORMANCE OF THIS SOFTWARE.
|
|
34
34
|
***************************************************************************** */
|
|
35
35
|
|
|
36
|
-
/*! Case - v1.6.2 - 2020-03-24
|
|
37
|
-
* Copyright (c) 2020 Nathan Bubna; Licensed MIT, GPL */
|
|
38
|
-
|
|
39
36
|
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
|
40
37
|
|
|
41
38
|
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
|
42
39
|
|
|
43
40
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
44
41
|
|
|
45
|
-
/*! noble-
|
|
42
|
+
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
46
43
|
|
|
47
44
|
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
48
45
|
|
|
49
|
-
/*! noble-secp256k1 - MIT License (c) 2019 Paul Miller (paulmillr.com) */
|
|
50
|
-
|
|
51
46
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
52
47
|
|
|
53
48
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
@@ -91,12 +86,3 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
91
86
|
* This source code is licensed under the MIT license found in the
|
|
92
87
|
* LICENSE file in the root directory of this source tree.
|
|
93
88
|
*/
|
|
94
|
-
|
|
95
|
-
/**
|
|
96
|
-
* [js-sha3]{@link https://github.com/emn178/js-sha3}
|
|
97
|
-
*
|
|
98
|
-
* @version 0.8.0
|
|
99
|
-
* @author Chen, Yi-Cyuan [emn178@gmail.com]
|
|
100
|
-
* @copyright Chen, Yi-Cyuan 2015-2018
|
|
101
|
-
* @license MIT
|
|
102
|
-
*/
|