iptdevs-design-system 3.1.431 → 3.1.432
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/esm2020/lib/cod-self-managed/steps/cod-form-step-two/cod-self-form-step-two.component.mjs +6 -2
- package/fesm2015/iptdevs-design-system.mjs +5 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod-self-managed/steps/cod-form-step-two/cod-self-form-step-two.component.d.ts +3 -2
- package/package.json +1 -1
|
@@ -6528,10 +6528,14 @@ class CodSelfFormStepTwoComponent extends CodSelfManagedSteps {
|
|
|
6528
6528
|
this.completed = new EventEmitter();
|
|
6529
6529
|
this.controls = new CodSelfManagedControls().controls[1];
|
|
6530
6530
|
}
|
|
6531
|
-
|
|
6531
|
+
ngOnInit() {
|
|
6532
6532
|
this.initForm();
|
|
6533
6533
|
this.startLocalStorageWork();
|
|
6534
6534
|
}
|
|
6535
|
+
ngOnChanges() {
|
|
6536
|
+
// this.initForm();
|
|
6537
|
+
// this.startLocalStorageWork();
|
|
6538
|
+
}
|
|
6535
6539
|
initForm() {
|
|
6536
6540
|
this.codSelfFormStepTwo = this.fb.group({
|
|
6537
6541
|
schedule: ['', [Validators.required]],
|