formix-ui 0.0.5 → 0.0.7

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 (2) hide show
  1. package/README.md +26 -29
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -1,49 +1,46 @@
1
1
  # 🚀 FormixUI
2
2
 
3
- <!-- PROJECT_STATUS_START -->
4
- <div align="center">
3
+ [![npm version](https://img.shields.io/npm/v/formix-ui.svg)](https://www.npmjs.com/package/formix-ui)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue.svg)](https://www.typescriptlang.org/)
6
+ [![React](https://img.shields.io/badge/React-19.2-61dafb.svg)](https://reactjs.org/)
5
7
 
6
- <h3>🚀 Project Status: 27% Complete</h3>
8
+ **A powerful, schema-driven form engine for React with a visual builder, comprehensive validation, and enterprise-grade features.**
7
9
 
8
- <img src="https://progress-bar.dev/27/?scale=100&title=progress&width=600&color=00ff00&suffix=%25" alt="Progress Bar">
10
+ <!-- PROJECT_STATUS_START -->
9
11
 
10
- <br/>
12
+ ### 🚀 Status
11
13
 
12
- | 📦 Version | ✅ Completed | 🚧 In Progress | 🔄 Recurring | 📅 Upcoming |
13
- | :--------: | :----------: | :------------: | :----------: | :---------: |
14
- | **v0.0.2** | **27** | **9** | **3** | **63** |
14
+ | 📦 **Version** | ✅ **Completed** | 🚧 **In Progress** | 🔄 **Recurring** | 📅 **Upcoming** |
15
+ | :------------: | :--------------: | :----------------: | :--------------: | :-------------: |
16
+ | **v0.0.7** | 27 | 9 | 3 | 63 |
15
17
 
16
- </div>
18
+ <sub>Last updated: Sat, 17 Jan 2026 22:21:20 GMT</sub>
17
19
 
18
- <details open>
20
+ <details>
19
21
  <summary><h3>📅 Recent Activity & Roadmap</h3></summary>
20
22
 
21
- | **✨ Recently Completed** | **🚧 In Progress / Planned** |
22
- | :------------------------ | :--------------------------- |
23
+ #### Recently Completed
24
+
25
+ - ✅ **Button**: Standard interactive button.
26
+ - ✅ **Checkbox**: Binary selection control.
27
+ - ✅ **Combobox (Autocomplete)**: Input with filtered suggestions.
28
+ - ✅ **Date Picker**: Date selection interactive calendar.
29
+ - ✅ **Date Range Picker**: Date range selection.
23
30
 
24
- | <ul><li>✅ **Button**: Standard interactive button.</li>
31
+ #### 🚧 In Progress / Planned
25
32
 
26
- <li>✅ **Checkbox**: Binary selection control.</li>
27
- <li>✅ **Combobox (Autocomplete)**: Input with filtered suggestions.</li>
28
- <li>✅ **Date Picker**: Date selection interactive calendar.</li>
29
- <li>✅ **Date Range Picker**: Date range selection.</li></ul> | <ul><li>🚧 Locale switcher UI</li>
30
- <li>🚧 Week start UI</li>
31
- <li>🚧 Week number toggle UI</li>
32
- <li>🚧 Time step UI</li>
33
- <li>🚧 Focus trapping (modals)</li></ul> |
33
+ - 🚧 Locale switcher UI
34
+ - 🚧 Week start UI
35
+ - 🚧 Week number toggle UI
36
+ - 🚧 Time step UI
37
+ - 🚧 Focus trapping (modals)
34
38
 
35
39
  </details>
36
40
 
37
41
  <br/>
38
42
  <!-- PROJECT_STATUS_END -->
39
43
 
40
- [![npm version](https://img.shields.io/npm/v/formix-ui.svg)](https://www.npmjs.com/package/formix-ui)
41
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
42
- [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue.svg)](https://www.typescriptlang.org/)
43
- [![React](https://img.shields.io/badge/React-19.2-61dafb.svg)](https://reactjs.org/)
44
-
45
- **A powerful, schema-driven form engine for React with a visual builder, comprehensive validation, and enterprise-grade features.**
46
-
47
44
  ## ✨ Features
48
45
 
49
46
  ### 🎨 **Visual Form Builder**
@@ -72,7 +69,7 @@
72
69
  - Zod integration
73
70
  - Custom validation functions
74
71
 
75
- ## Features (v3.2.0)
72
+ ## 🌟 Highlights
76
73
 
77
74
  - **Framework Agnostic State**: Choose between Native `useForm`, **Formik**, or **React Hook Form**.
78
75
  - **Multi-Validation Support**: First-class support for **Zod** and **Yup**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "formix-ui",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,7 +34,10 @@
34
34
  "build:lib": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json && npm run build:cli",
35
35
  "build:cli": "tsc -p tsconfig.cli.json",
36
36
  "deploy": "gh-pages -d dist-site",
37
- "update-status": "node .agent/scripts/generate-status.js"
37
+ "update-status": "node .agent/scripts/generate-status.js",
38
+ "release:patch": "node .agent/scripts/release.js patch",
39
+ "release:minor": "node .agent/scripts/release.js minor",
40
+ "release:major": "node .agent/scripts/release.js major"
38
41
  },
39
42
  "bin": {
40
43
  "formix-ui": "dist/bin/index.js",