svelteplot 0.3.11-pr-153.0 → 0.3.11

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