📄️ Dependent Field
This example demonstrates how to manage dependent fields using FormRenderer and FormFields from the @mobiux-labs/form-core package. The form dynamically updates the fullname field based on changes to the firstname and last_name fields.
📄️ Validation
To implement validation rules in your form using the @mobiux-labs/form-core package, simply add these rules to the rules parameter of each FieldDefinition. The validation rules are integrated with react-hook-form and support various constraints, including:
📄️ Visibility
This documentation explains how to manage the visibility of form fields using the @mobiux-labs/form-core package. The visibility property in the FieldDefinition type allows you to control whether a field is displayed or hidden.
📄️ Disabled
This documentation explains how to manage the disabled state of form fields using the @mobiux-labs/form-core package. The disabled property in the FieldDefinition type allows you to control whether a field is editable.
📄️ Custom Field
Key Considerations