@snabcentr/client-ui 1.3.4 → 1.4.0

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.

Potentially problematic release.


This version of @snabcentr/client-ui might be problematic. Click here for more details.

@@ -869,7 +869,7 @@ let ScNewContragentFormComponent = class ScNewContragentFormComponent {
869
869
  name: new FormControl(null, Validators.required),
870
870
  phone: new FormControl(null, [Validators.required, Validators.minLength(12)]),
871
871
  email: new FormControl(null, Validators.email),
872
- position: new FormControl(null),
872
+ position: new FormControl(null, Validators.required),
873
873
  }),
874
874
  ], [Validators.minLength(1), Validators.required]),
875
875
  });
@@ -1245,7 +1245,7 @@ let ScSignUpFormComponent = class ScSignUpFormComponent {
1245
1245
  name: new FormControl(null, Validators.required),
1246
1246
  phone: new FormControl(null, [Validators.required, Validators.minLength(12)]),
1247
1247
  email: new FormControl(null, Validators.email),
1248
- position: new FormControl(null),
1248
+ position: new FormControl(null, Validators.required),
1249
1249
  });
1250
1250
  }
1251
1251
  /**
@@ -1942,7 +1942,7 @@ let ScAddContragentDialogComponent = class ScAddContragentDialogComponent {
1942
1942
  name: new FormControl(null, Validators.required),
1943
1943
  phone: new FormControl(null, [Validators.required, Validators.minLength(12)]),
1944
1944
  email: new FormControl(null, Validators.email),
1945
- position: new FormControl(null),
1945
+ position: new FormControl(null, Validators.required),
1946
1946
  });
1947
1947
  }
1948
1948
  /**