0.0.2 • Published 5 years ago
svelte-multistep-forms v0.0.2
svelte multistep form
Multi Step Form help to wrap form elements passing down styles to the component to be rendered, also it presents each form step in a ordered and stylish way.
Demo
Get started
Download into your project
git clone https://github.com/edenriquez/svelte-multistep-form
cd svelte-multistep-form
npm i
then import into your code
import { Form, Step } from "<path>/<to>/MultiStepForm";
Usage
Firs you need to set up the form steps and initial config
let multiStepOptions = {
formTitle: "New Title ✍️",
formSubtitle: "Subtitle should be here",
stepsDescription: [
{ title: "STEP 1", subtitle: "All the details to perform on this step" },
{ title: "STEP 2", subtitle: "All the details to perform on this step" }
]
};
after that you only need to call Form
and Step
componente in the following way
<Form {multiStepOptions}>
<Step>
// Here should be your form
</Step>
</Form>