Skip to content

NumberInput

Native number input.

Import from hedron import NumberInput
Distribution hedron
Backend activity No
Normal render mode RenderMode.FRAGMENT

Live demo

The preview is a local docs simulation (not a running Hedron server). Interactive demos show a “Simulated HTMX” trace when applicable.

Basic use

from hedron import NumberInput

component = NumberInput('qty', value=1)

Compose under Page for full documents, or return from a fragment route for HTMX swaps.

How it works

Phase 0.15 surface. Prefer native HTML semantics and ordinary HTTP actions.

This component's core behavior is server-rendered HTML and does not require a browser runtime. The preview is ordinary semantic HTML, so keyboard, form, link, and disclosure behavior comes from the platform.

Constructor and parameters

NumberInput(name: 'str', *, id: 'str | None' = None, value: 'float | int | str | None' = None, min: 'float | int | str | None' = None, max: 'float | int | str | None' = None, step: 'float | int | str | None' = None, placeholder: 'str | None' = None, required: 'bool' = False, disabled: 'bool' = False, mark: 'str | None' = None, aria_describedby: 'str | None' = None, aria_invalid: 'str | None' = None, aria_required: 'str | None' = None, **kwargs: 'object') -> 'None'
Parameter Type Meaning
name str Form control name submitted with the request.
id str | None Optional DOM id. Default: None.
value float | int | str | None Current control value. Default: None.
min float | int | str | None Minimum allowed value. Default: None.
max float | int | str | None Maximum allowed value. Default: None.
step float | int | str | None Stepping interval for numeric / temporal inputs. Default: None.
placeholder str | None Hint text shown when the control is empty. Default: None.
required bool Whether the control must be filled before submit. Default: False.
disabled bool Whether the control is non-interactive. Default: False.
mark str | None Optional stable test mark (data-hedron-mark). Default: None.
aria_describedby str | None Optional aria-describedby id reference. Default: None.
aria_invalid str | None Optional aria-invalid value. Default: None.
aria_required str | None Optional aria-required value. Default: None.

Composition and backend behavior

Keep NumberInput at the smallest semantic boundary. Fragment routes should return only the replaced region and preserve stable target IDs across success, validation, empty, loading, and error responses.

This component is primarily presentational; keep any mutation on an explicit action or component route.

Accessibility

Keyboard and screen-reader operable; no-JS fallback required where interactive.

Security

Escaping and SafeUrl / TrustedHtml are framework concerns; authorization and data exposure remain application code. Redact secrets before rendering.

Common mistakes

  • Do not treat client-only hints (geolocation, browser storage) as authorization.
  • Do not copy docs-preview JavaScript into an application server.

Testing

from hedron import RenderMode, render

result = render(component, mode=RenderMode.FRAGMENT)
assert result.html
assert not result.diagnostics

All component demos · Built-in API · Testing