From 532b9b685544e9c79a426634620e729d44dbb34b Mon Sep 17 00:00:00 2001 From: clkim Date: Tue, 10 Mar 2026 15:41:20 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20[SWV-866]=20=EC=95=A1=EC=85=98=EB=B2=84?= =?UTF-8?q?=ED=8A=BC=20=EA=B8=B0=EB=8A=A5=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/components/atoms/Button/Image.vue | 18 +++++++++++++++--- layers/components/widgets/ButtonList.vue | 5 +++-- layers/types/api/pageData.ts | 2 +- layers/types/components/button.ts | 2 -- 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/layers/components/atoms/Button/Image.vue b/layers/components/atoms/Button/Image.vue index 83b9c9a..da8ea46 100644 --- a/layers/components/atoms/Button/Image.vue +++ b/layers/components/atoms/Button/Image.vue @@ -1,8 +1,8 @@ @@ -201,8 +201,9 @@ const handleButtonClick = (button: PageDataResourceGroup) => { - res_path?: string + res_path?: { path: string } disabled?: boolean use_game_font: 0 | 1 // 0: 사용하지 않음, 1: 사용함 } diff --git a/layers/types/components/button.ts b/layers/types/components/button.ts index caffea6..1523186 100644 --- a/layers/types/components/button.ts +++ b/layers/types/components/button.ts @@ -1,7 +1,5 @@ export type ButtonType = 'internal' | 'external' | 'download' | 'action' -export type ImageButtonType = 'internal' | 'external' | 'action' - export type LauncherButtonType = 'default' | 'duplication' | 'single' export type ButtonSize = 'large' | 'medium' | 'small' | 'extra-small'