From 9467311ef7309809520481643322b26557ee369c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=84=B1=EC=8B=A4?= Date: Wed, 27 Aug 2025 16:22:30 +0900 Subject: [PATCH 1/6] =?UTF-8?q?fix:=20=EC=8A=A4=ED=86=A0=EB=A6=AC=20?= =?UTF-8?q?=EC=9D=B4=EB=B2=A4=ED=8A=B8=EB=AA=85=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dataEntry/fileInput/FileInputList.stories.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stories/components/dataEntry/fileInput/FileInputList.stories.mdx b/stories/components/dataEntry/fileInput/FileInputList.stories.mdx index 29024713..71b44672 100644 --- a/stories/components/dataEntry/fileInput/FileInputList.stories.mdx +++ b/stories/components/dataEntry/fileInput/FileInputList.stories.mdx @@ -270,9 +270,9 @@ export const Default = (args, { argTypes }) => ({ :index="index" :is-loading="item.isLoading" :is-error="item.isError" - @clickFileDownloadIcon="handleClickFileDownloadIcon" - @clickFileItem="handleClickFileItem" - @clickFileItemContent="handleClickFileItem" + @download-item="handleClickFileDownloadIcon" + @click-item="handleClickFileItem" + @click-item-content="handleClickFileItem" /> From 481444d7066fa69bbae4f5083f2ae87e51ee58aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=84=B1=EC=8B=A4?= Date: Wed, 27 Aug 2025 16:22:50 +0900 Subject: [PATCH 2/6] =?UTF-8?q?refactor:=20=ED=95=84=EC=88=98=EA=B0=92?= =?UTF-8?q?=EC=9D=BC=20=EB=95=8C=20default=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/fileInput/FileInputFileItem.vue | 1 - src/components/fileInput/FileInputLinkItem.vue | 1 - 2 files changed, 2 deletions(-) diff --git a/src/components/fileInput/FileInputFileItem.vue b/src/components/fileInput/FileInputFileItem.vue index 41dbf946..6298e8b7 100644 --- a/src/components/fileInput/FileInputFileItem.vue +++ b/src/components/fileInput/FileInputFileItem.vue @@ -55,7 +55,6 @@ export default { */ index: { type: Number, - default: -1, required: true, }, /** diff --git a/src/components/fileInput/FileInputLinkItem.vue b/src/components/fileInput/FileInputLinkItem.vue index f46a63de..f5694ced 100644 --- a/src/components/fileInput/FileInputLinkItem.vue +++ b/src/components/fileInput/FileInputLinkItem.vue @@ -34,7 +34,6 @@ export default { }, index: { type: Number, - default: -1, required: true, }, isRemovable: { From 2580ca42e3f35c6674e1e7e20127577ac4c2273d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=84=B1=EC=8B=A4?= Date: Fri, 29 Aug 2025 15:58:08 +0900 Subject: [PATCH 3/6] =?UTF-8?q?feat:=20=EC=8A=A4=ED=86=A0=EB=A6=AC=20?= =?UTF-8?q?=EC=98=88=EC=8B=9C=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fileInput/FileInputList.stories.mdx | 86 ++++++++----------- 1 file changed, 38 insertions(+), 48 deletions(-) diff --git a/stories/components/dataEntry/fileInput/FileInputList.stories.mdx b/stories/components/dataEntry/fileInput/FileInputList.stories.mdx index 71b44672..6c9f0a75 100644 --- a/stories/components/dataEntry/fileInput/FileInputList.stories.mdx +++ b/stories/components/dataEntry/fileInput/FileInputList.stories.mdx @@ -123,11 +123,6 @@ export const Default = (args, { argTypes }) => ({ isLoading: false, isError: false, }, - { - file: { name: '3.png' }, - isLoading: false, - isError: false, - }, ], links: [ { @@ -159,38 +154,33 @@ export const Default = (args, { argTypes }) => ({ }, }, template: `
-
- 링크 ({{ links.length }}개) - - - -
-
- 첨부파일 ({{ files.length }}개) - - - -
+ + + + + + +
`, - components: { FileInputList, FileSummary, FileInputButton, FileInputFileItem, FileInputLinkItem }, + components: { FileInputList, FileInputButton, FileInputFileItem, FileInputLinkItem }, }} @@ -249,18 +239,7 @@ export const Default = (args, { argTypes }) => ({ }, }, template: `
-
- 링크 ({{ links.length }}개) - - - -
-
+
첨부파일 ({{ files.length }}개) ({ />
+
+ 링크 ({{ links.length }}개) + + + +
`, components: { FileInputList, FileSummary, FileInputButton, FileInputFileItem, FileInputLinkItem }, }} From a328c4f8b99002d1a76da7a45f1b0983b8a45325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=84=B1=EC=8B=A4?= Date: Fri, 5 Sep 2025 16:10:04 +0900 Subject: [PATCH 4/6] =?UTF-8?q?fix:=20Chip=20=EC=9E=90=EB=8F=99=EC=99=84?= =?UTF-8?q?=EC=84=B1=20=EC=BB=AC=EB=9F=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/chips/Chip.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/chips/Chip.vue b/src/components/chips/Chip.vue index 1ff72513..3f0ac561 100644 --- a/src/components/chips/Chip.vue +++ b/src/components/chips/Chip.vue @@ -57,7 +57,7 @@ export default { }, }, /** - * 색상(info, primary, success) + * 색상(info, primary, success, accent, secondary) */ color: { type: String, From 34f07d449e071062dbb0911069e84dce528ffd0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=84=B1=EC=8B=A4?= Date: Fri, 5 Sep 2025 16:10:22 +0900 Subject: [PATCH 5/6] =?UTF-8?q?fix:=20Toast=20=EC=B5=9C=EC=86=8C=20?= =?UTF-8?q?=EB=86=92=EC=9D=B4=2052px=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/toast/Toast.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/toast/Toast.vue b/src/components/toast/Toast.vue index 84d8839b..03fca663 100644 --- a/src/components/toast/Toast.vue +++ b/src/components/toast/Toast.vue @@ -127,6 +127,7 @@ export default { color: $white; @include transform(translate(-50%)); padding: 14px 16px; + min-height: 52px; text-align: center; z-index: 9999; @include border-radius(8px); From 2b6a4b899bb082d740a6ea220d4e046489cc0d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=84=B1=EC=8B=A4?= Date: Tue, 9 Sep 2025 18:15:51 +0900 Subject: [PATCH 6/6] =?UTF-8?q?feat:=20EmptyBox=20=EC=9D=BC=EB=9F=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=ED=83=80=EC=9E=85=20=EC=8A=A4=ED=86=A0?= =?UTF-8?q?=EB=A6=AC=20=EC=98=88=EC=8B=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/emptyBox/EmptyIllust.vue | 12 +++++++++++- .../dataDisplay/EmptyBox.stories.mdx | 19 ++++++++++++------- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/src/components/emptyBox/EmptyIllust.vue b/src/components/emptyBox/EmptyIllust.vue index 56309bd1..0869d240 100644 --- a/src/components/emptyBox/EmptyIllust.vue +++ b/src/components/emptyBox/EmptyIllust.vue @@ -3,7 +3,17 @@