Wizard-JS icon indicating copy to clipboard operation
Wizard-JS copied to clipboard

A lightweight wizard UI component that supports accessibility and HTML5 in JavaScript Vanilla.

Results 4 Wizard-JS issues
Sort by recently updated
recently updated
newest added

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...

enhancement

**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...

enhancement

**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...

enhancement