@frontegg/js 6.87.0 → 6.89.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/index.js +1 -1
- package/node/index.js +1 -1
- package/node/version.js +1 -1
- package/package.json +2 -2
- package/umd/frontegg.development.js +8343 -8404
- package/umd/frontegg.production.min.js +1 -1
- package/umd/frontegg.production.min.js.LICENSE.txt +11 -0
- package/version.js +1 -1
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
+
*
|
|
5
|
+
* THIS IS CUSTOM VERSION OF JS-SHA256 that will be used only
|
|
6
|
+
* on non-secure domain due to the native `crypto.subtle.digest`
|
|
7
|
+
* isn't accessible from non-secure domains.
|
|
8
|
+
*
|
|
9
|
+
* NOTE: Changes from 0.9.0:
|
|
10
|
+
* - Remove any usage of eval scripts
|
|
11
|
+
* - Remove support for UMD and AMD exports
|
|
12
|
+
* - Remove support for CommonJS
|
|
13
|
+
* - Make it typescript
|
|
14
|
+
*
|
|
4
15
|
* [js-sha256]{@link https://github.com/emn178/js-sha256}
|
|
5
16
|
*
|
|
6
17
|
* @version 0.9.0
|
package/version.js
CHANGED