svelteplot 0.4.9-pr-230.1 → 0.4.10

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 (48) hide show
  1. package/dist/Mark.svelte.d.ts +2 -2
  2. package/dist/helpers/colors.d.ts +1 -1
  3. package/dist/helpers/index.d.ts +2 -2
  4. package/dist/helpers/scales.d.ts +1 -1
  5. package/dist/helpers/typeChecks.d.ts +4 -4
  6. package/dist/marks/Area.svelte.d.ts +2 -2
  7. package/dist/marks/AreaX.svelte.d.ts +3 -4
  8. package/dist/marks/Arrow.svelte.d.ts +2 -2
  9. package/dist/marks/AxisX.svelte.d.ts +3 -3
  10. package/dist/marks/AxisY.svelte.d.ts +3 -3
  11. package/dist/marks/BarX.svelte.d.ts +2 -2
  12. package/dist/marks/BarY.svelte.d.ts +2 -2
  13. package/dist/marks/BollingerX.svelte.d.ts +74 -2
  14. package/dist/marks/BollingerY.svelte.d.ts +74 -2
  15. package/dist/marks/BoxY.svelte.d.ts +66 -6
  16. package/dist/marks/Cell.svelte.d.ts +2 -2
  17. package/dist/marks/CustomMark.svelte.d.ts +81 -2
  18. package/dist/marks/CustomMarkHTML.svelte.d.ts +1 -1
  19. package/dist/marks/DifferenceY.svelte.d.ts +67 -7
  20. package/dist/marks/Dot.svelte.d.ts +2 -2
  21. package/dist/marks/DotX.svelte.d.ts +3 -3
  22. package/dist/marks/DotY.svelte.d.ts +3 -3
  23. package/dist/marks/Geo.svelte.d.ts +2 -2
  24. package/dist/marks/GridX.svelte.d.ts +2 -2
  25. package/dist/marks/GridY.svelte.d.ts +2 -2
  26. package/dist/marks/Line.svelte.d.ts +3 -3
  27. package/dist/marks/LineX.svelte.d.ts +4 -5
  28. package/dist/marks/LineY.svelte.d.ts +4 -5
  29. package/dist/marks/Link.svelte.d.ts +2 -2
  30. package/dist/marks/Rect.svelte.d.ts +2 -2
  31. package/dist/marks/RuleX.svelte.d.ts +2 -2
  32. package/dist/marks/RuleY.svelte.d.ts +2 -2
  33. package/dist/marks/Spike.svelte.d.ts +3 -3
  34. package/dist/marks/Text.svelte.d.ts +4 -4
  35. package/dist/marks/TickX.svelte.d.ts +2 -2
  36. package/dist/marks/TickY.svelte.d.ts +2 -2
  37. package/dist/marks/Vector.svelte.d.ts +2 -2
  38. package/dist/marks/helpers/MarkerPath.svelte.d.ts +160 -2
  39. package/dist/marks/helpers/RectPath.svelte.d.ts +63 -3
  40. package/dist/transforms/bollinger.d.ts +67 -1
  41. package/dist/transforms/group.d.ts +12 -4
  42. package/dist/transforms/interval.d.ts +124 -2
  43. package/dist/transforms/recordize.d.ts +4 -1
  44. package/dist/transforms/select.d.ts +434 -7
  45. package/dist/transforms/sort.d.ts +246 -3
  46. package/dist/transforms/stack.d.ts +23 -3
  47. package/dist/transforms/window.d.ts +130 -2
  48. package/package.json +127 -128
