svelteplot 0.10.2 → 0.10.3-pr-370.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/LICENSE.md +1 -1
  2. package/dist/Mark.svelte.d.ts +4 -4
  3. package/dist/constants.d.ts +1 -1
  4. package/dist/helpers/colors.d.ts +8 -11
  5. package/dist/helpers/curves.d.ts +2 -2
  6. package/dist/helpers/facets.d.ts +1 -1
  7. package/dist/helpers/getBaseStyles.d.ts +2 -4
  8. package/dist/helpers/index.d.ts +1 -1
  9. package/dist/helpers/reduce.d.ts +1 -1
  10. package/dist/helpers/scales.d.ts +7 -7
  11. package/dist/helpers/symbols.d.ts +1 -1
  12. package/dist/helpers/time.d.ts +3 -3
  13. package/dist/helpers/typeChecks.d.ts +4 -4
  14. package/dist/marks/Area.svelte.d.ts +5 -4
  15. package/dist/marks/AreaX.svelte.d.ts +4 -4
  16. package/dist/marks/AreaY.svelte.d.ts +4 -4
  17. package/dist/marks/Arrow.svelte.d.ts +5 -4
  18. package/dist/marks/AxisX.svelte.d.ts +6 -5
  19. package/dist/marks/AxisY.svelte.d.ts +6 -5
  20. package/dist/marks/BarX.svelte.d.ts +4 -4
  21. package/dist/marks/BarY.svelte.d.ts +5 -4
  22. package/dist/marks/BollingerX.svelte.d.ts +2 -77
  23. package/dist/marks/BollingerY.svelte.d.ts +2 -77
  24. package/dist/marks/BoxY.svelte.d.ts +1 -64
  25. package/dist/marks/Brush.svelte.d.ts +1 -64
  26. package/dist/marks/Cell.svelte.d.ts +5 -4
  27. package/dist/marks/CellX.svelte.d.ts +30 -30
  28. package/dist/marks/CellY.svelte.d.ts +30 -30
  29. package/dist/marks/CustomMark.svelte.d.ts +2 -85
  30. package/dist/marks/DifferenceY.svelte.d.ts +1 -64
  31. package/dist/marks/Dot.svelte.d.ts +5 -4
  32. package/dist/marks/DotX.svelte.d.ts +5 -5
  33. package/dist/marks/DotY.svelte.d.ts +5 -5
  34. package/dist/marks/Frame.svelte.d.ts +6 -5
  35. package/dist/marks/Geo.svelte.d.ts +5 -4
  36. package/dist/marks/GridX.svelte.d.ts +5 -4
  37. package/dist/marks/GridY.svelte.d.ts +5 -4
  38. package/dist/marks/Image.svelte.d.ts +5 -4
  39. package/dist/marks/Line.svelte.d.ts +4 -4
  40. package/dist/marks/LineX.svelte.d.ts +6 -6
  41. package/dist/marks/LineY.svelte.d.ts +6 -6
  42. package/dist/marks/Link.svelte.d.ts +5 -4
  43. package/dist/marks/Rect.svelte.d.ts +5 -4
  44. package/dist/marks/RuleX.svelte.d.ts +5 -4
  45. package/dist/marks/RuleY.svelte.d.ts +5 -4
  46. package/dist/marks/Spike.svelte.d.ts +5 -5
  47. package/dist/marks/Text.svelte.d.ts +9 -8
  48. package/dist/marks/TickX.svelte.d.ts +5 -4
  49. package/dist/marks/TickY.svelte.d.ts +5 -4
  50. package/dist/marks/Trail.svelte.d.ts +1 -64
  51. package/dist/marks/Vector.svelte.d.ts +5 -4
  52. package/dist/marks/WaffleX.svelte.d.ts +2 -86
  53. package/dist/marks/WaffleY.svelte.d.ts +5 -4
  54. package/dist/marks/helpers/Box.svelte.d.ts +1 -64
  55. package/dist/marks/helpers/MarkerPath.svelte.d.ts +2 -107
  56. package/dist/transforms/centroid.d.ts +1 -4
  57. package/dist/transforms/interval.d.ts +8 -8
  58. package/dist/transforms/recordize.d.ts +4 -7
  59. package/dist/transforms/rename.d.ts +1 -1
  60. package/dist/transforms/select.d.ts +28 -28
  61. package/dist/transforms/sort.d.ts +14 -19
  62. package/dist/transforms/stack.d.ts +12 -12
  63. package/dist/transforms/window.d.ts +2 -136
  64. package/package.json +13 -5
