@unsource/ui 2.8.24 → 2.8.25
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
CHANGED
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
<UnSelect
|
|
27
27
|
v-if="tab === 'wallet' && multi"
|
|
28
28
|
v-model="selectedWallet"
|
|
29
|
-
:class="
|
|
30
|
-
:custom-class="_merge(customClass.transactionSelectItem, { innerWrapper: '<md:(!max-h-unset bg-white !pb-0 !border-(1 solid transparent)' })"
|
|
29
|
+
:custom-class="{ innerWrapper: '<md:(!max-h-unset bg-white !pb-0 !border-(1 solid transparent)' }"
|
|
31
30
|
inline
|
|
32
31
|
light
|
|
33
32
|
:items="mappedWallet"
|
|
@@ -39,7 +38,8 @@
|
|
|
39
38
|
v-model="filterWallet"
|
|
40
39
|
light
|
|
41
40
|
placeholder="همه تراکنش ها"
|
|
42
|
-
:
|
|
41
|
+
:class="customClass.transactionSelect"
|
|
42
|
+
:custom-class="_mergeWith(customClass.transactionSelectItem, { header: '!h-unset !px-2', radio: '!p-1 !px-3', radioItem: { card: 'grow-1', item: { body: '!p-1' } } }, merge)"
|
|
43
43
|
:items="[{ title: '\u0647\u0645\u0647 \u062A\u0631\u0627\u06A9\u0646\u0634 \u0647\u0627', id: null }, ...mappedWallet]"
|
|
44
44
|
value-key="id"
|
|
45
45
|
/>
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
</template>
|
|
99
99
|
|
|
100
100
|
<script setup>
|
|
101
|
-
import { _ceil,
|
|
101
|
+
import { _ceil, _mergeWith, _round, computed, merge, ref, useAsyncData, useNuxtApp, useUser, useWallets } from "#imports";
|
|
102
102
|
import { getMyTransactions } from "../composables/services";
|
|
103
103
|
const { multi = true, trxQuery = {}, customClass = {} } = defineProps({
|
|
104
104
|
multi: { type: Boolean, required: false },
|