@mieweb/forms-editor 0.1.15 → 1.0.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 +11 -1
- package/dist/index.js +1939 -1215
- package/dist/index.js.map +1 -1
- package/package.json +40 -39
package/README.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Embeddable questionnaire editor with FHIR export and conditional logic.
|
|
4
4
|
|
|
5
|
+
## 🎨 Version 1.0 - UI/UX Refinement
|
|
6
|
+
|
|
7
|
+
The editor now features a complete visual overhaul with modern blue theme:
|
|
8
|
+
- All field components use consistent blue color palette
|
|
9
|
+
- Enhanced focus states and hover interactions
|
|
10
|
+
- Improved field selection and editing experience
|
|
11
|
+
- Better visual hierarchy with updated FieldWrapper
|
|
12
|
+
- Mobile-responsive with polished interactions
|
|
13
|
+
|
|
14
|
+
See the [main CHANGELOG](../../CHANGELOG.md) for complete details.
|
|
15
|
+
|
|
5
16
|
```bash
|
|
6
17
|
npm install @mieweb/forms-editor react react-dom
|
|
7
18
|
```
|
|
@@ -65,7 +76,6 @@ function App() {
|
|
|
65
76
|
- `startInPreview` - Start in preview mode (default: false)
|
|
66
77
|
- `hideUnsupportedFields` - Hide unsupported field types (default: false)
|
|
67
78
|
- `showHeader` - Show editor header (default: true)
|
|
68
|
-
- `showMobileToolbar` - Show mobile toolbar (default: true)
|
|
69
79
|
- `className` - Additional CSS classes
|
|
70
80
|
|
|
71
81
|
## 🔄 Breaking Changes (v0.1.1)
|