InputNumber Engine Primitive
v1.0.0A number input with increment and decrement buttons.
Interactive Implementation
Click and hold the buttons to change the value.
RAW_NUMERIC_OUT: 1.5
Properties API
All available props for this component.
Property | Type | Default | Description |
|---|---|---|---|
| value | number | undefined | The active numeric value hook bound to input operations. |
| onChange | (value: number | undefined) => void | undefined | State callback function tracking valid key selections and step changes. |
| min | number | -Infinity | The minimum numeric threshold past which decrements are frozen. |
| max | number | Infinity | The maximum numeric threshold past which increments are frozen. |
| step | number | 1 | The incremental value multiplier added or deducted during steps operations. |
| disabled | boolean | false | Freezes calculation interactions and drops container layout transparencies. |