udxcms 1.0.27 → 1.0.28
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/components/index.js +2 -1
- package/dist/utils/index.d.ts +3 -1
- package/dist/utils/index.js +3 -2
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -116,4 +116,5 @@ export { default as PopList } from './h5Components/PopList.vue'
|
|
|
116
116
|
export { default as SearchInput } from './h5Components/SearchInput.vue'
|
|
117
117
|
export { default as SvgCircle } from './h5Components/SvgCircle.vue'
|
|
118
118
|
export { default as Top } from './h5Components/Top.vue'
|
|
119
|
-
export { default as walletconnectBottom } from './h5Components/walletconnectBottom.vue'
|
|
119
|
+
export { default as walletconnectBottom } from './h5Components/walletconnectBottom.vue'
|
|
120
|
+
export { default as brigdePage } from './pageComponents/index/component/bridge-page.vue'
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -59,6 +59,8 @@ export { default as connect } from "./connect.js";
|
|
|
59
59
|
export { default as http } from "./http.js";
|
|
60
60
|
export { default as parse } from "./parse.js";
|
|
61
61
|
export { default as pdf } from "./pdf.js";
|
|
62
|
-
export { unwrapJSONStr };
|
|
63
62
|
export * from "./connect.js";
|
|
64
63
|
import { unwrapJSONStr } from "./parse";
|
|
64
|
+
import { toDataUrl } from "./blockies";
|
|
65
|
+
import { isJSON } from "./parse";
|
|
66
|
+
export { unwrapJSONStr, toDataUrl, isJSON };
|
package/dist/utils/index.js
CHANGED
|
@@ -12,7 +12,8 @@ import { ethers, utils } from 'ethers';
|
|
|
12
12
|
import dayjs from 'dayjs';
|
|
13
13
|
import BNP from "bignumber.js";
|
|
14
14
|
import conf from '../config/index';
|
|
15
|
-
import { unwrapJSONStr } from "./parse";
|
|
15
|
+
import { unwrapJSONStr, isJSON } from "./parse";
|
|
16
|
+
import { toDataUrl } from "./blockies";
|
|
16
17
|
export const AccountForm = (account, accountType) => {
|
|
17
18
|
let AccArr = account.split("");
|
|
18
19
|
if (accountType === "Phone") {
|
|
@@ -697,5 +698,5 @@ export { default as connect } from './connect.js';
|
|
|
697
698
|
export { default as http } from './http.js';
|
|
698
699
|
export { default as parse } from './parse.js';
|
|
699
700
|
export { default as pdf } from './pdf.js';
|
|
700
|
-
export { unwrapJSONStr };
|
|
701
|
+
export { unwrapJSONStr, toDataUrl, isJSON };
|
|
701
702
|
export * from './connect.js';
|