@ngx-smz/core 21.0.0-alpha.5 → 21.0.0-alpha.6
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.
|
@@ -28610,8 +28610,7 @@ class SmzDialogBuilder extends SmzBuilderUtilities {
|
|
|
28610
28610
|
this.dialogState.features.push(formFeature);
|
|
28611
28611
|
if (form === null || form === undefined) {
|
|
28612
28612
|
const formBuilder = new SmzFormBuilder(this);
|
|
28613
|
-
|
|
28614
|
-
formFeature.data = formBuilder._state;
|
|
28613
|
+
formFeature.data = formBuilder.formState;
|
|
28615
28614
|
return formBuilder;
|
|
28616
28615
|
}
|
|
28617
28616
|
return new SmzFormBuilder(this, form);
|
|
@@ -28741,8 +28740,7 @@ class SmzDialogFormBuilder {
|
|
|
28741
28740
|
}
|
|
28742
28741
|
form() {
|
|
28743
28742
|
const formBuilder = new SmzFormBuilder(this.dialogBuilderRef);
|
|
28744
|
-
|
|
28745
|
-
this.feature.data = formBuilder._state;
|
|
28743
|
+
this.feature.data = formBuilder.formState;
|
|
28746
28744
|
return formBuilder;
|
|
28747
28745
|
}
|
|
28748
28746
|
get dialog() {
|