@codetectonics/mantle 1.0.13 → 1.0.14

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.
@@ -3322,7 +3322,7 @@ class DialogNestedFormComponent {
3322
3322
  if (this.formPageService) {
3323
3323
  this.formPageService.onDialogFormContentLoaded(this.dialogNestedFormParams);
3324
3324
  this.form.valueChanges.subscribe(val => {
3325
- let changes = this.formPageService.onDialogFormValueChanged(this.dialogNestedFormParams, this.form.getRawValue());
3325
+ let changes = this.formPageService.onDialogFormValueChanged(this.dialogNestedFormParams, this.form.getRawValue(), this.form);
3326
3326
  if (changes)
3327
3327
  this.form.patchValue(changes);
3328
3328
  });
@@ -6674,7 +6674,7 @@ class FeatureConfigService {
6674
6674
  return section;
6675
6675
  }
6676
6676
  // Override this method in your domain-service if you would like to use it.
6677
- onDialogFormValueChanged(dialogContent, formValue) { }
6677
+ onDialogFormValueChanged(dialogContent, formValue, form) { }
6678
6678
  ;
6679
6679
  // Override this method in you domain-service if you would like to use it.
6680
6680
  additionalFormPageButtons(record) {