@@ -5,17 +5,444 @@ type AtLeastOne<T, U = {
5
5
  type SelectOptions = 'first' | 'last' | AtLeastOne<{
6
6
  [k in ChannelName]: 'min' | 'max';
7
7
  }>;
8
- export declare function select({ data, ...channels }: TransformArg<DataRecord>, options: SelectOptions): any;
8
+ export declare function select({ data, ...channels }: TransformArg<DataRecord>, options: SelectOptions): {
9
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
10
+ facet?: "auto" | "include" | "exclude" | undefined;
11
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
12
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
13
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
14
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
15
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
16
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
17
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
18
+ channel: string;
19
+ order?: "ascending" | "descending";
20
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
21
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
22
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
23
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
24
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
25
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
26
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
27
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
28
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
29
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
30
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
31
+ clipPath?: string | undefined;
32
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
33
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
34
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
35
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
36
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
37
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
38
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
39
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
40
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
41
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
42
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
43
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
44
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
45
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
46
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
47
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
48
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
49
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
50
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
51
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
52
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
53
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
54
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
55
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
56
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
57
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
58
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
59
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
60
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
61
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
62
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
63
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
64
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
65
+ class?: string | undefined;
66
+ style?: string | undefined;
67
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
68
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
69
+ };
9
70
  /**
10
71
  * Keeps only the first item of each group
11
72
  */
12
- export declare function selectFirst(args: TransformArg<DataRecord>): any;
73
+ export declare function selectFirst(args: TransformArg<DataRecord>): {
74
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
75
+ facet?: "auto" | "include" | "exclude" | undefined;
76
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
77
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
78
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
79
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
80
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
81
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
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, Record<string | symbol, import("../types/index.js").RawValue>>;
86
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
87
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
88
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
89
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
90
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
91
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
92
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
93
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
94
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
95
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
96
+ clipPath?: string | undefined;
97
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
98
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
99
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
100
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
101
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
102
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
103
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
104
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
105
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
106
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
107
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
108
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
109
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
110
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
111
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
112
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
113
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
114
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
115
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
116
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
117
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
118
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
119
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
120
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
121
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
122
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
123
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
124
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
125
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
126
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
127
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
128
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
129
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
130
+ class?: string | undefined;
131
+ style?: string | undefined;
132
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
133
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
134
+ };
13
135
  /**
14
136
  * Keeps only the last item of each group
15
137
  */
16
- export declare function selectLast(args: TransformArg<DataRecord>): any;
17
- export declare function selectMinX(args: TransformArg<DataRecord>): any;
18
- export declare function selectMaxX(args: TransformArg<DataRecord>): any;
19
- export declare function selectMinY(args: TransformArg<DataRecord>): any;
20
- export declare function selectMaxY(args: TransformArg<DataRecord>): any;
138
+ export declare function selectLast(args: TransformArg<DataRecord>): {
139
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
140
+ facet?: "auto" | "include" | "exclude" | undefined;
141
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
142
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
143
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
144
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
145
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
146
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
147
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
148
+ channel: string;
149
+ order?: "ascending" | "descending";
150
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
151
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
152
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
153
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
154
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
155
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
156
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
157
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
158
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
159
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
160
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
161
+ clipPath?: string | undefined;
162
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
163
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
164
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
165
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
166
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
167
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
168
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
169
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
170
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
171
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
172
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
173
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
174
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
175
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
176
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
177
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
178
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
179
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
180
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
181
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
182
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
183
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
184
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
185
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
186
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
187
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
188
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
189
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
190
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
191
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
192
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
193
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
194
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
195
+ class?: string | undefined;
196
+ style?: string | undefined;
197
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
198
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
199
+ };
200
+ export declare function selectMinX(args: TransformArg<DataRecord>): {
201
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
202
+ facet?: "auto" | "include" | "exclude" | undefined;
203
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
204
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
205
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
206
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
207
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
208
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
209
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
210
+ channel: string;
211
+ order?: "ascending" | "descending";
212
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
213
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
214
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
215
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
216
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
217
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
218
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
219
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
220
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
221
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
222
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
223
+ clipPath?: string | undefined;
224
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
225
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
226
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
227
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
228
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
229
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
230
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
231
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
232
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
233
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
234
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
235
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
236
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
237
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
238
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
239
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
240
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
241
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
242
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
243
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
244
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
245
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
246
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
247
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
248
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
249
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
250
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
251
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
252
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
253
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
254
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
255
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
256
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
257
+ class?: string | undefined;
258
+ style?: string | undefined;
259
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
260
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
261
+ };
262
+ export declare function selectMaxX(args: TransformArg<DataRecord>): {
263
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
264
+ facet?: "auto" | "include" | "exclude" | undefined;
265
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
266
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
267
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
268
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
269
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
270
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
271
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
272
+ channel: string;
273
+ order?: "ascending" | "descending";
274
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
275
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
276
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
277
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
278
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
279
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
280
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
281
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
282
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
283
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
284
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
285
+ clipPath?: string | undefined;
286
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
287
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
288
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
289
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
290
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
291
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
292
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
293
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
294
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
295
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
296
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
297
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
298
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
299
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
300
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
301
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
302
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
303
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
304
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
305
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
306
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
307
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
308
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
309
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
310
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
311
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
312
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
313
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
314
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
315
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
316
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
317
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
318
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
319
+ class?: string | undefined;
320
+ style?: string | undefined;
321
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
322
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
323
+ };
324
+ export declare function selectMinY(args: TransformArg<DataRecord>): {
325
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
326
+ facet?: "auto" | "include" | "exclude" | undefined;
327
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
328
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
329
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
330
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
331
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
332
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
333
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
334
+ channel: string;
335
+ order?: "ascending" | "descending";
336
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
337
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
338
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
339
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
340
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
341
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
342
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
343
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
344
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
345
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
346
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
347
+ clipPath?: string | undefined;
348
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
349
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
350
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
351
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
352
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
353
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
354
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
355
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
356
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
357
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
358
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
359
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
360
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
361
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
362
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
363
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
364
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
365
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
366
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
367
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
368
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
369
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
370
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
371
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
372
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
373
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
374
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
375
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
376
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
377
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
378
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
379
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
380
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
381
+ class?: string | undefined;
382
+ style?: string | undefined;
383
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
384
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
385
+ };
386
+ export declare function selectMaxY(args: TransformArg<DataRecord>): {
387
+ filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
388
+ facet?: "auto" | "include" | "exclude" | undefined;
389
+ fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
390
+ fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
391
+ dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
392
+ dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
393
+ fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
394
+ fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
395
+ sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
396
+ channel: string;
397
+ order?: "ascending" | "descending";
398
+ } | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
399
+ stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
400
+ strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
401
+ strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
402
+ strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
403
+ strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
404
+ strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
405
+ opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
406
+ strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
407
+ strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
408
+ mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
409
+ clipPath?: string | undefined;
410
+ imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
411
+ shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
412
+ paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
413
+ onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
414
+ ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
415
+ onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
416
+ onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
417
+ onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
418
+ onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
419
+ onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
420
+ onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
421
+ onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
422
+ onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
423
+ onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
424
+ onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
425
+ onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
426
+ onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
427
+ onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
428
+ onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
429
+ onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
430
+ ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
431
+ ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
432
+ ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
433
+ ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
434
+ ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
435
+ ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
436
+ ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
437
+ ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
438
+ ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
439
+ ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
440
+ ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
441
+ oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
442
+ onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
443
+ class?: string | undefined;
444
+ style?: string | undefined;
445
+ cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
446
+ data: Record<string | symbol, import("../types/index.js").RawValue>[];
447
+ };
21
448
  export {};