diff --git a/docs/react-front-kit/form/AddressGouvAutocompleteField.mdx b/docs/haring-react/form/AddressGouvAutocompleteField.mdx similarity index 100% rename from docs/react-front-kit/form/AddressGouvAutocompleteField.mdx rename to docs/haring-react/form/AddressGouvAutocompleteField.mdx diff --git a/docs/react-front-kit/form/FetchAutocompleteField.mdx b/docs/haring-react/form/FetchAutocompleteField.mdx similarity index 100% rename from docs/react-front-kit/form/FetchAutocompleteField.mdx rename to docs/haring-react/form/FetchAutocompleteField.mdx diff --git a/docs/haring-react/form/full-name-fields.mdx b/docs/haring-react/form/full-name-fields.mdx index 757eab6..ba087eb 100644 --- a/docs/haring-react/form/full-name-fields.mdx +++ b/docs/haring-react/form/full-name-fields.mdx @@ -26,7 +26,7 @@ ## Storybook Docs - + ## Props diff --git a/docs/react-front-kit/form/full-name-fields.mdx b/docs/react-front-kit/form/full-name-fields.mdx deleted file mode 100644 index ba087eb..0000000 --- a/docs/react-front-kit/form/full-name-fields.mdx +++ /dev/null @@ -1,46 +0,0 @@ -# Full Name Fields - - - Displaying a grouped input with first name and last name, usable in a - controlled manner. - - -## Storybook Docs - - - -## Props - -| Name | Type | Default | Description | -| -------------- | ---------------------------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------- | -| firstNameProps | [`TextInputProps`](https://mantine.dev/core/text-input/?t=props) | - | extends [`text input props`](https://mantine.dev/core/text-input/) If configured, the changes will apply to the firstName input | -| lastNameProps | [`TextInputProps`](https://mantine.dev/core/text-input/?t=props) | - | extends [`text input props`](https://mantine.dev/core/text-input/) If configured, the changes will apply to the lastName input | -| onChange | `((value: IFullNameFieldsValues) => void)` | - | Callback function returning the value of the input that has just been changed | -| value | `IFullNameFieldsValues` | - | Allows setting the values of the two text input fields | -| ... | - | - | extends [`flex props`](https://mantine.dev/core/flex/?t=props) | - -## IFullNameFieldsValues - -| Name | Type | Default | Description | -| --------- | -------- | ------- | ------------------------- | -| firstName | `string` | - | Value of first name field | -| lastName | `string` | - | Value of last name field |