udxcms 1.0.26 → 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.
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  * @Author:
3
3
  * @Date: 2020-11-19 12:38:02
4
- * @LastEditTime: 2025-09-29 10:58:09
4
+ * @LastEditTime: 2025-09-29 11:08:17
5
5
  * @LastEditors: lewis lewis@everylink.ai
6
6
  * @Description:
7
7
  -->
@@ -143,7 +143,7 @@
143
143
  detailCurreny = currenyList.find(v => v.name == defaultCurreny)
144
144
  detailCurreny && this.$store.commit('user/setCurrency', detailCurreny)
145
145
  let currency = this.currency.name
146
- this.$store.dispatch('cmsstore/getCurrencyDataByTime', currency)
146
+ this.$store.dispatch('getCurrencyDataByTime', currency)
147
147
  this.$emit('input', false)
148
148
  this.isClickstatus = false
149
149
  }
@@ -153,7 +153,7 @@
153
153
  this.$store.commit('user/setCurrency', item)
154
154
  let currency = item.name
155
155
  // if (this.isClickstatus) this.$emit('input', false)
156
- this.$store.dispatch('cmsstore/getCurrencyDataByTime', currency)
156
+ this.$store.dispatch('getCurrencyDataByTime', currency)
157
157
  this.$emit('input', false)
158
158
  this.isClickstatus = false
159
159
  refreshEvents(['currency'])
@@ -163,7 +163,7 @@
163
163
  if (res.code == 200) {
164
164
  this.$store.commit('user/setCurrency', item)
165
165
  // if (this.isClickstatus) this.$emit('input', false)
166
- this.$store.dispatch('cmsstore/getCurrencyDataByTime', currency)
166
+ this.$store.dispatch('getCurrencyDataByTime', currency)
167
167
  refreshEvents(['currency'])
168
168
  this.$emit('input', false)
169
169
  this.isClickstatus = false
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  * @Author:
3
3
  * @Date: 2020-11-19 12:38:02
4
- * @LastEditTime: 2025-09-29 10:57:51
4
+ * @LastEditTime: 2025-09-29 11:08:15
5
5
  * @LastEditors: lewis lewis@everylink.ai
6
6
  * @Description:
7
7
  -->
@@ -126,7 +126,7 @@
126
126
  detailCurreny = currenyList.find(v => v.name == defaultCurreny)
127
127
  detailCurreny && this.$store.commit('user/setCurrency', detailCurreny)
128
128
  let currency = this.currency.name
129
- this.$store.dispatch('cmsstore/getCurrencyDataByTime', currency)
129
+ this.$store.dispatch('getCurrencyDataByTime', currency)
130
130
  this.$emit('input', false)
131
131
  this.isClickstatus = false
132
132
  }
@@ -136,7 +136,7 @@
136
136
  this.$store.commit('user/setCurrency', item)
137
137
  let currency = item.name
138
138
  // if (this.isClickstatus) this.$emit('input', false)
139
- this.$store.dispatch('cmsstore/getCurrencyDataByTime', currency)
139
+ this.$store.dispatch('getCurrencyDataByTime', currency)
140
140
  this.$emit('input', false)
141
141
  this.isClickstatus = false
142
142
  refreshEvents(['currency'])
@@ -146,7 +146,7 @@
146
146
  if (res.code == 200) {
147
147
  this.$store.commit('user/setCurrency', item)
148
148
  // if (this.isClickstatus) this.$emit('input', false)
149
- this.$store.dispatch('cmsstore/getCurrencyDataByTime', currency)
149
+ this.$store.dispatch('getCurrencyDataByTime', currency)
150
150
  refreshEvents(['currency'])
151
151
  this.$emit('input', false)
152
152
  this.isClickstatus = false
@@ -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'
@@ -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 };
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "udxcms",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "description": "cms submodule",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",