svelteplot 0.8.1-pr-302.0 → 0.9.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 (61) hide show
  1. package/dist/Mark.svelte.d.ts +4 -5
  2. package/dist/constants.d.ts +1 -1
  3. package/dist/helpers/colors.d.ts +12 -9
  4. package/dist/helpers/facets.d.ts +1 -1
  5. package/dist/helpers/getBaseStyles.d.ts +4 -2
  6. package/dist/helpers/index.d.ts +3 -3
  7. package/dist/helpers/reduce.d.ts +1 -1
  8. package/dist/helpers/scales.d.ts +7 -7
  9. package/dist/helpers/symbols.d.ts +2 -2
  10. package/dist/helpers/time.d.ts +3 -3
  11. package/dist/helpers/typeChecks.d.ts +8 -8
  12. package/dist/marks/Area.svelte.d.ts +4 -5
  13. package/dist/marks/AreaX.svelte.d.ts +5 -6
  14. package/dist/marks/Arrow.svelte.d.ts +4 -5
  15. package/dist/marks/AxisX.svelte.d.ts +5 -6
  16. package/dist/marks/AxisY.svelte.d.ts +5 -6
  17. package/dist/marks/BarX.svelte.d.ts +4 -5
  18. package/dist/marks/BarY.svelte.d.ts +4 -5
  19. package/dist/marks/BollingerX.svelte.d.ts +77 -2
  20. package/dist/marks/BollingerY.svelte.d.ts +77 -2
  21. package/dist/marks/BoxY.svelte.d.ts +64 -1
  22. package/dist/marks/Brush.svelte.d.ts +64 -1
  23. package/dist/marks/Cell.svelte.d.ts +4 -5
  24. package/dist/marks/CustomMark.svelte.d.ts +85 -2
  25. package/dist/marks/DifferenceY.svelte.d.ts +64 -1
  26. package/dist/marks/Dot.svelte.d.ts +4 -5
  27. package/dist/marks/DotX.svelte.d.ts +5 -6
  28. package/dist/marks/DotY.svelte.d.ts +5 -6
  29. package/dist/marks/Frame.svelte.d.ts +5 -6
  30. package/dist/marks/Geo.svelte.d.ts +4 -5
  31. package/dist/marks/GridX.svelte.d.ts +4 -5
  32. package/dist/marks/GridY.svelte.d.ts +4 -5
  33. package/dist/marks/Image.svelte.d.ts +76 -2
  34. package/dist/marks/Line.svelte.d.ts +4 -5
  35. package/dist/marks/LineX.svelte.d.ts +6 -7
  36. package/dist/marks/LineY.svelte.d.ts +6 -7
  37. package/dist/marks/Link.svelte.d.ts +4 -5
  38. package/dist/marks/Rect.svelte.d.ts +4 -5
  39. package/dist/marks/RuleX.svelte.d.ts +4 -5
  40. package/dist/marks/RuleY.svelte.d.ts +4 -5
  41. package/dist/marks/Spike.svelte.d.ts +5 -6
  42. package/dist/marks/Text.svelte.d.ts +4 -5
  43. package/dist/marks/TickX.svelte.d.ts +4 -5
  44. package/dist/marks/TickY.svelte.d.ts +4 -5
  45. package/dist/marks/Trail.svelte.d.ts +64 -1
  46. package/dist/marks/Vector.svelte.d.ts +4 -5
  47. package/dist/marks/WaffleX.svelte.d.ts +86 -2
  48. package/dist/marks/WaffleY.svelte.d.ts +84 -2
  49. package/dist/marks/helpers/Box.svelte.d.ts +64 -1
  50. package/dist/marks/helpers/MarkerPath.svelte.d.ts +103 -2
  51. package/dist/transforms/bollinger.d.ts +70 -1
  52. package/dist/transforms/centroid.d.ts +4 -1
  53. package/dist/transforms/group.d.ts +12 -4
  54. package/dist/transforms/interval.d.ts +130 -2
  55. package/dist/transforms/recordize.d.ts +7 -4
  56. package/dist/transforms/select.d.ts +455 -7
  57. package/dist/transforms/sort.d.ts +257 -5
  58. package/dist/transforms/stack.d.ts +23 -3
  59. package/dist/transforms/window.d.ts +136 -2
  60. package/package.json +1 -1
  61. package/dist/transforms/normalize.d.ts +0 -23
