feat: Add new UI components for number input, time input, and calculator mode selection.
All checks were successful
Deploy to Private Server / deploy (push) Successful in 23s

This commit is contained in:
2025-12-29 15:23:54 +07:00
parent 5a277ccc6b
commit f3382717f3
3 changed files with 53 additions and 23 deletions

View File

@@ -20,7 +20,7 @@ export default function TimeInput({ label, hours, minutes, seconds, onChange })
onChange={(value) => handleChange('hours', value)}
min={0}
placeholder="0"
addonAfter="h"
suffix={<span style={{ color: '#999' }}>h</span>}
size="large"
style={{ width: '33.33%' }}
controls={false}
@@ -31,7 +31,7 @@ export default function TimeInput({ label, hours, minutes, seconds, onChange })
min={0}
max={59}
placeholder="0"
addonAfter="m"
suffix={<span style={{ color: '#999' }}>m</span>}
size="large"
style={{ width: '33.33%' }}
controls={false}
@@ -42,7 +42,7 @@ export default function TimeInput({ label, hours, minutes, seconds, onChange })
min={0}
max={59}
placeholder="0"
addonAfter="s"
suffix={<span style={{ color: '#999' }}>s</span>}
size="large"
style={{ width: '33.34%' }}
controls={false}