gearboxdownloadmodal 0.0.13 → 1.0.1
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/index.es.js +8 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -2
package/dist/index.es.js
CHANGED
|
@@ -3931,7 +3931,14 @@ function Be(e) {
|
|
|
3931
3931
|
theme: "light"
|
|
3932
3932
|
});
|
|
3933
3933
|
}
|
|
3934
|
-
let MA = (e = 21) =>
|
|
3934
|
+
let MA = (e = 21) => {
|
|
3935
|
+
let A = "", t = crypto.getRandomValues(new Uint8Array(e));
|
|
3936
|
+
for (; e--; ) {
|
|
3937
|
+
let r = t[e] & 63;
|
|
3938
|
+
r < 36 ? A += r.toString(36) : r < 62 ? A += (r - 26).toString(36).toUpperCase() : r < 63 ? A += "_" : A += "-";
|
|
3939
|
+
}
|
|
3940
|
+
return A;
|
|
3941
|
+
};
|
|
3935
3942
|
const Hi = ({ versionId: e, typeOfProduct: A, api: t }) => {
|
|
3936
3943
|
const r = async () => {
|
|
3937
3944
|
if (A === "Flex")
|