-
Notifications
You must be signed in to change notification settings - Fork 52
/
index.js
43 lines (40 loc) · 1.83 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import {selection} from "d3-selection";
import {transition} from "d3-transition";
import translateSelection from "./src/translate-selection.js";
import append from "./src/append.js";
import insert from "./src/insert.js";
import parent from "./src/parent.js";
import selectAppend from "./src/selectAppend.js";
import tspans from "./src/tspans.js";
import appendMany from "./src/appendMany.js";
import at from "./src/at.js";
import st from "./src/st.js";
selection.prototype.translate = translateSelection;
transition.prototype.translate = translateSelection;
selection.prototype.append = append;
selection.prototype.insert = insert;
selection.prototype.parent = parent;
selection.prototype.selectAppend = selectAppend;
selection.prototype.tspans = tspans;
selection.prototype.appendMany = appendMany;
selection.prototype.at = at;
selection.prototype.st = st;
transition.prototype.at = at;
transition.prototype.st = st;
selection.prototype.prop = selection.prototype.property;
export {default as wordwrap} from "./src/wordwrap.js";
export {default as parseAttributes} from "./src/parseAttributes.js";
export {default as f} from "./src/f.js";
export {default as ascendingKey} from "./src/ascendingKey.js";
export {default as descendingKey} from "./src/descendingKey.js";
export {default as conventions} from "./src/conventions.js";
export {default as drawAxis} from "./src/drawAxis.js";
export {default as attachTooltip} from "./src/attachTooltip.js";
export {default as loadData} from "./src/loadData.js";
export {default as nestBy} from "./src/nestBy.js";
export {default as round} from "./src/round.js";
export {default as clamp} from "./src/clamp.js";
export {default as polygonClip} from "./src/polygonClip.js";
export {default as timer} from "./src/timer.js";
export {default as interval} from "./src/interval.js";
export {default as timeout} from "./src/timeout.js";