MantineNumberField#

@palmyralabs/rt-forms-mantine · form/MantineNumberField.tsx

Overview#

Numeric input — Mantine NumberInput.

Props — ITextFieldDefinition & NumberInputProps#

Common field props plus Mantine NumberInputProps (min, max, step, decimalScale, thousandSeparator, prefix, suffix, …).

Ref — ITextField#

Same as MantineTextField.

Example#

<MantineNumberField
  attribute="rating"
  label="Rating"
  min={0} max={5} step={1}
  defaultValue={0}
/>