@uxda/appkit 1.0.46 → 1.0.48
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.js
CHANGED
|
@@ -457,12 +457,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
457
457
|
agreementOpen: false,
|
|
458
458
|
buttonLoading: false
|
|
459
459
|
});
|
|
460
|
-
const amounts = ref([
|
|
461
|
-
{
|
|
462
|
-
token: 1e3,
|
|
463
|
-
amount: 100
|
|
464
|
-
}
|
|
465
|
-
]);
|
|
460
|
+
const amounts = ref([]);
|
|
466
461
|
const onAgreementLinkClick = ($event) => {
|
|
467
462
|
state.agreementOpen = true;
|
|
468
463
|
};
|
package/package.json
CHANGED
|
@@ -64,12 +64,7 @@ const state = reactive({
|
|
|
64
64
|
buttonLoading: false,
|
|
65
65
|
})
|
|
66
66
|
|
|
67
|
-
const amounts = ref<any[]>([
|
|
68
|
-
{
|
|
69
|
-
token: 1000,
|
|
70
|
-
amount: 100
|
|
71
|
-
}
|
|
72
|
-
])
|
|
67
|
+
const amounts = ref<any[]>([])
|
|
73
68
|
|
|
74
69
|
const onAgreementLinkClick = ($event) => {
|
|
75
70
|
state.agreementOpen = true
|