aw-wizard-forms 4.0.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/dist/wizard-form.esm.js +279 -198
- package/dist/wizard-form.esm.js.map +1 -1
- package/dist/wizard-form.min.js +270 -221
- package/dist/wizard-form.min.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -190,6 +190,29 @@ Modern browsers (ES2020+):
|
|
|
190
190
|
- Safari 14+
|
|
191
191
|
- Edge 80+
|
|
192
192
|
|
|
193
|
+
## Known Issues
|
|
194
|
+
|
|
195
|
+
### Step disappears intermittently with `submit-on-step` enabled
|
|
196
|
+
|
|
197
|
+
**Status:** Under investigation
|
|
198
|
+
|
|
199
|
+
When using the `submit-on-step` attribute for partial HubSpot submissions, the next step may occasionally disappear (blank content area while progress bar updates correctly). This is a rare, intermittent issue.
|
|
200
|
+
|
|
201
|
+
**Workaround:** If you encounter this, refresh the page. The issue does not affect final form submission.
|
|
202
|
+
|
|
203
|
+
**Debug:** Run this in console when it occurs to help diagnose:
|
|
204
|
+
```javascript
|
|
205
|
+
document.querySelectorAll('wf-step').forEach((step, i) => {
|
|
206
|
+
console.log(`Step ${i + 1}:`, {
|
|
207
|
+
active: step.hasAttribute('active'),
|
|
208
|
+
display: getComputedStyle(step).display,
|
|
209
|
+
height: step.offsetHeight
|
|
210
|
+
});
|
|
211
|
+
});
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Track progress: [GitHub Issue #31](https://github.com/atomicworkhq/aw-wizard-forms/issues/31)
|
|
215
|
+
|
|
193
216
|
## License
|
|
194
217
|
|
|
195
218
|
MIT © [Atomicwork](https://atomicwork.com)
|