MantineTextField#

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

Overview#

Mantine TextInput wired into PalmyraForm. The default single-line text widget.

Props — ITextFieldDefinition & TextInputProps#

Common field props (see Forms overview) plus every TextInputProps (placeholder, variant, leftSection, rightSection, radius, description, error, …).

Ref — ITextField#

interface ITextField {
  focus(): void;
  getValue(): any;
  setValue(v: any): void;
  isValid(): boolean;
  clear(): void;
}

Example#

<MantineTextField
  attribute="loginName"
  label="Email"
  required
  validRule="email"
  placeholder="ada@example.com"
/>