From cb57869a9479ba909e0489066577e0a2082d33db Mon Sep 17 00:00:00 2001 From: Dan Remollino Date: Sat, 12 Apr 2025 11:42:41 -0400 Subject: [PATCH] uppdate README.md dependent field information --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3fe987b..860437d 100644 --- a/README.md +++ b/README.md @@ -413,7 +413,7 @@ or [`input`](https://developer.mozilla.org/en-US/docs/Web/API/Element/input_even ## Field Options -* [dependant](#dependant) +* [dependent](#dependent) * [maxCount](#maxcount) * [minCount](#mincount) * [optional](#optional) @@ -436,24 +436,24 @@ properly formatted JSON object with the properties and values below. ``` -### dependant +### dependent **Default:** `null` -Setting the `dependant` value of one field to another field's `name` attribute -value will disable the field when its dependant does not contain a value. +Setting the `dependent` value of one field to another field's `name` attribute +value will disable the field when its dependent does not contain a value. ```html
- - -
This field dynamically enables/disables the 'Dependant Child' field if it has a value.
+ + +
This field dynamically enables/disables the 'Dependent Child' field if it has a value.
- - -
This field dynamically enables/disables if the 'Dependant Parent' field has a value.
+ + +
This field dynamically enables/disables if the 'Dependent Parent' field has a value.
```