@breadstone/mosaik-elements-angular 0.0.195 → 0.0.196

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 CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.0.196 (2025-12-05)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **SignalFormValidator:** mark fields as touched during validation ([662b6f9dbe](https://github.com/RueDeRennes/mosaik/commit/662b6f9dbe))
6
+ - **event-hub:** add Event Hub pattern implementation for Angular 2025 ([88dc4f7404](https://github.com/RueDeRennes/mosaik/commit/88dc4f7404))
7
+
8
+ ### 🩹 Fixes
9
+
10
+ - **keywords:** add Event Bus and Message Bus to event hub documentation ([69cafcf76f](https://github.com/RueDeRennes/mosaik/commit/69cafcf76f))
11
+
1
12
  ## 0.0.195 (2025-12-03)
2
13
 
3
14
  ### 🩹 Fixes
@@ -60613,6 +60613,7 @@ class SignalFormValidator {
60613
60613
  const issues = [];
60614
60614
  // Traverse and collect individual issues
60615
60615
  this.traverse(form, '', (path, field) => {
60616
+ field.markAsTouched();
60616
60617
  const errs = field.errors();
60617
60618
  if (errs.length > 0) {
60618
60619
  const issue = {