@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.
- package/esm2020/auth/sign-up-form/sc-sign-up-form.component.mjs +2 -2
- package/esm2020/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.mjs +2 -2
- package/esm2020/contragents/new-contragent-form/sc-new-contragent-form.component.mjs +2 -2
- package/fesm2015/snabcentr-client-ui.mjs +3 -3
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
- package/fesm2020/snabcentr-client-ui.mjs +3 -3
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/tailwind/tailwind.scss +30 -1
@@ -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
|
/**
|