--- order: 2 title: zh-CN: 方向 en-US: Direction --- ## zh-CN 这里列出了支持 `rtl` 方向的组件,您可以在演示中切换方向。 ## en-US Components which support rtl direction are listed here, you can toggle the direction in the demo. ```tsx import { DownloadOutlined, LeftOutlined, MinusOutlined, PlusOutlined, RightOutlined, SearchOutlined as SearchIcon, SmileOutlined, } from '@ant-design/icons'; import type { RadioChangeEvent } from 'antd'; import { Badge, Button, Cascader, Col, ConfigProvider, Divider, Input, InputNumber, Modal, Pagination, Radio, Rate, Row, Select, Steps, Switch, Tree, TreeSelect, } from 'antd'; import type { DirectionType } from 'antd/es/config-provider'; import React, { useState } from 'react'; const InputGroup = Input.Group; const ButtonGroup = Button.Group; const { Option } = Select; const { TreeNode } = Tree; const { Search } = Input; const { Step } = Steps; const cascaderOptions = [ { value: 'tehran', label: 'تهران', children: [ { value: 'tehran-c', label: 'تهران', children: [ { value: 'saadat-abad', label: 'سعادت آیاد', }, ], }, ], }, { value: 'ardabil', label: 'اردبیل', children: [ { value: 'ardabil-c', label: 'اردبیل', children: [ { value: 'primadar', label: 'پیرمادر', }, ], }, ], }, { value: 'gilan', label: 'گیلان', children: [ { value: 'rasht', label: 'رشت', children: [ { value: 'district-3', label: 'منطقه ۳', }, ], }, ], }, ]; type Placement = 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'; const Page: React.FC<{ popupPlacement: Placement }> = ({ popupPlacement }) => { const [currentStep, setCurrentStep] = useState(0); const [modalOpen, setModalOpen] = useState(false); const [badgeCount, setBadgeCount] = useState(5); const [showBadge, setShowBadge] = useState(true); const selectBefore = ( ); const selectAfter = ( ); // ==== Cascader ==== const cascaderFilter = (inputValue: string, path: { label: string }[]) => path.some(option => option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1); const onCascaderChange = (value: any) => { console.log(value); }; // ==== End Cascader ==== // ==== Modal ==== const showModal = () => { setModalOpen(true); }; const handleOk = (e: React.MouseEvent) => { console.log(e); setModalOpen(false); }; const handleCancel = (e: React.MouseEvent) => { console.log(e); setModalOpen(false); }; // ==== End Modal ==== const onStepsChange = (newCurrentStep: number) => { console.log('onChange:', newCurrentStep); setCurrentStep(newCurrentStep); }; // ==== Badge ==== const increaseBadge = () => { setBadgeCount(badgeCount + 1); }; const declineBadge = () => { let newBadgeCount = badgeCount - 1; if (newBadgeCount < 0) { newBadgeCount = 0; } setBadgeCount(newBadgeCount); }; const onChangeBadge = (checked: boolean) => { setShowBadge(checked); }; // ==== End Badge ==== return (
Cascader example } options={cascaderOptions} onChange={onCascaderChange} placeholder="یک مورد انتخاب کنید" popupPlacement={popupPlacement} />      With search: } options={cascaderOptions} onChange={onCascaderChange} placeholder="Select an item" popupPlacement={popupPlacement} showSearch={{ filter: cascaderFilter }} />
Switch example          Radio Group example تهران اصفهان فارس خوزستان
Button example

Tree example sss} key="0-0-1-0" />

Input (Input Group) example





Select example TreeSelect example
sss} key="random3" />

Modal example

نگاشته‌های خود را اینجا قراردهید

نگاشته‌های خود را اینجا قراردهید

نگاشته‌های خود را اینجا قراردهید


Steps example


Rate example

* Note: Half star not implemented in RTL direction, it will be supported after rc-rate{' '} implement rtl support.
Badge example


Pagination example
Grid System example

* Note: Every calculation in RTL grid system is from right side (offset, push, etc.)

col-8 col-8 col-6 col-offset-6 col-6 col-offset-6 col-12 col-offset-6 col-18 col-push-6 col-6 col-pull-18
); }; const App: React.FC = () => { const [direction, setDirection] = useState('ltr'); const [popupPlacement, setPopupPlacement] = useState('bottomLeft'); const changeDirection = (e: RadioChangeEvent) => { const directionValue = e.target.value; setDirection(directionValue); if (directionValue === 'rtl') { setPopupPlacement('bottomRight'); } else { setPopupPlacement('bottomLeft'); } }; return ( <>
Change direction of components: LTR RTL
); }; export default App; ``` ```css .button-demo .ant-btn, .button-demo .ant-btn-group { margin-right: 8px; margin-bottom: 12px; } .button-demo .ant-btn-group > .ant-btn, .button-demo .ant-btn-group > span > .ant-btn { margin-right: 0; margin-left: 0; } .head-example { display: inline-block; width: 42px; height: 42px; vertical-align: middle; background: #eee; border-radius: 4px; } .ant-badge:not(.ant-badge-not-a-wrapper) { margin-right: 20px; } .ant-badge-rtl:not(.ant-badge-not-a-wrapper) { margin-right: 0; margin-left: 20px; } ```