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
All checks were successful
Deploy to Private Server / deploy (push) Successful in 23s
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user