From 2045fac32c560f646e0ac2d60211368e1c71bf3a Mon Sep 17 00:00:00 2001 From: Benjamin Newman Date: Wed, 10 Jan 2024 11:08:39 -0800 Subject: [PATCH] docs(select): update provider select docs --- .../form/select/components/provider-select.md | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 docusaurus/docs/form/select/components/provider-select.md diff --git a/docusaurus/docs/form/select/components/provider-select.md b/docusaurus/docs/form/select/components/provider-select.md new file mode 100644 index 000000000..175177707 --- /dev/null +++ b/docusaurus/docs/form/select/components/provider-select.md @@ -0,0 +1,53 @@ +--- +title: +--- + +A select list that automatically loads and pages through providers when the user scrolls down. + +### Example + +```jsx +import React from 'react'; +import { Form } from '@availity/form'; +import { AvProviderSelect } from '@availity/select'; +import { Button } from 'reactstrap'; +import * as yup from 'yup'; +import '@availity/yup'; + +const Example = () => ( +
apiResource.submit(values)} + validationSchema={yup.object().shape({ + providers: yup.string().isRequired('This field is required.'), + })} + > + + + +); +``` + +#### Live example: [Storybook](https://availity.github.io/availity-react/storybook/?path=/story/formik-select-resources--avProviderselect) + +### Props + +Extends [ResourceSelect Props](/form/select/components/resource-select/#props). + +#### `searchAll?: boolean` + +The `providers` API from `sdk-js` accepts a role parameter. By default, most applications will only want to return providers who are assigned to the office of the provider's organization, as opposed to the many third-party providers and organizations that they may do business with from time to time as billing or referring providers. If searchAll is true, we will remove this default behavior and return the full list of first and third-party affiliated providers. + +#### `parameters: Record` + +This will either be passed directly to the underlying resourceSelect or modified as described above in the searchAll section.