Merge branch 'master' of github.com:ant-design/ant-design

This commit is contained in:
afc163 2016-09-29 23:14:57 +08:00
commit a0b5b3f346
14 changed files with 50 additions and 67 deletions

View File

@ -0,0 +1,17 @@
export default function getScroll(target, top) {
if (typeof window === 'undefined') {
return 0;
}
const prop = top ? 'pageYOffset' : 'pageXOffset';
const method = top ? 'scrollTop' : 'scrollLeft';
const isWindow = target === window;
let ret = isWindow ? target[prop] : target[method];
// ie6,7,8 standard mode
if (isWindow && typeof ret !== 'number') {
ret = window.document.documentElement[method];
}
return ret;
}

View File

@ -4,20 +4,7 @@ import addEventListener from 'rc-util/lib/Dom/addEventListener';
import classNames from 'classnames';
import shallowequal from 'shallowequal';
import omit from 'omit.js';
function getScroll(target, top) {
const prop = top ? 'pageYOffset' : 'pageXOffset';
const method = top ? 'scrollTop' : 'scrollLeft';
const isWindow = target === window;
let ret = isWindow ? target[prop] : target[method];
// ie6,7,8 standard mode
if (isWindow && typeof ret !== 'number') {
ret = window.document.documentElement[method];
}
return ret;
}
import getScroll from '../_util/getScroll';
function getTargetRect(target): any {
return target !== window ?

View File

@ -4,6 +4,7 @@ import Icon from '../icon';
import addEventListener from 'rc-util/lib/Dom/addEventListener';
import classNames from 'classnames';
import omit from 'omit.js';
import getScroll from '../_util/getScroll';
const reqAnimFrame = (() => {
if (window.requestAnimationFrame) {
@ -29,24 +30,6 @@ const easeInOutCubic = (t, b, c, d) => {
}
};
function getScroll(target, top) {
if (typeof window === 'undefined') {
return 0;
}
const prop = top ? 'pageYOffset' : 'pageXOffset';
const method = top ? 'scrollTop' : 'scrollLeft';
const isWindow = target === window;
let ret = isWindow ? target[prop] : target[method];
// ie6,7,8 standard mode
if (isWindow && typeof ret !== 'number') {
ret = window.document.documentElement[method];
}
return ret;
}
export interface BackTopProps {
visibilityHeight?: number;
onClick?: (event) => void;

View File

@ -62,7 +62,7 @@ export default class Carousel extends React.Component<CarouselProps, any> {
return (
<div className={className}>
<SlickCarousel {...props} />
<SlickCarousel ref="slick" {...props} />
</div>
);
}

View File

@ -19,10 +19,9 @@ const Step = Steps.Step;
ReactDOM.render(
<Steps current={1} status="error">
<Step title="已完成" description="这里是多信息的描述" />
<Step title="进行中" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="finished" description="This is description" />
<Step title="In Process" description="This is description" />
<Step title="Waiting" description="This is description" />
</Steps>
, mountNode);
````

View File

@ -14,14 +14,14 @@ title:
You can use your own custom icons by setting the property `icon` for `Steps.Step`.
````jsx
import { Steps } from 'antd';
import { Steps, Icon } from 'antd';
const Step = Steps.Step;
ReactDOM.render(
<Steps>
<Step status="finish" title="步骤1" icon="cloud" />
<Step status="process" title="步骤2" icon="apple" />
<Step status="wait" title="步骤3" icon="github" />
<Step status="finish" title="Step 1" icon="cloud" />
<Step status="process" title="Step 2" icon="apple" />
<Step status="wait" title="Step 3" icon={<Icon type="github" />} />
</Steps>
, mountNode);
````

View File

@ -19,10 +19,9 @@ const Step = Steps.Step;
ReactDOM.render(
<Steps current={1}>
<Step title="已完成" description="这里是多信息的描述" />
<Step title="进行中" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="Finished" description="This is description." />
<Step title="In Progress" description="This is description." />
<Step title="Waiting" description="This is description." />
</Steps>
, mountNode);
````

View File

@ -19,10 +19,9 @@ const Step = Steps.Step;
ReactDOM.render(
<Steps size="small" current={1}>
<Step title="已完成" />
<Step title="进行中" />
<Step title="待运行" />
<Step title="待运行" />
<Step title="Finished" />
<Step title="In Progress" />
<Step title="Waiting" />
</Steps>
, mountNode);
````

View File

@ -18,7 +18,7 @@ import { Steps, Button } from 'antd';
const Step = Steps.Step;
const array = [...Array(Math.floor(Math.random() * 3) + 3)];
const steps = array.map((item, i) => ({
title: `步骤${i + 1}`,
title: `Step ${i + 1}`,
}));
const App = React.createClass({
@ -38,12 +38,12 @@ const App = React.createClass({
const { current } = this.state;
return (
<div>
<div style={{ marginBottom: 24 }}>当前正在执行第 {current + 1} 步</div>
<div style={{ marginBottom: 24 }}>Curent Step {current + 1}</div>
<Steps current={current}>
{steps.map((s, i) => <Step key={i} title={s.title} description={s.description} />)}
</Steps>
<div style={{ marginTop: 24 }}>
<Button onClick={this.next}>下一步</Button>
<Button onClick={this.next}>Next Step</Button>
</div>
</div>
);

View File

@ -19,10 +19,9 @@ const Step = Steps.Step;
ReactDOM.render(
<Steps direction="vertical" size="small" current={1}>
<Step title="已完成" description="这里是多信息的描述" />
<Step title="进行中" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="Finished" description="This is description." />
<Step title="In Progress" description="This is description." />
<Step title="Waiting" description="This is description." />
</Steps>
, mountNode);
````

View File

@ -19,10 +19,9 @@ const Step = Steps.Step;
ReactDOM.render(
<Steps direction="vertical" current={1}>
<Step title="已完成" description="这里是多信息的描述" />
<Step title="进行中" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="待运行" description="这里是多信息的描述" />
<Step title="Finished" description="This is description." />
<Step title="In Progress" description="This is description." />
<Step title="Waiting" description="This is description." />
</Steps>
, mountNode);
````

View File

@ -39,6 +39,6 @@ A single step in the step bar.
Property | Description | Type | Default
-----|-----|-----|------
status | to specify the status. It will be automatically set by `current` of `Steps` if not configured. Optional values are: `wait` `process` `finish` `error` | String | wait
title | title of the step | React.Element | -
description | detail of the step, optional property | React.Element | -
icon | icon of the step, optional property | React.Element | -
title | title of the step | React.ReactNode | -
description | detail of the step, optional property | React.ReactNode | -
icon | icon of the step, optional property | string or React.ReactNode | -

View File

@ -40,6 +40,6 @@ title: Steps
| 参数 | 说明 | 类型 | 默认值 |
|----------|-----------------------------------------|------------|-------|
| status | 指定状态。当不配置该属性时,会使用 Steps 的 `current` 来自动指定状态。可选:`wait` `process` `finish` `error` | String | wait |
| title | 标题 | React.Element | - |
| description | 步骤的详情描述,可选 | React.Element | - |
| icon | 步骤图标的类型,可选 | string | - |
| title | 标题 | React.ReactNode | - |
| description | 步骤的详情描述,可选 | React.ReactNode | - |
| icon | 步骤图标的类型,可选 | string or React.ReactNode | - |

View File

@ -39,6 +39,7 @@
"css-animation": "^1.2.5",
"gregorian-calendar": "~4.1.0",
"gregorian-calendar-format": "~4.1.0",
"moment": "^2.15.1",
"object-assign": "~4.1.0",
"omit.js": "^0.1.0",
"rc-animate": "~2.3.0",
@ -60,7 +61,7 @@
"rc-rate": "~1.1.2",
"rc-select": "~6.5.1",
"rc-slider": "~5.1.0",
"rc-steps": "~2.1.5",
"rc-steps": "~2.2.0",
"rc-switch": "~1.4.2",
"rc-table": "~5.0.0",
"rc-tabs": "~7.0.5",