Update d3-timer, d3-transition.

This commit is contained in:
Mike Bostock 2016-02-12 15:11:22 -08:00
Родитель 65e0e182da
Коммит 76fbe7b8d6
3 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

@ -7,7 +7,7 @@ This branch contains the prerelease of D3 4.0. This API is unstable and may chan
If you use NPM, `npm install d3@next`. Otherwise, download the [latest release](https://github.com/mbostock/d3/releases/latest). The released bundle supports AMD, CommonJS, and vanilla environments. Create a custom build using [Rollup](https://github.com/rollup/rollup) or your preferred bundler. You can also load directly from [d3js.org](https://d3js.org):
```html
<script src="https://d3js.org/d3.v4.0.0-alpha.17.min.js"></script>
<script src="https://d3js.org/d3.v4.0.0-alpha.18.min.js"></script>
```
## API Reference
@ -851,8 +851,9 @@ An efficient queue for managing thousands of concurrent animations.
* [d3.timer](https://github.com/d3/d3-timer#timer) - schedule a new timer.
* [*timer*.restart](https://github.com/d3/d3-timer#timer_restart) - reset the timers start time and callback.
* [*timer*.stop](https://github.com/d3/d3-timer#timer_stop) - stop the timer.
* [d3.timerOnce](https://github.com/d3/d3-timer#timerOnce) - schedule a timer that stops on its first callback.
* [d3.timerFlush](https://github.com/d3/d3-timer#timerFlush) - immediately execute any eligible timers.
* [d3.timeout](https://github.com/d3/d3-timer#timeout) - schedule a timer that stops on its first callback.
* [d3.interval](https://github.com/d3/d3-timer#interval) - schedule a timer that is called with a configurable period.
## [Transitions](https://github.com/d3/d3-transition)
@ -880,6 +881,7 @@ Animated transitions for [selections](#selections).
* [*transition*.delay](https://github.com/d3/d3-transition#transition_delay) -
* [*transition*.duration](https://github.com/d3/d3-transition#transition_duration) -
* [*transition*.ease](https://github.com/d3/d3-transition#transition_ease) -
* [d3.active](https://github.com/d3/d3-transition#active) -
## [Voronoi Diagrams](https://github.com/d3/d3-voronoi)

Просмотреть файл

@ -215,8 +215,9 @@ export {
export {
now,
timer,
timerOnce,
timerFlush
timerFlush,
timeout,
interval
} from "d3-timer";
export {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "d3",
"version": "4.0.0-alpha.17",
"version": "4.0.0-alpha.18",
"publishConfig": {
"tag": "next"
},
@ -59,8 +59,8 @@
"d3-shape": "0.5.1",
"d3-time": "0.2.1",
"d3-time-format": "0.3.1",
"d3-timer": "0.3.2",
"d3-transition": "0.1.1",
"d3-timer": "0.4.0",
"d3-transition": "0.1.2",
"d3-voronoi": "0.3.1"
}
}