From a84be2c043c2f4f642cac2c9fa3077b4d26ca75c Mon Sep 17 00:00:00 2001 From: Benjy Cui Date: Thu, 24 Dec 2015 09:54:59 +0800 Subject: [PATCH] docs: update docs and demos --- components/slider/demo/event.md | 3 ++- components/slider/demo/tip-formatter.md | 8 +++++--- components/slider/index.md | 3 ++- package.json | 4 ++-- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/components/slider/demo/event.md b/components/slider/demo/event.md index 447bdf457f..89da645750 100644 --- a/components/slider/demo/event.md +++ b/components/slider/demo/event.md @@ -2,7 +2,7 @@ - order: 4 -当 Slider 的值发生改变时,会触发 onChange 事件,并把改变后的值作为参数传入。 +当 Slider 的值发生改变时,会触发 `onChange` 事件,并把改变后的值作为参数传入。在 `onmouseup` 时,会触发 `onAfterChange` 事件,并把当前值作为参数传入。 --- @@ -17,6 +17,7 @@ ReactDOM.render(
+
, document.getElementById('components-slider-demo-event')); ```` diff --git a/components/slider/demo/tip-formatter.md b/components/slider/demo/tip-formatter.md index 99b0744f7c..fef88bfd68 100644 --- a/components/slider/demo/tip-formatter.md +++ b/components/slider/demo/tip-formatter.md @@ -2,7 +2,7 @@ - order: 5 -使用 `tipFormatter` 可以格式化 `Tooltip` 的内容。 +使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`。 --- @@ -13,6 +13,8 @@ function formatter(value) { return '$' + value; } -ReactDOM.render( -, document.getElementById('components-slider-demo-tip-formatter')); +ReactDOM.render(
+ + +
, document.getElementById('components-slider-demo-tip-formatter')); ```` diff --git a/components/slider/index.md b/components/slider/index.md index e1722c0018..15c49e3f72 100644 --- a/components/slider/index.md +++ b/components/slider/index.md @@ -26,4 +26,5 @@ | disabled | Boolean | false | 值为 `true` 时,滑块为禁用状态 | allowCross | Boolean | true | 当 `range` 为 `true` 时,该属性可以设置是否允许两个滑块交换位置。 | onChange | Function | NOOP | 当 Slider 的值发生改变时,会触发 onChange 事件,并把改变后的值作为参数传入。 -| tipFormatter | Function | | Slider 会把当前值传给 `tipFormatter`,并在 Tooltip 中显示 `tipFormatter` 的返回值。 +| onAfterChange | Function | NOOP | 与 `onmouseup` 触发时机一致,把当前值作为参数传入。 +| tipFormatter | Function or null | IDENTITY | Slider 会把当前值传给 `tipFormatter`,并在 Tooltip 中显示 `tipFormatter` 的返回值,若为 null,则隐藏 Tooltip。 diff --git a/package.json b/package.json index f63d3b7445..da991cfaa4 100644 --- a/package.json +++ b/package.json @@ -53,13 +53,13 @@ "rc-queue-anim": "~0.11.2", "rc-radio": "~2.0.0", "rc-select": "~5.4.0", - "rc-slider": "~3.2.0", + "rc-slider": "~3.3.0", "rc-steps": "~1.4.1", "rc-switch": "~1.3.1", "rc-table": "~3.6.2", "rc-tabs": "~5.5.0", "rc-time-picker": "1.0.0-alpha9", - "rc-tooltip": "~3.2.0", + "rc-tooltip": "~3.3.0", "rc-tree": "~0.19.0", "rc-trigger": "~1.0.6", "rc-upload": "~1.7.0",