adata-ui 2.1.20 → 2.1.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/components/features/payment/process/PaymentKaspiQrSidePanel.vue +5 -1
- package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +1 -0
- package/components/features/payment/process/PaymentMethodSidePanel.vue +1 -0
- package/components/features/payment/process/PaymentTopUpSidePanel.vue +5 -1
- package/package.json +1 -1
|
@@ -114,7 +114,11 @@ watch(isOpen, async (value) => {
|
|
|
114
114
|
</script>
|
|
115
115
|
|
|
116
116
|
<template>
|
|
117
|
-
<a-side-panel
|
|
117
|
+
<a-side-panel
|
|
118
|
+
v-model="isOpen"
|
|
119
|
+
width="484px"
|
|
120
|
+
:z-index="10001"
|
|
121
|
+
>
|
|
118
122
|
<template #header>
|
|
119
123
|
<div class="flex items-center gap-2">
|
|
120
124
|
<button @click="onBack">
|
|
@@ -60,7 +60,11 @@ function handlePayment() {
|
|
|
60
60
|
</script>
|
|
61
61
|
|
|
62
62
|
<template>
|
|
63
|
-
<a-side-panel
|
|
63
|
+
<a-side-panel
|
|
64
|
+
v-model="isOpen"
|
|
65
|
+
width="484px"
|
|
66
|
+
:z-index="10001"
|
|
67
|
+
>
|
|
64
68
|
<template #header>
|
|
65
69
|
<div class="text-xl font-semibold">
|
|
66
70
|
{{ t('payment.topUp.title') }}
|