Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@comparaonline/ui-wizard-form
Advanced tools
This is the Form component that contains every input. It uses the [react-final-form](https://github.com/final-form/react-final-form)(RFF) `Form` component to handle value's state.
This is the Form component that contains every input. It uses the react-final-form(RFF) Form
component to handle value's state.
yarn add @comparaonline/ui-wizard-form
This component receives some mandatory props in order to initialize the react-final-form(RFF) Form component
formProps
: These props are passed directly to the RFF's Form component, so if you need to pass something directly to the component, this is the way.
next
, previous
, isLastStep
, isFirstStep
: These functions allows to the component to correctly render navigation buttons and loading messages.
currentStep
: the step to render.
stepId
: A possible value to try to move that step, intended to be used in conjunction with router
.
router
: a method that can be used to modify the routes, if passed must implement the required interface
import { WizardForm } from '@comparaonline/ui-wizard-form';
<WizardForm
formProps={{ onSubmit }}
currentStep={{ id: '1' }}
next={navigationFunction}
previous={navigationFunction}
isLastStep={booleanFunction}
isFirstStep={booleanFunction}
isLoading={false}
stepId="2"
router={
push: (stepId: string) => void,
replace: (stepId: string) => void
}
/>
Use them as containers of different WizardForm
content.
import { WizardFormLayout } from '@comparaonline/ui-wizard-form';
<WizardFormLayout.Actions>
<Button>Continue</Button>
<Button>Skip</Button>
</WizardFormLayout.Actions>;
FAQs
This is the Form component that contains every input. It uses the [react-final-form](https://github.com/final-form/react-final-form)(RFF) `Form` component to handle value's state.
We found that @comparaonline/ui-wizard-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.