UI - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: дизайн и русификация God Mode

This commit is contained in:
DCCONSTRUCTIONS
2026-04-29 00:38:04 +03:00
parent 5d336039ba
commit 7f47b85c36
57 changed files with 1104 additions and 588 deletions
@@ -46,7 +46,7 @@ export function ControllerInput(props: Props) {
<Controller
control={control}
name={name}
rules={{ required: required ? `${label} is required.` : false }}
rules={{ required: required ? `Поле "${label}" обязательно.` : false }}
render={({ field: { value, onChange, ref } }) => (
<Input
id={name}
@@ -57,7 +57,7 @@ export function ControllerInput(props: Props) {
ref={ref}
hasError={error}
placeholder={placeholder}
className={cn("w-full rounded-md font-medium", {
className={cn("nodedc-settings-input w-full rounded-md font-medium", {
"pr-10": type === "password",
})}
/>