Type Alias: RIntegerFieldProps
ts
type RIntegerFieldProps = ExtractPublicPropTypes<
ReturnType<typeof makeRIntegerFieldProps>
>;Public props interface for RIntegerField components.
Provides type-safe access to all available props with integer-specific constraints. Based on RNumberField props but excludes precision and step for cleaner integer API.
Key Props:
modelValue: The current integer value(s) - number | number[] | null | undefinedmultiple: Enable array input mode with chipsformat: Numeral.js format string (e.g., "0,0", "#,##0")min/max: Integer range validationcontrolVariant: Control button layout stylerenderMode: Display mode ("edit" | "read")
Automatic Constraints:
precision: Always 0 (no decimals)step: Always 1 (whole number increments)
Example
typescript
const props: RIntegerFieldProps = {
modelValue: 42,
format: "0,0",
min: 1,
max: 999999,
controlVariant: "split",
};