mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
c3e51506cc
* feat: add Space.Compact * feat: update input style * feat: add CompactItem for context memoize * feat: add demo * feat: update button style * feat: update input style * feat: 提取 getCompactClassNames 公用方法 * feat: update button style * feat: update picker * feat: add block prop for Space.Compact * feat: use Space.Compact for Input#addonBefore/After * feat: update addon * refactor: compact * feat: update * feat: update * feat: migrate styles to compact for new Input/Input.Search * feat: organize input demo * feat: add more button compact demo * feat: resolve select border collapse * feat: fix input addon select style * feat: add input addon demo in Space * feat: add useCompactItemContext hook * feat: update compact-item style * feat: rollback input#addon implements * feat: rollback input#addon and input.search style * feat: select border collapse * feat: add Space.Compact demo * feat: Space.Compact vertical for Button * refactor: useCompactItemContext * feat: update Button vertical demo * feat: rtl for compact mixin * feat: rtl for compact button * feat: input rtl * feat: add docs for Space.Compact * test: add some tests for Space.Compact * test: add tests * feat: select style * feat: handle select focus style * feat: add useCompactItemContext for Picker and Cascader * style: add compact-item style for cascader * feat: support nested Space.Compact * style: Input.Search in Space.Compact * chore: clean * feat: add useCompactItemContext for TreeSelect * fix: lint issues * fix: style lint * docs: update demos for Space.Compact * docs: update demo * fix: add deps-lint-skip for space * fix: add deps-lint-skip for space * fix: handle edge case for useCompactItemContext * test: add search test case * chore: + bundlesize * style: merge button compact style into one file * style: improve style for nested compact * fix: stylelint * docs: update Space.Compact docs * test: update demo snapshot * test: update input debug test snapshot * docs: update doccs for Space.Compact * test: improve test cases for Compact * docs: clean demos for Compact * refactor: improve Space.Compact * fix: add useCompactItemContext for Input.Search * style: improve compact border-radius implementation * refactor: use context to make nested compact works * fix: input-number focused style * refactor: remove useless style * refactor: improve style for vertical compact * test: update snapshot * test: update snapshot for input * refactor: improve compact-item-border-radius * fix: search group in RTL * style: improve style for button compact * style: use after * fix: stylelint * chore: update snapshot * style: improve button compact * refactor: improve btn-icon-only style in compact
117 lines
2.8 KiB
Markdown
117 lines
2.8 KiB
Markdown
---
|
|
order: 99
|
|
version: 4.24.0
|
|
title:
|
|
zh-CN: 紧凑布局嵌套
|
|
en-US: Nested Space Compact
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
嵌套使用的紧凑布局
|
|
|
|
## en-US
|
|
|
|
Nested `Space.Compact`
|
|
|
|
```tsx
|
|
import { CopyOutlined, SearchOutlined } from '@ant-design/icons';
|
|
import { Button, Cascader, Input, InputNumber, Space, Select, TimePicker } from 'antd';
|
|
import React from 'react';
|
|
|
|
const { Option } = Select;
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Space.Compact block>
|
|
<Space.Compact>
|
|
<Space.Compact>
|
|
<Input style={{ width: 90 }} placeholder="Typing..." />
|
|
<Button icon={<SearchOutlined />} />
|
|
</Space.Compact>
|
|
<Space.Compact>
|
|
<InputNumber defaultValue={12} />
|
|
<Select defaultValue="Option1">
|
|
<Option value="Option1">Opt1</Option>
|
|
<Option value="Option2">Opt2</Option>
|
|
</Select>
|
|
</Space.Compact>
|
|
</Space.Compact>
|
|
<Button type="primary">Separator</Button>
|
|
<Space.Compact>
|
|
<Space.Compact>
|
|
<Input.Search style={{ width: 110 }} placeholder="Search" />
|
|
<Button type="primary">Submit</Button>
|
|
</Space.Compact>
|
|
<Space.Compact>
|
|
<Input defaultValue="mysite" />
|
|
<Button icon={<CopyOutlined />} />
|
|
</Space.Compact>
|
|
</Space.Compact>
|
|
</Space.Compact>
|
|
<>
|
|
<br />
|
|
<Space.Compact block>
|
|
<Space.Compact>
|
|
<TimePicker />
|
|
<Button type="primary">Submit</Button>
|
|
</Space.Compact>
|
|
<Space.Compact>
|
|
<Cascader
|
|
options={[
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
children: [
|
|
{
|
|
value: 'hangzhou',
|
|
label: 'Hangzhou',
|
|
children: [
|
|
{
|
|
value: 'xihu',
|
|
label: 'West Lake',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
value: 'jiangsu',
|
|
label: 'Jiangsu',
|
|
children: [
|
|
{
|
|
value: 'nanjing',
|
|
label: 'Nanjing',
|
|
children: [
|
|
{
|
|
value: 'zhonghuamen',
|
|
label: 'Zhong Hua Men',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
placeholder="Select Address"
|
|
/>
|
|
<Button type="primary">Submit</Button>
|
|
</Space.Compact>
|
|
</Space.Compact>
|
|
</>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|
|
|
|
```css
|
|
[data-theme='compact'] .select-before {
|
|
width: 71px;
|
|
}
|
|
|
|
[data-theme='compact'] .select-after {
|
|
width: 65px;
|
|
}
|
|
```
|