@@ -1,6 +1,88 @@
1
- import type { DataRecord } from '../types';
1
+ import type { DataRecord, ChannelAccessor, LinkableMarkProps } from '../types';
2
+ import { type WaffleOptions } from './helpers/waffle';
2
3
  declare function $$render<Datum extends DataRecord>(): {
3
- props: any;
4
+ props: Partial<{
5
+ filter: import("../types").ConstantAccessor<boolean, Datum>;
6
+ facet: "auto" | "include" | "exclude";
7
+ fx: ChannelAccessor<Datum>;
8
+ fy: ChannelAccessor<Datum>;
9
+ dx: import("../types").ConstantAccessor<number, Datum>;
10
+ dy: import("../types").ConstantAccessor<number, Datum>;
11
+ dodgeX: import("../transforms/dodge").DodgeXOptions;
12
+ dodgeY: import("../transforms/dodge").DodgeYOptions;
13
+ fill: ChannelAccessor<Datum>;
14
+ fillOpacity: import("../types").ConstantAccessor<number, Datum>;
15
+ sort: ((a: import("../types").RawValue, b: import("../types").RawValue) => number) | {
16
+ channel: string;
17
+ order?: "ascending" | "descending";
18
+ } | import("../types").ConstantAccessor<import("../types").RawValue, Datum>;
19
+ stroke: ChannelAccessor<Datum>;
20
+ strokeWidth: import("../types").ConstantAccessor<number, Datum>;
21
+ strokeOpacity: import("../types").ConstantAccessor<number, Datum>;
22
+ strokeLinejoin: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
23
+ strokeLinecap: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
24
+ strokeMiterlimit: import("../types").ConstantAccessor<number, Datum>;
25
+ opacity: ChannelAccessor<Datum>;
26
+ strokeDasharray: import("../types").ConstantAccessor<string, Datum>;
27
+ strokeDashoffset: import("../types").ConstantAccessor<number, Datum>;
28
+ mixBlendMode: import("../types").ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
29
+ clipPath: string;
30
+ mask: string;
31
+ imageFilter: import("../types").ConstantAccessor<string, Datum>;
32
+ shapeRendering: import("../types").ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
33
+ paintOrder: import("../types").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: import("../types").ConstantAccessor<import("csstype").Property.Cursor, Datum>;
67
+ }> & LinkableMarkProps<Datum> & WaffleOptions<Datum> & {
68
+ data?: Datum[];
69
+ /**
70
+ * bound to a babd scale
71
+ */
72
+ x?: ChannelAccessor<Datum>;
73
+ /**
74
+ * bound to a quantitative scale
75
+ */
76
+ y?: ChannelAccessor<Datum>;
77
+ /**
78
+ * bound to a quantitative scale
79
+ */
80
+ y1?: ChannelAccessor<Datum>;
81
+ /**
82
+ * bound to a quantitative scale
83
+ */
84
+ y2?: ChannelAccessor<Datum>;
85
+ };
4
86
  exports: {};
5
87
  bindings: "";
6
88
  slots: {};
@@ -1,6 +1,69 @@
1
1
  import type { ChannelAccessor, DataRecord, RawValue } from '../../types';
2
2
  declare function $$render<Datum extends DataRecord>(): {
3
- props: Pick<BaseMarkProps<Datum>, "fill" | "stroke" | "fx" | "fy" | "class"> & {
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"> & {
4
67
  data: Datum[];
5
68
  x: ChannelAccessor;
6
69
  y: ChannelAccessor;
@@ -1,6 +1,107 @@
1
- import type { DataRecord } from '../../types/index.js';
1
+ import { type MarkerShape } from './Marker.svelte';
2
+ import type { BaseMarkProps, ConstantAccessor, DataRecord, Mark, PlotScales } from '../../types/index.js';
2
3
  declare function $$render<Datum extends DataRecord>(): {
3
- props: any;
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
+ * path string
92
+ */
93
+ d: string;
94
+ style: string;
95
+ startOffset: string;
96
+ textStyle: string;
97
+ textStyleClass?: string | null;
98
+ text: string;
99
+ transform: string;
100
+ color: string;
101
+ strokeWidth: ConstantAccessor<number>;
102
+ mark: Mark<BaseMarkProps<Datum>>;
103
+ scales: PlotScales;
104
+ };
4
105
  exports: {};
5
106
  bindings: "";
6
107
  slots: {};
@@ -11,4 +11,73 @@ export type BollingerOptions = {
11
11
  };
12
12
  export declare function bollingerX(args: TransformArg<DataRecord>, options?: BollingerOptions): TransformArg<DataRecord>;
13
13
  export declare function bollingerY(args: TransformArg<DataRecord>, options?: BollingerOptions): TransformArg<DataRecord>;
14
- export declare function bollingerDim(dim: 'x' | 'y', { data, ...channels }: TransformArg<DataRecord>, options?: BollingerOptions): any;
14
+ export declare function bollingerDim(dim: 'x' | 'y', { data, ...channels }: TransformArg<DataRecord>, options?: BollingerOptions): {
15
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
16
+ facet?: "auto" | "include" | "exclude" | undefined;
17
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
18
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
19
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
20
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
21
+ dodgeX?: import("./dodge").DodgeXOptions | undefined;
22
+ dodgeY?: import("./dodge").DodgeYOptions | undefined;
23
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
24
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
25
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
26
+ channel: string;
27
+ order?: "ascending" | "descending";
28
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
29
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
30
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
31
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
32
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
33
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
34
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
35
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
36
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
37
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
38
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
39
+ clipPath?: string | undefined;
40
+ mask?: string | undefined;
41
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
42
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
43
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
44
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
45
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
46
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
47
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
48
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
49
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
50
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
51
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
52
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
53
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
54
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
55
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
56
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
57
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
58
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
59
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
60
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
61
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
62
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
63
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
64
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
65
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
66
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
67
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
68
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
69
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
70
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
71
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
72
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
73
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
74
+ class?: string | undefined;
75
+ style?: string | undefined;
76
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
77
+ data: {
78
+ __x: import("../types/index.js").RawValue;
79
+ __lo: number;
80
+ __avg: number;
81
+ __hi: number;
82
+ }[];
83
+ };
@@ -1,5 +1,8 @@
1
1
  import type { DataRecord, TransformArg } from '../types/index.js';
2
- type WithCentroid<T> = T & {};
2
+ declare const CENTROID: unique symbol;
3
+ type WithCentroid<T> = T & {
4
+ [CENTROID]: [number, number];
5
+ };
3
6
  export declare function geoCentroid<Datum extends DataRecord>({ data, ...options }: {
4
7
  data: Datum[];
5
8
  } & TransformArg<Datum>): TransformArg<WithCentroid<Datum>>;
@@ -38,21 +38,29 @@ type GroupZOptions = GroupXOptions | GroupYOptions;
38
38
  * groups the dataset by x and y channel and optionally reduces the group items
39
39
  * to output channels fill, stroke, r, opacity, fillOpacity, or strokeOpacity
40
40
  */
41
- export declare function group({ data, ...channels }: TransformArg<T, DataRecord>, options?: GroupXOptions): any;
41
+ export declare function group({ data, ...channels }: TransformArg<T, DataRecord>, options?: GroupXOptions): {
42
+ data: Record<string | symbol, RawValue>[];
43
+ };
42
44
  /**
43
45
  * groups the dataset by the x channel and optionally reduces the group items
44
46
  * to output channels y, y1, y2, fill, stroke, r, opacity, fillOpacity, or strokeOpacity
45
47
  */
46
- export declare function groupX(input: TransformArg<T, DataRecord>, options?: GroupXOptions): any;
48
+ export declare function groupX(input: TransformArg<T, DataRecord>, options?: GroupXOptions): {
49
+ data: Record<string | symbol, RawValue>[];
50
+ };
47
51
  /**
48
52
  * groups the dataset by the y channel and optionally reduces the group items
49
53
  * to output channels x, x1, x2, fill, stroke, r, opacity, fillOpacity, or strokeOpacity
50
54
  */
51
- export declare function groupY(input: TransformArg<T, DataRecord>, options?: GroupYOptions): any;
55
+ export declare function groupY(input: TransformArg<T, DataRecord>, options?: GroupYOptions): {
56
+ data: Record<string | symbol, RawValue>[];
57
+ };
52
58
  /**
53
59
  * groups the dataset by the z channel and optionally reduces the group items
54
60
  * to output channels x, x1, x2, y, y1, y2, fill, stroke, r, opacity, fillOpacity,
55
61
  * or strokeOpacity
56
62
  */
57
- export declare function groupZ(input: TransformArg<T, DataRecord>, options?: GroupZOptions): any;
63
+ export declare function groupZ(input: TransformArg<T, DataRecord>, options?: GroupZOptions): {
64
+ data: Record<string | symbol, RawValue>[];
65
+ };
58
66
  export {};
@@ -1,7 +1,135 @@
1
1
  import type { PlotState, TransformArg } from '../types/index.js';
2
2
  export declare function intervalX<T>(args: TransformArg<T>, { plot }: {
3
3
  plot: PlotState;
4
- }): any;
4
+ }): {
5
+ filter?: import("../types/index.js").ConstantAccessor<boolean, T>;
6
+ facet?: "auto" | "include" | "exclude" | undefined;
7
+ fx?: import("../types/index.js").ChannelAccessor<T>;
8
+ fy?: import("../types/index.js").ChannelAccessor<T>;
9
+ dx?: import("../types/index.js").ConstantAccessor<number, T>;
10
+ dy?: import("../types/index.js").ConstantAccessor<number, T>;
11
+ dodgeX?: import("./dodge").DodgeXOptions | undefined;
12
+ dodgeY?: import("./dodge").DodgeYOptions | undefined;
13
+ fill?: import("../types/index.js").ChannelAccessor<T>;
14
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
15
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
16
+ channel: string;
17
+ order?: "ascending" | "descending";
18
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, T>;
19
+ stroke?: import("../types/index.js").ChannelAccessor<T>;
20
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
21
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
22
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, T>;
23
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, T>;
24
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, T>;
25
+ opacity?: import("../types/index.js").ChannelAccessor<T>;
26
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, T>;
27
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, T>;
28
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, T>;
29
+ clipPath?: string | undefined;
30
+ mask?: string | undefined;
31
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, T>;
32
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, T>;
33
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, T>;
34
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
35
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
36
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
37
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
38
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
39
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
40
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
41
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
42
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
43
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
44
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
45
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
46
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
47
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
48
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
49
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
50
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
51
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
52
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
53
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
54
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
55
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
56
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
57
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
58
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
59
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
60
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
61
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
62
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
63
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
64
+ class?: string | undefined;
65
+ style?: string | undefined;
66
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, T>;
67
+ data: T[];
68
+ };
5
69
  export declare function intervalY<T>(args: TransformArg<T>, { plot }: {
6
70
  plot: PlotState;
7
- }): any;
71
+ }): {
72
+ filter?: import("../types/index.js").ConstantAccessor<boolean, T>;
73
+ facet?: "auto" | "include" | "exclude" | undefined;
74
+ fx?: import("../types/index.js").ChannelAccessor<T>;
75
+ fy?: import("../types/index.js").ChannelAccessor<T>;
76
+ dx?: import("../types/index.js").ConstantAccessor<number, T>;
77
+ dy?: import("../types/index.js").ConstantAccessor<number, T>;
78
+ dodgeX?: import("./dodge").DodgeXOptions | undefined;
79
+ dodgeY?: import("./dodge").DodgeYOptions | undefined;
80
+ fill?: import("../types/index.js").ChannelAccessor<T>;
81
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
82
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
83
+ channel: string;
84
+ order?: "ascending" | "descending";
85
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, T>;
86
+ stroke?: import("../types/index.js").ChannelAccessor<T>;
87
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
88
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
89
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, T>;
90
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, T>;
91
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, T>;
92
+ opacity?: import("../types/index.js").ChannelAccessor<T>;
93
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, T>;
94
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, T>;
95
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, T>;
96
+ clipPath?: string | undefined;
97
+ mask?: string | undefined;
98
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, T>;
99
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, T>;
100
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, T>;
101
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
102
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
103
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
104
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
105
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
106
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
107
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
108
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
109
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
110
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
111
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
112
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
113
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
114
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
115
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
116
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
117
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
118
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
119
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
120
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
121
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
122
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
123
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
124
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
125
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
126
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
127
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
128
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
129
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
130
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
131
+ class?: string | undefined;
132
+ style?: string | undefined;
133
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, T>;
134
+ data: T[];
135
+ };
@@ -1,8 +1,11 @@
1
1
  import type { TransformArgsRow, TransformArgsRecord } from '../types/index.js';
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 & {})[];
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
+ })[];
6
9
  export declare function recordizeX<T>({ data, ...channels }: TransformArgsRow<T>, { withIndex }?: {
7
10
  withIndex: boolean;
8
11
  }): TransformArgsRecord<T>;