You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: Use `getName()` method instead of direct property access
Ensures consistent access to the component/presenter name through a dedicated getter, improving encapsulation and maintainability.
feat: Add one-to-many relationship for Identity and Profiles
This change introduces the capability for an `Identity` to be associated with multiple `Profile` entities.
It implements bidirectional updates to maintain data consistency when establishing or managing these relationships.
feat: Add structured editing and display for JSON configurations
Enhances the user experience for managing JSON-typed configurations.
Previously, JSON values were treated as raw text, making them difficult to read and edit. This change introduces:
- Type-aware form fields (checkboxes, integers, text) for individual JSON keys, with translated labels, improving editability.
- A formatted list display of JSON key-value pairs in the configuration grid, also with translated labels, for better readability.
- Robust parsing and handling of legacy JSON serialization issues (e.g., trailing semicolons, double encoding).