@sio-group/form-react 0.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/CHANGELOG.md +97 -0
- package/README.md +783 -0
- package/ROADMAP.md +21 -0
- package/dist/index.cjs +1919 -0
- package/dist/index.d.cts +284 -0
- package/dist/index.d.ts +284 -0
- package/dist/index.js +1878 -0
- package/dist/styles/components/button.css +244 -0
- package/dist/styles/components/button.css.map +1 -0
- package/dist/styles/components/checkbox.css +90 -0
- package/dist/styles/components/checkbox.css.map +1 -0
- package/dist/styles/components/color.css +31 -0
- package/dist/styles/components/color.css.map +1 -0
- package/dist/styles/components/form-field.css +36 -0
- package/dist/styles/components/form-field.css.map +1 -0
- package/dist/styles/components/form-states.css +80 -0
- package/dist/styles/components/form-states.css.map +1 -0
- package/dist/styles/components/grid.css +818 -0
- package/dist/styles/components/grid.css.map +1 -0
- package/dist/styles/components/input.css +112 -0
- package/dist/styles/components/input.css.map +1 -0
- package/dist/styles/components/link.css +113 -0
- package/dist/styles/components/link.css.map +1 -0
- package/dist/styles/components/radio.css +104 -0
- package/dist/styles/components/radio.css.map +1 -0
- package/dist/styles/components/range.css +54 -0
- package/dist/styles/components/range.css.map +1 -0
- package/dist/styles/components/select.css +37 -0
- package/dist/styles/components/select.css.map +1 -0
- package/dist/styles/components/upload.css +54 -0
- package/dist/styles/components/upload.css.map +1 -0
- package/dist/styles/index.css +1733 -0
- package/dist/styles/index.css.map +1 -0
- package/package.json +42 -0
- package/screenshots/contact-form.png +0 -0
- package/screenshots/file-input.png +0 -0
- package/screenshots/invalid-username.png +0 -0
- package/screenshots/number-field.png +0 -0
- package/screenshots/radio-field.png +0 -0
- package/screenshots/range-field.png +0 -0
- package/screenshots/registration-form.png +0 -0
- package/screenshots/select-field.png +0 -0
- package/screenshots/textarea-field.png +0 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/tsup.config.ts +8 -0
package/ROADMAP.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Roadmap
|
|
2
|
+
|
|
3
|
+
## Feature Releases
|
|
4
|
+
|
|
5
|
+
- [ ] **Wizard/Stepper component** - Multi-step form with navigation
|
|
6
|
+
- [ ] **Repeater field** - Repeatable groups of fields
|
|
7
|
+
- [ ] **Switch** -Specialized Switch component
|
|
8
|
+
- [ ] **Rating** - Specialized star rating component
|
|
9
|
+
- [ ] **Rich text editor** - WYSIWYG field type (Quill/TinyMCE adapters)
|
|
10
|
+
- [ ] **Date range picker** - Specialized date range component
|
|
11
|
+
- [ ] **Time range picker** - Specialized time range component
|
|
12
|
+
- [ ] **Autocomplete** - Async search select with debounce
|
|
13
|
+
- [ ] **Tags input** - Tag management with creatable options
|
|
14
|
+
- [ ] **Rating/Score** - Star rating component
|
|
15
|
+
- [ ] **OTP input** - One-time password field with auto-focus
|
|
16
|
+
- [ ] **Slug field** - URL slug generator from another field
|
|
17
|
+
- [ ] **Character counter** - For text/textarea inputs
|
|
18
|
+
- [ ] **Password strength meter** - Visual password strength indicator
|
|
19
|
+
- [ ] **Form builder UI** - Visual form builder component
|
|
20
|
+
- [ ] **JSON schema generation** - Generate JSON schema from form
|
|
21
|
+
- [ ] **i18n integration** - Built-in translation support
|