Wizard-JS
Wizard-JS copied to clipboard
A lightweight wizard UI component that supports accessibility and HTML5 in JavaScript Vanilla.
It don't show current_step correctly
Your events do not bubble up! ` document.querySelector(this.wz_class).dispatchEvent(new CustomEvent("wz.update", { detail: { "target": this.wz_class, "elem": document.querySelector(this.wz_class) } }));` could/should be something like... ` document.querySelector(this.wz_class).dispatchEvent(new CustomEvent("wz.update", { bubbles: true, //Enable bubbling...
**Is your feature request related to a problem? Please describe.** We have wizard pages that have required fields only if the form is edited. Eg for a "Primary Contact" the...
**Is your feature request related to a problem? Please describe.** It would be fantastic if the library could support asynchronous calls before continuing to the next step. For instance, it...