@mictonode/widget 0.3.19 → 0.3.21
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/{main-c424432b.js → main-d726e4c5.js} +60 -62
- package/dist/ping-widget.js +2 -2
- package/dist/ping-widget.umd.cjs +3 -3
- package/dist/{query.lcd-8531915e.js → query.lcd-1313ff80.js} +1 -1
- package/dist/{query.rpc.Query-d1e130b4.js → query.rpc.Query-a3ee2174.js} +1 -1
- package/dist/{tx.rpc.msg-ef7ee094.js → tx.rpc.msg-7ed2d9d0.js} +1 -1
- package/lib/main.css +9 -3
- package/package.json +1 -1
- package/src/App.vue +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as u, m as r, T as W, t as ee, f as ie, L as d, P as L, A as p, a as B, b as F, c as w, d as M, e as U, g as Q, h as oe, _ as ne } from "./main-
|
|
1
|
+
import { C as u, m as r, T as W, t as ee, f as ie, L as d, P as L, A as p, a as B, b as F, c as w, d as M, e as U, g as Q, h as oe, _ as ne } from "./main-d726e4c5.js";
|
|
2
2
|
function Z() {
|
|
3
3
|
return {
|
|
4
4
|
positionId: d.UZERO,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as n, M as r, i as c, m as t, j as a, k as d, l as h, n as l, o as g, p, q as u, r as m } from "./main-
|
|
1
|
+
import { _ as n, M as r, i as c, m as t, j as a, k as d, l as h, n as l, o as g, p, q as u, r as m } from "./main-d726e4c5.js";
|
|
2
2
|
class f {
|
|
3
3
|
constructor(e) {
|
|
4
4
|
n(this, "rpc", void 0), this.rpc = e, this.createPosition = this.createPosition.bind(this), this.withdrawPosition = this.withdrawPosition.bind(this), this.collectFees = this.collectFees.bind(this), this.collectIncentives = this.collectIncentives.bind(this), this.fungifyChargedPositions = this.fungifyChargedPositions.bind(this);
|
package/lib/main.css
CHANGED
|
@@ -215,6 +215,12 @@ code, pre, .font-mono {
|
|
|
215
215
|
align-items: stretch;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
+
.input-group > .input,
|
|
219
|
+
.input-group > .select {
|
|
220
|
+
width: auto;
|
|
221
|
+
min-width: 0;
|
|
222
|
+
}
|
|
223
|
+
|
|
218
224
|
.join {
|
|
219
225
|
display: flex;
|
|
220
226
|
}
|
|
@@ -294,13 +300,13 @@ code, pre, .font-mono {
|
|
|
294
300
|
}
|
|
295
301
|
|
|
296
302
|
.dark .select {
|
|
297
|
-
background:
|
|
298
|
-
border-color: rgba(255, 255, 255, 0.
|
|
303
|
+
background: rgba(255, 255, 255, 0.05);
|
|
304
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
299
305
|
color: #e5e7eb;
|
|
300
306
|
}
|
|
301
307
|
|
|
302
308
|
.dark .select option {
|
|
303
|
-
background: #
|
|
309
|
+
background: #0f1419;
|
|
304
310
|
color: #e5e7eb;
|
|
305
311
|
}
|
|
306
312
|
|
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -145,8 +145,8 @@ const switchTheme = () => {
|
|
|
145
145
|
};
|
|
146
146
|
|
|
147
147
|
onMounted(() => {
|
|
148
|
-
document.documentElement.classList.add('
|
|
149
|
-
document.documentElement.setAttribute('data-theme', '
|
|
148
|
+
document.documentElement.classList.add('dark');
|
|
149
|
+
document.documentElement.setAttribute('data-theme', 'dark');
|
|
150
150
|
});
|
|
151
151
|
const walletStateChange = (res: any) => {
|
|
152
152
|
console.log(res, 'resres');
|