feat: Implement wall asset management features including creation, instances, and rendering; enhance wall properties input validation
This commit is contained in:
@@ -133,11 +133,17 @@ const SelectedWallProperties = () => {
|
||||
<InputWithDropDown
|
||||
label="Height"
|
||||
value={height}
|
||||
min={1}
|
||||
max={25}
|
||||
step={1}
|
||||
onChange={handleHeightChange}
|
||||
/>
|
||||
<InputWithDropDown
|
||||
label="Thickness"
|
||||
value={thickness}
|
||||
min={0.1}
|
||||
max={2}
|
||||
step={0.1}
|
||||
onChange={handleThicknessChange}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -63,11 +63,17 @@ const WallProperties = () => {
|
||||
<InputWithDropDown
|
||||
label="Height"
|
||||
value={`${wallHeight}`}
|
||||
min={1}
|
||||
max={25}
|
||||
step={1}
|
||||
onChange={(val) => handleHeightChange(val)}
|
||||
/>
|
||||
<InputWithDropDown
|
||||
label="Thickness"
|
||||
value={`${wallThickness}`}
|
||||
min={0.1}
|
||||
max={2}
|
||||
step={0.1}
|
||||
onChange={(val) => handleThicknessChange(val)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user