Browse Source

updat demo

pull/15245/head
zombiej 6 years ago
parent
commit
82c4b52496
  1. 3
      components/collapse/__tests__/__snapshots__/demo.test.js.snap
  2. 15
      components/collapse/demo/extra.md

3
components/collapse/__tests__/__snapshots__/demo.test.js.snap

@ -477,6 +477,7 @@ exports[`renders ./components/collapse/demo/extra.md correctly 1`] = `
<i <i
aria-label="icon: setting" aria-label="icon: setting"
class="anticon anticon-setting" class="anticon anticon-setting"
tabindex="-1"
> >
<svg <svg
aria-hidden="true" aria-hidden="true"
@ -544,6 +545,7 @@ exports[`renders ./components/collapse/demo/extra.md correctly 1`] = `
<i <i
aria-label="icon: setting" aria-label="icon: setting"
class="anticon anticon-setting" class="anticon anticon-setting"
tabindex="-1"
> >
<svg <svg
aria-hidden="true" aria-hidden="true"
@ -596,6 +598,7 @@ exports[`renders ./components/collapse/demo/extra.md correctly 1`] = `
<i <i
aria-label="icon: setting" aria-label="icon: setting"
class="anticon anticon-setting" class="anticon anticon-setting"
tabindex="-1"
> >
<svg <svg
aria-hidden="true" aria-hidden="true"

15
components/collapse/demo/extra.md

@ -28,15 +28,24 @@ const text = `
it can be found as a welcome guest in many households across the world. it can be found as a welcome guest in many households across the world.
`; `;
const genExtra = () => (
<Icon
type="setting"
onClick={(event) => {
event.stopPropagation();
}}
/>
);
ReactDOM.render( ReactDOM.render(
<Collapse defaultActiveKey={['1']} onChange={callback}> <Collapse defaultActiveKey={['1']} onChange={callback}>
<Panel header="This is panel header 1" key="1" extra={<Icon type="setting" />}> <Panel header="This is panel header 1" key="1" extra={genExtra()}>
<div>{text}</div> <div>{text}</div>
</Panel> </Panel>
<Panel header="This is panel header 2" key="2" extra={<Icon type="setting" />}> <Panel header="This is panel header 2" key="2" extra={genExtra()}>
<div>{text}</div> <div>{text}</div>
</Panel> </Panel>
<Panel header="This is panel header 3" key="3" extra={<Icon type="setting" />}> <Panel header="This is panel header 3" key="3" extra={genExtra()}>
<div>{text}</div> <div>{text}</div>
</Panel> </Panel>
</Collapse>, </Collapse>,

Loading…
Cancel
Save