@ilife-tech/react-application-flow-renderer 1.2.66 → 1.2.67

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 ADDED
@@ -0,0 +1,117 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.0.1] - 2025-01-10
9
+
10
+ ### Enhanced
11
+
12
+ - **Dual Masking System**: Upgraded NumberField component with advanced dual masking capabilities
13
+ - Real-time input formatting during user typing (e.g., `123-45-6789`)
14
+ - Security masking for sensitive data protection (e.g., `***-**-6789`)
15
+ - Eye icon toggle for manual mask/unmask control (👁️/🙈)
16
+ - IMask library integration for superior pattern handling
17
+ - Keyboard accessibility support (Enter/Space key toggle)
18
+ - ARIA labels and screen reader compatibility
19
+ - Prefix and suffix masking options
20
+ - Seamless form integration with proper value propagation
21
+
22
+ ### Fixed
23
+
24
+ - Focus-dependent masking issues where raw values were visible during input
25
+ - FormFieldRegistry phonenumber field mapping to use NumberField consistently
26
+ - Prefilled values now display security masking immediately on load
27
+
28
+ ### Technical Improvements
29
+
30
+ - Removed legacy focus-based masking code
31
+ - Cleaned up unused imports and functions
32
+ - Added comprehensive JSDoc documentation
33
+ - Updated README with masking configuration examples
34
+ - Added troubleshooting guide for common masking issues
35
+
36
+ ## [1.0.0] - 2025-01-10
37
+
38
+ ### Added
39
+
40
+ - Initial release of the React Dynamic Form Renderer
41
+ - Universal API integration support
42
+ - Comprehensive field components:
43
+ - ComboboxField
44
+ - DateField
45
+ - EmailField
46
+ - PhoneField
47
+ - SpinnerField
48
+ - RadioSwitchField
49
+ - DisplayTextField
50
+ - Form state management with:
51
+ - Validation system
52
+ - Field dependencies
53
+ - Rule engine
54
+ - Theme system with:
55
+ - Customizable themes
56
+ - Responsive design support
57
+ - Mobile-first approach
58
+ - Documentation:
59
+ - API reference
60
+ - Theme customization guide
61
+ - Advanced usage examples
62
+ - Migration guide
63
+ - Testing suite:
64
+ - Unit tests
65
+ - Integration tests
66
+ - E2E tests
67
+ - Test documentation
68
+
69
+ ### Changed
70
+
71
+ - N/A (Initial release)
72
+
73
+ ### Deprecated
74
+
75
+ - N/A (Initial release)
76
+
77
+ ### Removed
78
+
79
+ - N/A (Initial release)
80
+
81
+ ### Fixed
82
+
83
+ - N/A (Initial release)
84
+
85
+ ### Security
86
+
87
+ - Implemented secure form validation
88
+ - Added input sanitization
89
+ - Protected against XSS attacks
90
+
91
+ ## [Unreleased]
92
+
93
+ ### Planned Features
94
+
95
+ - GraphQL support
96
+ - Real-time validation
97
+ - Custom field builder
98
+ - Form analytics
99
+ - Accessibility improvements
100
+ - Performance optimizations
101
+ - Additional field types:
102
+ - RichTextField
103
+ - SignatureField
104
+ - LocationField
105
+ - FileUploadField with drag-and-drop
106
+ - Enhanced validation:
107
+ - Custom validation rules
108
+ - Async validation
109
+ - Cross-field validation
110
+ - Advanced theming:
111
+ - Theme presets
112
+ - Dark mode support
113
+ - CSS-in-JS optimizations
114
+ - Developer tools:
115
+ - Form debugger
116
+ - Performance monitor
117
+ - State inspector