Skip to main content

Integer


Integer fields collect numeric input such as verification codes, IDs, or counters. This element enforces digit-only input, supports validation, placeholder labels, and optional min/max rules.

Properties

PropertyValueDescription
TypeIntegerUI component type
GroupFieldBelongs to the "Field" group in UI catalog
Identifier27Unique element ID
PreviewSee image preview above
ValueYAccepts user-entered numbers
MandatoryYRequires input before form submission
ErrorYDisplays validation error messages
MinYSupports minimum value constraints
MaxYSupports maximum value constraints
Read-onlyYCan display locked numeric fields
Text, IconYIncludes label or inline icon
EventYTriggers change or validation events
ShadeYUses shaded input background style
ListNot a list container
ChildrenNo nested elements

Usage Example

<Input type="number" label="Verification code" minLength={6} maxLength={6} required />

SDK Integration

The MFA Verification screen uses this element. It links to the SDK method:

Method: /account/authentication

Enables multi-factor authentication. Users enter a 6-digit code from their authenticator app to complete setup.


Example UI Placement

LevelIDTypeValueDescription
1mfaIntegerVerification codeInput for the MFA 6-digit code

Notes

  • Enforces numeric-only input format.
  • Typically used for verification, PINs, or counters.
  • Input length and range must match expected policy (e.g., 6-digit code).