Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit e19a0ac

Browse files
author
Mike England
committed
Update props descriptions across components
1 parent 3572ae4 commit e19a0ac

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

components/atoms/Inputs/Checkbox/Checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {Field} from 'formik'
44
/**
55
* Render Checkbox component.
66
*
7-
* @param {object} props Input props.
7+
* @param {object} props The component attributes as props.
88
* @param {string} props.className Input className.
99
* @param {string|number} props.id Input id.
1010
* @param {string} props.label Input label.

components/atoms/Inputs/CheckboxGroup/CheckboxGroup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Checkbox from '@/components/atoms/Inputs/Checkbox'
55
/**
66
* Render CheckboxGroup component.
77
*
8-
* @param {object} props CheckboxGroup props.
8+
* @param {object} props The component attributes as props.
99
* @param {Array} props.checkboxes Array of checkbox data objects.
1010
* @param {string} props.className CheckboxGroup wrapper className.
1111
* @param {string|number} props.id CheckboxGroup id.

components/atoms/Inputs/Text/Text.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {Field, ErrorMessage} from 'formik'
55
* Render the Text component.
66
*
77
* @author WebDevStudios
8-
* @param {object} props props.
8+
* @param {object} props The component attributes as props.
99
* @param {string} props.className Text wrapper className.
1010
* @param {string} props.description Text description.
1111
* @param {string} props.id Text input id.

components/molecules/Form/Form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import cn from 'classnames'
77
/**
88
* Render Form component.
99
*
10-
* @param {object} props Form props.
10+
* @param {object} props The component attributes as props.
1111
* @param {Element} props.children Form children elements.
1212
* @param {string} props.className Form wrapper class.
1313
* @param {object} props.formDefaults Formik default data.

components/molecules/GravityForm/Fields/Checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as Input from '@/components/atoms/Inputs'
66
/**
77
* Render GravityForms Checkbox field component.
88
*
9-
* @param {object} props GravityForm Checkbox field props.
9+
* @param {object} props GravityForm Checkbox field as props.
1010
* @param {string} props.className GravityForm field wrapper class.
1111
* @param {string} props.description GravityForm field description.
1212
* @param {Array} props.inputs Array of checkbox field input data.

components/molecules/GravityForm/Fields/Select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import cn from 'classnames'
66
/**
77
* Render GravityForms Checkbox field component.
88
*
9-
* @param {object} props GravityForm Checkbox field props.
9+
* @param {object} props GravityForm Checkbox field as props.
1010
* @param {string} props.className GravityForm field wrapper class.
1111
* @param {string} props.description GravityForm field description.
1212
* @param {string|number} props.id GravityForm field id.

0 commit comments

Comments
 (0)