@@ -1,90 +1,6 @@
1
- import type { DataRecord, ChannelAccessor, LinkableMarkProps } from '../types';
2
- import { type WaffleOptions } from './helpers/waffle';
3
- import type { StackOptions } from '../transforms/stack';
1
+ import type { DataRecord } from '../types';
4
2
  declare function $$render<Datum extends DataRecord>(): {
5
- props: Partial<{
6
- filter: import("../types").ConstantAccessor<boolean, Datum>;
7
- facet: "auto" | "include" | "exclude";
8
- fx: ChannelAccessor<Datum>;
9
- fy: ChannelAccessor<Datum>;
10
- dx: import("../types").ConstantAccessor<number, Datum>;
11
- dy: import("../types").ConstantAccessor<number, Datum>;
12
- dodgeX: import("../transforms/dodge").DodgeXOptions;
13
- dodgeY: import("../transforms/dodge").DodgeYOptions;
14
- fill: ChannelAccessor<Datum>;
15
- fillOpacity: import("../types").ConstantAccessor<number, Datum>;
16
- sort: ((a: import("../types").RawValue, b: import("../types").RawValue) => number) | {
17
- channel: string;
18
- order?: "ascending" | "descending";
19
- } | import("../types").ConstantAccessor<import("../types").RawValue, Datum>;
20
- stroke: ChannelAccessor<Datum>;
21
- strokeWidth: import("../types").ConstantAccessor<number, Datum>;
22
- strokeOpacity: import("../types").ConstantAccessor<number, Datum>;
23
- strokeLinejoin: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
24
- strokeLinecap: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
25
- strokeMiterlimit: import("../types").ConstantAccessor<number, Datum>;
26
- opacity: ChannelAccessor<Datum>;
27
- strokeDasharray: import("../types").ConstantAccessor<string, Datum>;
28
- strokeDashoffset: import("../types").ConstantAccessor<number, Datum>;
29
- mixBlendMode: import("../types").ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
30
- clipPath: string;
31
- mask: string;
32
- imageFilter: import("../types").ConstantAccessor<string, Datum>;
33
- shapeRendering: import("../types").ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
34
- paintOrder: import("../types").ConstantAccessor<string, Datum>;
35
- onclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
36
- ondblclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
37
- onmouseup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
38
- onmousedown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
39
- onmouseenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
40
- onmousemove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
41
- onmouseleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
42
- onmouseout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
43
- onmouseover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
44
- onpointercancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
45
- onpointerdown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
46
- onpointerup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
47
- onpointerenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
48
- onpointerleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
49
- onpointermove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
50
- onpointerover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
51
- onpointerout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
52
- ondrag: import("svelte/elements").MouseEventHandler<SVGPathElement>;
53
- ondrop: import("svelte/elements").MouseEventHandler<SVGPathElement>;
54
- ondragstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
55
- ondragenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
56
- ondragleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
57
- ondragover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
58
- ondragend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
59
- ontouchstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
60
- ontouchmove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
61
- ontouchend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
62
- ontouchcancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
63
- oncontextmenu: import("svelte/elements").MouseEventHandler<SVGPathElement>;
64
- onwheel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
65
- class: string;
66
- style: string;
67
- cursor: import("../types").ConstantAccessor<import("csstype").Property.Cursor, Datum>;
68
- }> & LinkableMarkProps<Datum> & WaffleOptions<Datum> & {
69
- data?: Datum[];
70
- /**
71
- * bound to a quantitative scale
72
- */
73
- x?: ChannelAccessor<Datum>;
74
- /**
75
- * bound to a quantitative scale
76
- */
77
- x1?: ChannelAccessor<Datum>;
78
- /**
79
- * bound to a quantitative scale
80
- */
81
- x2?: ChannelAccessor<Datum>;
82
- /**
83
- * bound to a band scale
84
- */
85
- y?: ChannelAccessor<Datum>;
86
- stack?: StackOptions;
87
- };
3
+ props: any;
88
4
  exports: {};
89
5
  bindings: "";
90
6
  slots: {};
@@ -1,5 +1,6 @@
1
1
  import type { DataRecord, ChannelAccessor, LinkableMarkProps } from '../types';
2
2
  import { type WaffleOptions } from './helpers/waffle';
3
+ import { resolveProp } from '../helpers/resolve';
3
4
  declare function $$render<Datum extends DataRecord>(): {
4
5
  props: Partial<{
5
6
  filter: import("../types").ConstantAccessor<boolean, Datum>;
@@ -8,14 +9,14 @@ declare function $$render<Datum extends DataRecord>(): {
8
9
  fy: ChannelAccessor<Datum>;
9
10
  dx: import("../types").ConstantAccessor<number, Datum>;
10
11
  dy: import("../types").ConstantAccessor<number, Datum>;
11
- dodgeX: import("../transforms/dodge").DodgeXOptions;
12
- dodgeY: import("../transforms/dodge").DodgeYOptions;
12
+ dodgeX: resolveProp;
13
+ dodgeY: resolveProp;
13
14
  fill: ChannelAccessor<Datum>;
14
15
  fillOpacity: import("../types").ConstantAccessor<number, Datum>;
15
- sort: ((a: import("../types").RawValue, b: import("../types").RawValue) => number) | {
16
+ sort: {
16
17
  channel: string;
17
18
  order?: "ascending" | "descending";
18
- } | import("../types").ConstantAccessor<import("../types").RawValue, Datum>;
19
+ } | ((a: import("../types").RawValue, b: import("../types").RawValue) => number) | import("../types").ConstantAccessor<import("../types").RawValue, Datum>;
19
20
  stroke: ChannelAccessor<Datum>;
20
21
  strokeWidth: import("../types").ConstantAccessor<number, Datum>;
21
22
  strokeOpacity: import("../types").ConstantAccessor<number, Datum>;
@@ -1,69 +1,6 @@
1
1
  import type { ChannelAccessor, DataRecord, RawValue } from '../../types';
2
2
  declare function $$render<Datum extends DataRecord>(): {
3
- props: Pick<Partial<{
4
- filter: import("../../types").ConstantAccessor<boolean, Datum>;
5
- facet: "auto" | "include" | "exclude";
6
- fx: ChannelAccessor<Datum>;
7
- fy: ChannelAccessor<Datum>;
8
- dx: import("../../types").ConstantAccessor<number, Datum>;
9
- dy: import("../../types").ConstantAccessor<number, Datum>;
10
- dodgeX: import("../../transforms/dodge").DodgeXOptions;
11
- dodgeY: import("../../transforms/dodge").DodgeYOptions;
12
- fill: ChannelAccessor<Datum>;
13
- fillOpacity: import("../../types").ConstantAccessor<number, Datum>;
14
- sort: ((a: RawValue, b: RawValue) => number) | {
15
- channel: string;
16
- order?: "ascending" | "descending";
17
- } | import("../../types").ConstantAccessor<RawValue, Datum>;
18
- stroke: ChannelAccessor<Datum>;
19
- strokeWidth: import("../../types").ConstantAccessor<number, Datum>;
20
- strokeOpacity: import("../../types").ConstantAccessor<number, Datum>;
21
- strokeLinejoin: import("../../types").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
22
- strokeLinecap: import("../../types").ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
23
- strokeMiterlimit: import("../../types").ConstantAccessor<number, Datum>;
24
- opacity: ChannelAccessor<Datum>;
25
- strokeDasharray: import("../../types").ConstantAccessor<string, Datum>;
26
- strokeDashoffset: import("../../types").ConstantAccessor<number, Datum>;
27
- mixBlendMode: import("../../types").ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
28
- clipPath: string;
29
- mask: string;
30
- imageFilter: import("../../types").ConstantAccessor<string, Datum>;
31
- shapeRendering: import("../../types").ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
32
- paintOrder: import("../../types").ConstantAccessor<string, Datum>;
33
- onclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
34
- ondblclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
35
- onmouseup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
36
- onmousedown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
37
- onmouseenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
38
- onmousemove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
39
- onmouseleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
40
- onmouseout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
41
- onmouseover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
42
- onpointercancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
43
- onpointerdown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
44
- onpointerup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
45
- onpointerenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
46
- onpointerleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
47
- onpointermove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
48
- onpointerover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
49
- onpointerout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
50
- ondrag: import("svelte/elements").MouseEventHandler<SVGPathElement>;
51
- ondrop: import("svelte/elements").MouseEventHandler<SVGPathElement>;
52
- ondragstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
53
- ondragenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
54
- ondragleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
55
- ondragover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
56
- ondragend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
57
- ontouchstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
58
- ontouchmove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
59
- ontouchend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
60
- ontouchcancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
61
- oncontextmenu: import("svelte/elements").MouseEventHandler<SVGPathElement>;
62
- onwheel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
63
- class: string;
64
- style: string;
65
- cursor: import("../../types").ConstantAccessor<import("csstype").Property.Cursor, Datum>;
66
- }>, "fx" | "fy" | "fill" | "stroke" | "class"> & {
3
+ props: Pick<BaseMarkProps<Datum>, "fill" | "stroke" | "fx" | "fy" | "class"> & {
67
4
  data: Datum[];
68
5
  x: ChannelAccessor;
69
6
  y: ChannelAccessor;
@@ -1,111 +1,6 @@
1
- import { type MarkerShape } from './Marker.svelte';
2
- import type { BaseMarkProps, ConstantAccessor, DataRecord, Mark, PlotScales } from '../../types/index.js';
1
+ import type { DataRecord } from '../../types/index.js';
3
2
  declare function $$render<Datum extends DataRecord>(): {
4
- props: Partial<{
5
- filter: ConstantAccessor<boolean, Datum>;
6
- facet: "auto" | "include" | "exclude";
7
- fx: import("../../types/index.js").ChannelAccessor<Datum>;
8
- fy: import("../../types/index.js").ChannelAccessor<Datum>;
9
- dx: ConstantAccessor<number, Datum>;
10
- dy: ConstantAccessor<number, Datum>;
11
- dodgeX: import("../../transforms/dodge").DodgeXOptions;
12
- dodgeY: import("../../transforms/dodge").DodgeYOptions;
13
- fill: import("../../types/index.js").ChannelAccessor<Datum>;
14
- fillOpacity: ConstantAccessor<number, Datum>;
15
- sort: ((a: import("../../types/index.js").RawValue, b: import("../../types/index.js").RawValue) => number) | {
16
- channel: string;
17
- order?: "ascending" | "descending";
18
- } | ConstantAccessor<import("../../types/index.js").RawValue, Datum>;
19
- stroke: import("../../types/index.js").ChannelAccessor<Datum>;
20
- strokeWidth: ConstantAccessor<number, Datum>;
21
- strokeOpacity: ConstantAccessor<number, Datum>;
22
- strokeLinejoin: ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
23
- strokeLinecap: ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
24
- strokeMiterlimit: ConstantAccessor<number, Datum>;
25
- opacity: import("../../types/index.js").ChannelAccessor<Datum>;
26
- strokeDasharray: ConstantAccessor<string, Datum>;
27
- strokeDashoffset: ConstantAccessor<number, Datum>;
28
- mixBlendMode: ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
29
- clipPath: string;
30
- mask: string;
31
- imageFilter: ConstantAccessor<string, Datum>;
32
- shapeRendering: ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
33
- paintOrder: ConstantAccessor<string, Datum>;
34
- onclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
35
- ondblclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
36
- onmouseup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
37
- onmousedown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
38
- onmouseenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
39
- onmousemove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
40
- onmouseleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
41
- onmouseout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
42
- onmouseover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
43
- onpointercancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
44
- onpointerdown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
45
- onpointerup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
46
- onpointerenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
47
- onpointerleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
48
- onpointermove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
49
- onpointerover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
50
- onpointerout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
51
- ondrag: import("svelte/elements").MouseEventHandler<SVGPathElement>;
52
- ondrop: import("svelte/elements").MouseEventHandler<SVGPathElement>;
53
- ondragstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
54
- ondragenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
55
- ondragleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
56
- ondragover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
57
- ondragend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
58
- ontouchstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
59
- ontouchmove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
60
- ontouchend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
61
- ontouchcancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
62
- oncontextmenu: import("svelte/elements").MouseEventHandler<SVGPathElement>;
63
- onwheel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
64
- class: string;
65
- style: string;
66
- cursor: ConstantAccessor<import("csstype").Property.Cursor, Datum>;
67
- }> & {
68
- /**
69
- * the datum associated with this path, usually the first
70
- * element of the data array group
71
- */
72
- datum: Datum;
73
- /**
74
- * the marker shape to use at the start of the path, defaults to
75
- * circle
76
- */
77
- markerStart?: boolean | MarkerShape;
78
- /**
79
- * the marker shape to use at the middle of the path, defaults to circle
80
- */
81
- markerMid?: boolean | MarkerShape;
82
- /**
83
- * the marker shape to use at the end of the path, defaults to circle
84
- */
85
- markerEnd?: boolean | MarkerShape;
86
- /**
87
- * shorthand for setting all markers
88
- */
89
- marker?: boolean | MarkerShape;
90
- /**
91
- * scale factor for marker size, relative to the line stroke width
92
- */
93
- markerScale?: ConstantAccessor<number>;
94
- /**
95
- * path string
96
- */
97
- d: string;
98
- style: string;
99
- startOffset: string;
100
- textStyle: string;
101
- textStyleClass?: string | null;
102
- text: string;
103
- transform: string;
104
- color: string;
105
- strokeWidth: ConstantAccessor<number>;
106
- mark: Mark<BaseMarkProps<Datum>>;
107
- scales: PlotScales;
108
- };
3
+ props: any;
109
4
  exports: {};
110
5
  bindings: "";
111
6
  slots: {};
@@ -1,8 +1,5 @@
1
1
  import type { DataRecord, TransformArg } from '../types/index.js';
2
- declare const CENTROID: unique symbol;
3
- type WithCentroid<T> = T & {
4
- [CENTROID]: [number, number];
5
- };
2
+ type WithCentroid<T> = T & {};
6
3
  export declare function geoCentroid<Datum extends DataRecord>({ data, ...options }: {
7
4
  data: Datum[];
8
5
  } & TransformArg<Datum>): TransformArg<WithCentroid<Datum>>;
@@ -9,14 +9,14 @@ export declare function intervalX<T>(args: TransformArg<T>): {
9
9
  fy?: import("../types/channel.js").ChannelAccessor<T>;
10
10
  dx?: import("../types/index.js").ConstantAccessor<number, T>;
11
11
  dy?: import("../types/index.js").ConstantAccessor<number, T>;
12
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
13
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
12
+ dodgeX?: DodgeXOptions;
13
+ dodgeY?: DodgeYOptions;
14
14
  fill?: import("../types/channel.js").ChannelAccessor<T>;
15
15
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
16
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
16
+ sort?: {
17
17
  channel: string;
18
18
  order?: "ascending" | "descending";
19
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
19
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
20
20
  stroke?: import("../types/channel.js").ChannelAccessor<T>;
21
21
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
22
22
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
@@ -77,14 +77,14 @@ export declare function intervalY<T>(args: TransformArg<T>): {
77
77
  fy?: import("../types/channel.js").ChannelAccessor<T>;
78
78
  dx?: import("../types/index.js").ConstantAccessor<number, T>;
79
79
  dy?: import("../types/index.js").ConstantAccessor<number, T>;
80
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
81
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
80
+ dodgeX?: DodgeXOptions;
81
+ dodgeY?: DodgeYOptions;
82
82
  fill?: import("../types/channel.js").ChannelAccessor<T>;
83
83
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
84
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
84
+ sort?: {
85
85
  channel: string;
86
86
  order?: "ascending" | "descending";
87
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
87
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
88
88
  stroke?: import("../types/channel.js").ChannelAccessor<T>;
89
89
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
90
90
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
@@ -1,11 +1,8 @@
1
1
  import type { TransformArgsRow, TransformArgsRecord, DataRecord, DataRow } from '../types/index.js';
2
- import { INDEX } from '../constants';
3
- export declare const X: unique symbol;
4
- export declare const Y: unique symbol;
5
- export declare const RAW_VALUE: unique symbol;
6
- export declare function indexData<T extends object>(data: T[]): (T & {
7
- [INDEX]: number;
8
- })[];
2
+ export declare const X: any;
3
+ export declare const Y: any;
4
+ export declare const RAW_VALUE: any;
5
+ export declare function indexData<T extends object>(data: T[]): (T & {})[];
9
6
  export declare function recordizeX<T>({ data, ...channels }: TransformArgsRow<DataRow>, { withIndex }?: {
10
7
  withIndex: boolean;
11
8
  }): TransformArgsRecord<DataRecord>;
@@ -2,7 +2,7 @@ import type { DataRecord } from '../types/index.js';
2
2
  import type { ScaledChannelName, TransformArg } from '../types/index.js';
3
3
  type RenameChannelsOptions = Partial<Record<ScaledChannelName, ScaledChannelName>>;
4
4
  type ReplaceChannelsOptions = Partial<Record<ScaledChannelName, ScaledChannelName[]>>;
5
- export declare const RENAME: unique symbol;
5
+ export declare const RENAME: any;
6
6
  /**
7
7
  * renames a channel without modifying the data
8
8
  */
@@ -12,14 +12,14 @@ export declare function select({ data, ...channels }: TransformArg<DataRecord>,
12
12
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
13
13
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
14
14
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
15
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
16
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
15
+ dodgeX?: DodgeXOptions;
16
+ dodgeY?: DodgeYOptions;
17
17
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
18
18
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
19
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
19
+ sort?: {
20
20
  channel: string;
21
21
  order?: "ascending" | "descending";
22
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
22
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
23
23
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
24
24
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
25
25
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
@@ -80,14 +80,14 @@ export declare function selectFirst(args: TransformArg<DataRecord>): {
80
80
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
81
81
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
82
82
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
83
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
84
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
83
+ dodgeX?: DodgeXOptions;
84
+ dodgeY?: DodgeYOptions;
85
85
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
86
86
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
87
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
87
+ sort?: {
88
88
  channel: string;
89
89
  order?: "ascending" | "descending";
90
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
90
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
91
91
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
92
92
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
93
93
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
@@ -148,14 +148,14 @@ export declare function selectLast(args: TransformArg<DataRecord>): {
148
148
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
149
149
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
150
150
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
151
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
152
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
151
+ dodgeX?: DodgeXOptions;
152
+ dodgeY?: DodgeYOptions;
153
153
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
154
154
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
155
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
155
+ sort?: {
156
156
  channel: string;
157
157
  order?: "ascending" | "descending";
158
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
158
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
159
159
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
160
160
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
161
161
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
@@ -213,14 +213,14 @@ export declare function selectMinX(args: TransformArg<DataRecord>): {
213
213
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
214
214
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
215
215
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
216
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
217
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
216
+ dodgeX?: DodgeXOptions;
217
+ dodgeY?: DodgeYOptions;
218
218
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
219
219
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
220
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
220
+ sort?: {
221
221
  channel: string;
222
222
  order?: "ascending" | "descending";
223
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
223
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
224
224
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
225
225
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
226
226
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
@@ -278,14 +278,14 @@ export declare function selectMaxX(args: TransformArg<DataRecord>): {
278
278
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
279
279
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
280
280
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
281
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
282
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
281
+ dodgeX?: DodgeXOptions;
282
+ dodgeY?: DodgeYOptions;
283
283
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
284
284
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
285
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
285
+ sort?: {
286
286
  channel: string;
287
287
  order?: "ascending" | "descending";
288
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
288
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
289
289
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
290
290
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
291
291
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
@@ -343,14 +343,14 @@ export declare function selectMinY(args: TransformArg<DataRecord>): {
343
343
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
344
344
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
345
345
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
346
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
347
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
346
+ dodgeX?: DodgeXOptions;
347
+ dodgeY?: DodgeYOptions;
348
348
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
349
349
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
350
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
350
+ sort?: {
351
351
  channel: string;
352
352
  order?: "ascending" | "descending";
353
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
353
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
354
354
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
355
355
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
356
356
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
@@ -408,14 +408,14 @@ export declare function selectMaxY(args: TransformArg<DataRecord>): {
408
408
  fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
409
409
  dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
410
410
  dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
411
- dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
412
- dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
411
+ dodgeX?: DodgeXOptions;
412
+ dodgeY?: DodgeYOptions;
413
413
  fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
414
414
  fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
415
- sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
415
+ sort?: {
416
416
  channel: string;
417
417
  order?: "ascending" | "descending";
418
- } | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
418
+ } | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
419
419
  stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
420
420
  strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
421
421
  strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;