@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.
Files changed (45) hide show
  1. package/CHANGELOG.md +97 -0
  2. package/README.md +783 -0
  3. package/ROADMAP.md +21 -0
  4. package/dist/index.cjs +1919 -0
  5. package/dist/index.d.cts +284 -0
  6. package/dist/index.d.ts +284 -0
  7. package/dist/index.js +1878 -0
  8. package/dist/styles/components/button.css +244 -0
  9. package/dist/styles/components/button.css.map +1 -0
  10. package/dist/styles/components/checkbox.css +90 -0
  11. package/dist/styles/components/checkbox.css.map +1 -0
  12. package/dist/styles/components/color.css +31 -0
  13. package/dist/styles/components/color.css.map +1 -0
  14. package/dist/styles/components/form-field.css +36 -0
  15. package/dist/styles/components/form-field.css.map +1 -0
  16. package/dist/styles/components/form-states.css +80 -0
  17. package/dist/styles/components/form-states.css.map +1 -0
  18. package/dist/styles/components/grid.css +818 -0
  19. package/dist/styles/components/grid.css.map +1 -0
  20. package/dist/styles/components/input.css +112 -0
  21. package/dist/styles/components/input.css.map +1 -0
  22. package/dist/styles/components/link.css +113 -0
  23. package/dist/styles/components/link.css.map +1 -0
  24. package/dist/styles/components/radio.css +104 -0
  25. package/dist/styles/components/radio.css.map +1 -0
  26. package/dist/styles/components/range.css +54 -0
  27. package/dist/styles/components/range.css.map +1 -0
  28. package/dist/styles/components/select.css +37 -0
  29. package/dist/styles/components/select.css.map +1 -0
  30. package/dist/styles/components/upload.css +54 -0
  31. package/dist/styles/components/upload.css.map +1 -0
  32. package/dist/styles/index.css +1733 -0
  33. package/dist/styles/index.css.map +1 -0
  34. package/package.json +42 -0
  35. package/screenshots/contact-form.png +0 -0
  36. package/screenshots/file-input.png +0 -0
  37. package/screenshots/invalid-username.png +0 -0
  38. package/screenshots/number-field.png +0 -0
  39. package/screenshots/radio-field.png +0 -0
  40. package/screenshots/range-field.png +0 -0
  41. package/screenshots/registration-form.png +0 -0
  42. package/screenshots/select-field.png +0 -0
  43. package/screenshots/textarea-field.png +0 -0
  44. package/tsconfig.tsbuildinfo +1 -0
  45. 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