@snabcentr/client-ui 1.3.4 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -884,7 +884,7 @@ let ScNewContragentFormComponent = class ScNewContragentFormComponent {
884
884
  name: new FormControl(null, Validators.required),
885
885
  phone: new FormControl(null, [Validators.required, Validators.minLength(12)]),
886
886
  email: new FormControl(null, Validators.email),
887
- position: new FormControl(null),
887
+ position: new FormControl(null, Validators.required),
888
888
  }),
889
889
  ], [Validators.minLength(1), Validators.required]),
890
890
  });
@@ -1270,7 +1270,7 @@ let ScSignUpFormComponent = class ScSignUpFormComponent {
1270
1270
  name: new FormControl(null, Validators.required),
1271
1271
  phone: new FormControl(null, [Validators.required, Validators.minLength(12)]),
1272
1272
  email: new FormControl(null, Validators.email),
1273
- position: new FormControl(null),
1273
+ position: new FormControl(null, Validators.required),
1274
1274
  });
1275
1275
  }
1276
1276
  /**
@@ -1976,7 +1976,7 @@ let ScAddContragentDialogComponent = class ScAddContragentDialogComponent {
1976
1976
  name: new FormControl(null, Validators.required),
1977
1977
  phone: new FormControl(null, [Validators.required, Validators.minLength(12)]),
1978
1978
  email: new FormControl(null, Validators.email),
1979
- position: new FormControl(null),
1979
+ position: new FormControl(null, Validators.required),
1980
1980
  });
1981
1981
  }
1982
1982
  /**