Files
shadcn-ui/apps/v4/examples/base/input-rtl.tsx
shadcn 38de7fddc2 feat: rtl (#9498)
* feat: rtl

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add sidebar

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* chore: changeset

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix
2026-01-30 21:08:39 +04:00

59 lines
1.3 KiB
TypeScript

"use client"
import * as React from "react"
import {
Field,
FieldDescription,
FieldLabel,
} from "@/examples/base/ui-rtl/field"
import { Input } from "@/examples/base/ui-rtl/input"
import {
useTranslation,
type Translations,
} from "@/components/language-selector"
const translations: Translations = {
en: {
dir: "ltr",
values: {
apiKey: "API Key",
placeholder: "sk-...",
description: "Your API key is encrypted and stored securely.",
},
},
ar: {
dir: "rtl",
values: {
apiKey: "مفتاح API",
placeholder: "sk-...",
description: "مفتاح API الخاص بك مشفر ومخزن بأمان.",
},
},
he: {
dir: "rtl",
values: {
apiKey: "מפתח API",
placeholder: "sk-...",
description: "מפתח ה-API שלך מוצפן ונשמר בצורה מאובטחת.",
},
},
}
export function InputRtl() {
const { dir, t } = useTranslation(translations, "ar")
return (
<Field dir={dir}>
<FieldLabel htmlFor="input-rtl-api-key">{t.apiKey}</FieldLabel>
<Input
id="input-rtl-api-key"
type="password"
placeholder={t.placeholder}
dir={dir}
/>
<FieldDescription>{t.description}</FieldDescription>
</Field>
)
}