aw-wizard-forms 3.0.0 → 3.1.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 +7 -1
- package/dist/wizard-form.esm.js +847 -2052
- package/dist/wizard-form.esm.js.map +1 -1
- package/dist/wizard-form.min.js +78 -1061
- package/dist/wizard-form.min.js.map +1 -1
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -17,13 +17,19 @@ A lightweight, Typeform-style multi-step form wizard built with Lit Web Componen
|
|
|
17
17
|
### CDN (Recommended)
|
|
18
18
|
|
|
19
19
|
```html
|
|
20
|
-
|
|
20
|
+
<!-- jsDelivr (recommended) -->
|
|
21
|
+
<script src="https://cdn.jsdelivr.net/npm/aw-wizard-forms@3/dist/wizard-form.min.js"></script>
|
|
22
|
+
|
|
23
|
+
<!-- Or pin to specific version -->
|
|
24
|
+
<script src="https://cdn.jsdelivr.net/npm/aw-wizard-forms@3.0.7/dist/wizard-form.min.js"></script>
|
|
21
25
|
```
|
|
22
26
|
|
|
23
27
|
### Yarn / NPM
|
|
24
28
|
|
|
25
29
|
```bash
|
|
26
30
|
yarn add aw-wizard-forms
|
|
31
|
+
# or
|
|
32
|
+
npm install aw-wizard-forms
|
|
27
33
|
```
|
|
28
34
|
|
|
29
35
|
## Quick Start
|