From 41a96c4d8f33a0fc168a348c8be31df49450f025 Mon Sep 17 00:00:00 2001 From: jikwan Date: Thu, 31 Aug 2023 13:25:19 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20input=20disabled=20=EB=B2=84=EA=B7=B8=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 --- package.json | 2 +- src/components/input/Input.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3ccdc29..3707656 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@team-return/design-system", - "version": "1.1.0", + "version": "1.1.2", "repository": { "type": "git", "url": "https://github.com/Team-Return/JOBIS-DESIGN-SYSTEM.git" diff --git a/src/components/input/Input.tsx b/src/components/input/Input.tsx index b38d98d..f7c72db 100644 --- a/src/components/input/Input.tsx +++ b/src/components/input/Input.tsx @@ -24,7 +24,6 @@ export interface InputProps } export const Input = ({ - onChange, label, width = 30, kind = 'DefaultInput', @@ -48,6 +47,7 @@ export const Input = ({ <_BaseInput {...props} onKeyDown={onKeyDown} + disabled={disabled} kind={kind} error={error} />