@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.

@@ -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
  /**