Type Alias: RStringFieldProps
ts
type RStringFieldProps = ExtractPublicPropTypes<
ReturnType<typeof makeRStringFieldProps>
>;Public props interface for the RStringField component. Includes all VTextField props plus string field-specific options for format handling, auto-linking, icon customization, and unified field architecture features.
Example
typescript
// Component props typing
interface MyComponentProps {
stringFieldProps: RStringFieldProps;
}
// Programmatic prop construction
const fieldProps: RStringFieldProps = {
format: "email",
autolink: true,
multiple: false,
label: "Email Address",
// ... other VTextField props
};