@unsource/ui 2.8.0 → 2.8.3
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/module.json +1 -1
- package/dist/runtime/components/UnCheckboxItem.vue +1 -1
- package/dist/runtime/components/{UnModal/Transfer.vue → UnModalTransfer.vue} +1 -0
- package/dist/runtime/components/{UnModal/Withdrawal.d.vue.ts → UnModalWalletIncrease.d.vue.ts} +1 -1
- package/dist/runtime/components/{UnModal/WalletIncrease.vue → UnModalWalletIncrease.vue} +1 -1
- package/dist/runtime/components/{UnModal/WalletIncrease.d.vue.ts → UnModalWalletIncrease.vue.d.ts} +1 -1
- package/dist/runtime/components/{UnModal/Withdrawal.vue.d.ts → UnModalWithdrawal.d.vue.ts} +1 -1
- package/dist/runtime/components/{UnModal/Withdrawal.vue → UnModalWithdrawal.vue} +2 -2
- package/dist/runtime/components/{UnModal/WalletIncrease.vue.d.ts → UnModalWithdrawal.vue.d.ts} +1 -1
- package/dist/runtime/components/UnRadioItem.vue +1 -1
- package/dist/runtime/components/UnTab.vue +1 -1
- package/dist/runtime/components/UnToggle.vue +1 -1
- package/dist/runtime/components/UnWallet.vue +1 -1
- package/dist/runtime/components/UnWalletActions.d.vue.ts +1 -1
- package/dist/runtime/components/UnWalletActions.vue +1 -1
- package/dist/runtime/components/UnWalletActions.vue.d.ts +1 -1
- package/dist/runtime/composables/global.js +1 -0
- package/package.json +1 -1
- /package/dist/runtime/components/{UnModal/PaymentMethod.d.vue.ts → UnModalPaymentMethod.d.vue.ts} +0 -0
- /package/dist/runtime/components/{UnModal/PaymentMethod.vue → UnModalPaymentMethod.vue} +0 -0
- /package/dist/runtime/components/{UnModal/PaymentMethod.vue.d.ts → UnModalPaymentMethod.vue.d.ts} +0 -0
- /package/dist/runtime/components/{UnModal/Transfer.d.vue.ts → UnModalTransfer.d.vue.ts} +0 -0
- /package/dist/runtime/components/{UnModal/Transfer.vue.d.ts → UnModalTransfer.vue.d.ts} +0 -0
- /package/dist/runtime/components/{UnModal/WalletSelection.d.vue.ts → UnModalWalletSelection.d.vue.ts} +0 -0
- /package/dist/runtime/components/{UnModal/WalletSelection.vue → UnModalWalletSelection.vue} +0 -0
- /package/dist/runtime/components/{UnModal/WalletSelection.vue.d.ts → UnModalWalletSelection.vue.d.ts} +0 -0
package/dist/module.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div
|
|
3
3
|
class="select-none group px-4 py-3 flex items-center gap-2 transition duration-300 hover:bg-primary-100"
|
|
4
4
|
:class="{ 'opacity-50 grayscale': disabled, 'disable': disabled, 'selected': selected }"
|
|
5
|
-
@click="toggle"
|
|
5
|
+
@click.prevent.stop="toggle"
|
|
6
6
|
>
|
|
7
7
|
<div
|
|
8
8
|
name="box"
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
</template>
|
|
21
21
|
|
|
22
22
|
<script setup>
|
|
23
|
-
import { saveWithdraw } from "
|
|
24
|
-
import { computed, navigateTo, useNuxtApp, useTemplateRef } from "#imports";
|
|
23
|
+
import { saveWithdraw } from "../composables/services";
|
|
24
|
+
import { computed, navigateTo, ref, useNuxtApp, useTemplateRef } from "#imports";
|
|
25
25
|
const { wallet } = defineProps({
|
|
26
26
|
wallet: { type: Object, required: true }
|
|
27
27
|
});
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div
|
|
3
3
|
class="select-none group px-4 py-3 flex flex-row items-center gap-3 transition duration-300 hover:bg-primary-500/10 border-0 min-w-fit"
|
|
4
4
|
:class="{ 'opacity-50 grayscale': disabled, 'disable': disabled, 'selected': selected }"
|
|
5
|
-
@click="toggle"
|
|
5
|
+
@click.prevent.stop="toggle"
|
|
6
6
|
>
|
|
7
7
|
<div
|
|
8
8
|
name="radio"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
</template>
|
|
97
97
|
|
|
98
98
|
<script setup>
|
|
99
|
-
import { _ceil, _round, computed, useAsyncData, useNuxtApp, useUser, useWallets } from "#imports";
|
|
99
|
+
import { _ceil, _round, computed, ref, useAsyncData, useNuxtApp, useUser, useWallets } from "#imports";
|
|
100
100
|
import { getMyTransactions } from "../composables/services";
|
|
101
101
|
const { multi = true, trxQuery = {} } = defineProps({
|
|
102
102
|
multi: { type: Boolean, required: false },
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
<script setup>
|
|
30
30
|
defineProps({
|
|
31
|
-
selectedWallet: { type: null, required: true },
|
|
31
|
+
selectedWallet: { type: [Object, null], required: true },
|
|
32
32
|
noWithdraw: { type: Boolean, required: false },
|
|
33
33
|
noDeposit: { type: Boolean, required: false },
|
|
34
34
|
noTransfer: { type: Boolean, required: false }
|
package/package.json
CHANGED
/package/dist/runtime/components/{UnModal/PaymentMethod.d.vue.ts → UnModalPaymentMethod.d.vue.ts}
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/runtime/components/{UnModal/PaymentMethod.vue.d.ts → UnModalPaymentMethod.vue.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|