From 45acef9b20e572e4a2a83d9f966c8d02f5fb27cc Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Wed, 28 Jan 2026 05:04:20 +0700 Subject: [PATCH] feat(catalog): KYC bottom sheet instead of separate page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add KycBottomSheet component with glass effect (70vh height) - Animate sheet sliding up from bottom when opening KYC - InfoPanel hides when KYC sheet is open - Click outside or X button to close - Contains all company info: реквизиты, руководство, учредители, контакты, финансы, арбитраж, ОКВЭД --- app/components/catalog/KycBottomSheet.vue | 304 ++++++++++++++++++++++ app/pages/catalog/index.vue | 153 ++++++----- 2 files changed, 389 insertions(+), 68 deletions(-) create mode 100644 app/components/catalog/KycBottomSheet.vue diff --git a/app/components/catalog/KycBottomSheet.vue b/app/components/catalog/KycBottomSheet.vue new file mode 100644 index 0000000..afd46eb --- /dev/null +++ b/app/components/catalog/KycBottomSheet.vue @@ -0,0 +1,304 @@ + + + + + diff --git a/app/pages/catalog/index.vue b/app/pages/catalog/index.vue index f9ff3bb..e87e434 100644 --- a/app/pages/catalog/index.vue +++ b/app/pages/catalog/index.vue @@ -1,72 +1,81 @@