From 86852cc4cdf70397e24b15e14eb95360d2b65175 Mon Sep 17 00:00:00 2001 From: ysCha Date: Thu, 18 Dec 2025 14:32:16 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B0=A9=ED=96=A5=EB=AA=A8=EB=93=88=EC=84=A4?= =?UTF-8?q?=EC=A0=95:=20=EA=B3=84=EC=82=B0=EA=B8=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modal/basic/step/Orientation.jsx | 39 +++++++++++++++---- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/src/components/floor-plan/modal/basic/step/Orientation.jsx b/src/components/floor-plan/modal/basic/step/Orientation.jsx index 6359163f..7a1fb6b1 100644 --- a/src/components/floor-plan/modal/basic/step/Orientation.jsx +++ b/src/components/floor-plan/modal/basic/step/Orientation.jsx @@ -10,6 +10,7 @@ import { useModuleBasicSetting } from '@/hooks/module/useModuleBasicSetting' import { useCommonCode } from '@/hooks/common/useCommonCode' import Swal from 'sweetalert2' import { normalizeDecimal} from '@/util/input-utils' +import { CalculatorInput } from '@/components/common/input/CalcInput' export const Orientation = forwardRef((props, ref) => { const { getMessage } = useMessage() @@ -561,11 +562,23 @@ export const Orientation = forwardRef((props, ref) => {
{getMessage('modal.module.basic.setting.module.fitting.height')}
- handleChangeInstallHeight(normalizeDecimal(e.target.value))}*/} + {/*/>*/} + handleChangeInstallHeight(normalizeDecimal(e.target.value))} + onChange={(value) => handleChangeInstallHeight(value)} + options={{ + allowNegative: false, + allowDecimal: false + }} />
m @@ -589,11 +602,23 @@ export const Orientation = forwardRef((props, ref) => {
{getMessage('modal.module.basic.setting.module.standard.snowfall.amount')}
- handleChangeVerticalSnowCover(normalizeDecimal(e.target.value))}*/} + {/*/>*/} + handleChangeVerticalSnowCover(normalizeDecimal(e.target.value))} + value={inputInstallHeight} + onChange={(value) => handleChangeVerticalSnowCover(value)} + options={{ + allowNegative: false, + allowDecimal: false + }} />
cm