ant-design/components/slider/demo/_semantic.tsx
thinkasany aa1b6a92b4
Some checks are pending
Publish Any Commit / build (push) Waiting to run
🔀 Sync mirror to Gitee / mirror (push) Waiting to run
✅ test / lint (push) Waiting to run
✅ test / test-react-legacy (16, 1/2) (push) Waiting to run
✅ test / test-react-legacy (16, 2/2) (push) Waiting to run
✅ test / test-react-legacy (17, 1/2) (push) Waiting to run
✅ test / test-react-legacy (17, 2/2) (push) Waiting to run
✅ test / test-node (push) Waiting to run
✅ test / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test / test-coverage (push) Blocked by required conditions
✅ test / build (push) Waiting to run
✅ test / test lib/es module (es, 1/2) (push) Waiting to run
✅ test / test lib/es module (es, 2/2) (push) Waiting to run
✅ test / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run
feat: ConfigProvider support classNames and styles for slider (#52185)
* draft

* fix
2025-01-02 15:09:36 +08:00

42 lines
1.3 KiB
TypeScript

import React from 'react';
import { Slider } from 'antd';
import SemanticPreview from '../../../.dumi/components/SemanticPreview';
import useLocale from '../../../.dumi/hooks/useLocale';
const locales = {
cn: {
root: '根元素',
track: '范围选择下,点和点之间单个选取条',
tracks: '范围选择下,整个范围选取条',
rail: '背景条元素',
handle: '抓取点元素',
},
en: {
root: 'Root element',
track: 'The selection bar between points and points under the range selection',
tracks: 'The entire range selection bar under the range selection',
rail: 'Background rail element',
handle: 'Grab handle element',
},
};
const App: React.FC = () => {
const [locale] = useLocale(locales);
return (
<SemanticPreview
semantics={[
{ name: 'root', desc: locale.root, version: '5.23.0' },
{ name: 'track', desc: locale.track, version: '5.10.0' },
{ name: 'tracks', desc: locale.tracks, version: '5.10.0' },
{ name: 'rail', desc: locale.rail, version: '5.10.0' },
{ name: 'handle', desc: locale.handle, version: '5.10.0' },
]}
>
<Slider range defaultValue={[20, 30, 50]} style={{ width: '100%' }} />
</SemanticPreview>
);
};
export default App;