svelteplot 0.10.0 → 0.10.1-pr-357.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.
- package/README.md +9 -2
- package/dist/Mark.svelte.d.ts +4 -4
- package/dist/constants.d.ts +1 -1
- package/dist/helpers/colors.d.ts +8 -11
- package/dist/helpers/curves.d.ts +2 -2
- package/dist/helpers/facets.d.ts +1 -1
- package/dist/helpers/getBaseStyles.d.ts +2 -4
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/reduce.d.ts +1 -1
- package/dist/helpers/scales.d.ts +7 -7
- package/dist/helpers/symbols.d.ts +1 -1
- package/dist/helpers/time.d.ts +3 -3
- package/dist/helpers/typeChecks.d.ts +4 -4
- package/dist/marks/Area.svelte.d.ts +5 -4
- package/dist/marks/AreaX.svelte.d.ts +4 -4
- package/dist/marks/AreaY.svelte +1 -0
- package/dist/marks/AreaY.svelte.d.ts +110 -0
- package/dist/marks/Arrow.svelte.d.ts +5 -4
- package/dist/marks/AxisX.svelte.d.ts +6 -5
- package/dist/marks/AxisY.svelte.d.ts +6 -5
- package/dist/marks/BarX.svelte.d.ts +4 -4
- package/dist/marks/BarY.svelte.d.ts +5 -4
- package/dist/marks/BollingerX.svelte.d.ts +2 -77
- package/dist/marks/BollingerY.svelte.d.ts +2 -77
- package/dist/marks/BoxY.svelte.d.ts +1 -64
- package/dist/marks/Brush.svelte.d.ts +1 -64
- package/dist/marks/Cell.svelte.d.ts +5 -4
- package/dist/marks/CellX.svelte.d.ts +30 -30
- package/dist/marks/CellY.svelte.d.ts +30 -30
- package/dist/marks/CustomMark.svelte.d.ts +2 -85
- package/dist/marks/DifferenceY.svelte.d.ts +1 -64
- package/dist/marks/Dot.svelte.d.ts +5 -4
- package/dist/marks/DotX.svelte.d.ts +5 -5
- package/dist/marks/DotY.svelte.d.ts +5 -5
- package/dist/marks/Frame.svelte.d.ts +6 -5
- package/dist/marks/Geo.svelte.d.ts +5 -4
- package/dist/marks/GridX.svelte.d.ts +5 -4
- package/dist/marks/GridY.svelte.d.ts +5 -4
- package/dist/marks/Image.svelte.d.ts +5 -4
- package/dist/marks/Line.svelte.d.ts +4 -4
- package/dist/marks/LineX.svelte.d.ts +6 -6
- package/dist/marks/LineY.svelte.d.ts +6 -6
- package/dist/marks/Link.svelte.d.ts +5 -4
- package/dist/marks/Rect.svelte.d.ts +5 -4
- package/dist/marks/RuleX.svelte.d.ts +5 -4
- package/dist/marks/RuleY.svelte.d.ts +5 -4
- package/dist/marks/Spike.svelte.d.ts +5 -5
- package/dist/marks/Text.svelte.d.ts +9 -8
- package/dist/marks/TickX.svelte.d.ts +5 -4
- package/dist/marks/TickY.svelte.d.ts +5 -4
- package/dist/marks/Trail.svelte.d.ts +1 -64
- package/dist/marks/Vector.svelte.d.ts +5 -4
- package/dist/marks/WaffleX.svelte.d.ts +2 -86
- package/dist/marks/WaffleY.svelte.d.ts +5 -4
- package/dist/marks/helpers/Box.svelte.d.ts +1 -64
- package/dist/marks/helpers/MarkerPath.svelte.d.ts +2 -107
- package/dist/transforms/centroid.d.ts +1 -4
- package/dist/transforms/interval.d.ts +18 -18
- package/dist/transforms/normalize.d.ts +34 -0
- package/dist/transforms/recordize.d.ts +4 -7
- package/dist/transforms/rename.d.ts +1 -1
- package/dist/transforms/select.d.ts +182 -182
- package/dist/transforms/sort.d.ts +34 -39
- package/dist/transforms/stack.d.ts +12 -12
- package/dist/transforms/window.d.ts +2 -136
- package/package.json +167 -150
- package/dist/ui/Checkbox.svelte +0 -14
- package/dist/ui/Checkbox.svelte.d.ts +0 -13
- package/dist/ui/ExamplesGrid.svelte +0 -81
- package/dist/ui/ExamplesGrid.svelte.d.ts +0 -11
- package/dist/ui/ExamplesPageList.svelte +0 -63
- package/dist/ui/ExamplesPageList.svelte.d.ts +0 -12
- package/dist/ui/ExamplesPagePreview.svelte +0 -145
- package/dist/ui/ExamplesPagePreview.svelte.d.ts +0 -12
- package/dist/ui/RadioInput.svelte +0 -27
- package/dist/ui/RadioInput.svelte.d.ts +0 -9
- package/dist/ui/Select.svelte +0 -27
- package/dist/ui/Select.svelte.d.ts +0 -9
- package/dist/ui/Slider.svelte +0 -47
- package/dist/ui/Slider.svelte.d.ts +0 -11
- package/dist/ui/Spiral.svelte +0 -35
- package/dist/ui/Spiral.svelte.d.ts +0 -15
- package/dist/ui/index.d.ts +0 -4
- package/dist/ui/index.js +0 -4
- package/dist/ui/isDark.svelte.d.ts +0 -6
- package/dist/ui/isDark.svelte.js +0 -10
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
import type { DataRow, TransformArg } from '../types/index.js';
|
|
2
|
-
export declare const SORT_KEY:
|
|
3
|
-
export declare const IS_SORTED:
|
|
2
|
+
export declare const SORT_KEY: any;
|
|
3
|
+
export declare const IS_SORTED: any;
|
|
4
4
|
export declare function sort<T>({ data, ...channels }: TransformArg<T>, options?: {
|
|
5
5
|
reverse?: boolean;
|
|
6
6
|
}): {
|
|
7
|
-
[IS_SORTED]: string | number | true | symbol | object;
|
|
8
7
|
sort: null;
|
|
9
8
|
filter?: import("../types/index.js").ConstantAccessor<boolean, T>;
|
|
10
9
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
11
|
-
fx?: import("../types/
|
|
12
|
-
fy?: import("../types/
|
|
10
|
+
fx?: import("../types/channel.js").ChannelAccessor<T>;
|
|
11
|
+
fy?: import("../types/channel.js").ChannelAccessor<T>;
|
|
13
12
|
dx?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
14
13
|
dy?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
15
|
-
dodgeX?:
|
|
16
|
-
dodgeY?:
|
|
17
|
-
fill?: import("../types/
|
|
14
|
+
dodgeX?: DodgeXOptions;
|
|
15
|
+
dodgeY?: DodgeYOptions;
|
|
16
|
+
fill?: import("../types/channel.js").ChannelAccessor<T>;
|
|
18
17
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
19
|
-
stroke?: import("../types/
|
|
18
|
+
stroke?: import("../types/channel.js").ChannelAccessor<T>;
|
|
20
19
|
strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
21
20
|
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
22
21
|
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, T>;
|
|
23
22
|
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, T>;
|
|
24
23
|
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
25
|
-
opacity?: import("../types/
|
|
24
|
+
opacity?: import("../types/channel.js").ChannelAccessor<T>;
|
|
26
25
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, T>;
|
|
27
26
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
28
27
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, T>;
|
|
@@ -64,31 +63,29 @@ export declare function sort<T>({ data, ...channels }: TransformArg<T>, options?
|
|
|
64
63
|
class?: string | undefined;
|
|
65
64
|
style?: string | undefined;
|
|
66
65
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, T>;
|
|
67
|
-
data:
|
|
68
|
-
[SORT_KEY]: string | number | Date;
|
|
69
|
-
}, typeof SORT_KEY>[];
|
|
66
|
+
data: any;
|
|
70
67
|
} | {
|
|
71
68
|
filter?: import("../types/index.js").ConstantAccessor<boolean, T>;
|
|
72
69
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
73
|
-
fx?: import("../types/
|
|
74
|
-
fy?: import("../types/
|
|
70
|
+
fx?: import("../types/channel.js").ChannelAccessor<T>;
|
|
71
|
+
fy?: import("../types/channel.js").ChannelAccessor<T>;
|
|
75
72
|
dx?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
76
73
|
dy?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
77
|
-
dodgeX?:
|
|
78
|
-
dodgeY?:
|
|
79
|
-
fill?: import("../types/
|
|
74
|
+
dodgeX?: DodgeXOptions;
|
|
75
|
+
dodgeY?: DodgeYOptions;
|
|
76
|
+
fill?: import("../types/channel.js").ChannelAccessor<T>;
|
|
80
77
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
81
|
-
sort?:
|
|
78
|
+
sort?: {
|
|
82
79
|
channel: string;
|
|
83
80
|
order?: "ascending" | "descending";
|
|
84
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
85
|
-
stroke?: import("../types/
|
|
81
|
+
} | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
|
|
82
|
+
stroke?: import("../types/channel.js").ChannelAccessor<T>;
|
|
86
83
|
strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
87
84
|
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
88
85
|
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, T>;
|
|
89
86
|
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, T>;
|
|
90
87
|
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
91
|
-
opacity?: import("../types/
|
|
88
|
+
opacity?: import("../types/channel.js").ChannelAccessor<T>;
|
|
92
89
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, T>;
|
|
93
90
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
94
91
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, T>;
|
|
@@ -139,24 +136,23 @@ export declare function shuffle({ data, ...channels }: TransformArg<DataRow[]>,
|
|
|
139
136
|
seed?: number;
|
|
140
137
|
}): {
|
|
141
138
|
sort: null;
|
|
142
|
-
[IS_SORTED]: boolean;
|
|
143
139
|
filter?: import("../types/index.js").ConstantAccessor<boolean, DataRow[]>;
|
|
144
140
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
145
|
-
fx?: import("../types/
|
|
146
|
-
fy?: import("../types/
|
|
141
|
+
fx?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
142
|
+
fy?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
147
143
|
dx?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
148
144
|
dy?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
149
|
-
dodgeX?:
|
|
150
|
-
dodgeY?:
|
|
151
|
-
fill?: import("../types/
|
|
145
|
+
dodgeX?: DodgeXOptions;
|
|
146
|
+
dodgeY?: DodgeYOptions;
|
|
147
|
+
fill?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
152
148
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
153
|
-
stroke?: import("../types/
|
|
149
|
+
stroke?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
154
150
|
strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
155
151
|
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
156
152
|
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRow[]>;
|
|
157
153
|
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRow[]>;
|
|
158
154
|
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
159
|
-
opacity?: import("../types/
|
|
155
|
+
opacity?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
160
156
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRow[]>;
|
|
161
157
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
162
158
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRow[]>;
|
|
@@ -205,24 +201,23 @@ export declare function shuffle({ data, ...channels }: TransformArg<DataRow[]>,
|
|
|
205
201
|
*/
|
|
206
202
|
export declare function reverse({ data, ...channels }: TransformArg<DataRow[]>): {
|
|
207
203
|
sort: null;
|
|
208
|
-
[IS_SORTED]: boolean;
|
|
209
204
|
filter?: import("../types/index.js").ConstantAccessor<boolean, DataRow[]>;
|
|
210
205
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
211
|
-
fx?: import("../types/
|
|
212
|
-
fy?: import("../types/
|
|
206
|
+
fx?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
207
|
+
fy?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
213
208
|
dx?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
214
209
|
dy?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
215
|
-
dodgeX?:
|
|
216
|
-
dodgeY?:
|
|
217
|
-
fill?: import("../types/
|
|
210
|
+
dodgeX?: DodgeXOptions;
|
|
211
|
+
dodgeY?: DodgeYOptions;
|
|
212
|
+
fill?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
218
213
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
219
|
-
stroke?: import("../types/
|
|
214
|
+
stroke?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
220
215
|
strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
221
216
|
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
222
217
|
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRow[]>;
|
|
223
218
|
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRow[]>;
|
|
224
219
|
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
225
|
-
opacity?: import("../types/
|
|
220
|
+
opacity?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
226
221
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRow[]>;
|
|
227
222
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
228
223
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRow[]>;
|
|
@@ -264,5 +259,5 @@ export declare function reverse({ data, ...channels }: TransformArg<DataRow[]>):
|
|
|
264
259
|
class?: string | undefined;
|
|
265
260
|
style?: string | undefined;
|
|
266
261
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, DataRow[]>;
|
|
267
|
-
data:
|
|
262
|
+
data: any;
|
|
268
263
|
};
|
|
@@ -12,21 +12,21 @@ export declare function stackMosaicX<T>(args: any, opts: any): {
|
|
|
12
12
|
fx: ChannelAccessor<unknown>;
|
|
13
13
|
fy: ChannelAccessor<unknown>;
|
|
14
14
|
data: unknown[];
|
|
15
|
-
x:
|
|
16
|
-
x1:
|
|
17
|
-
x2:
|
|
18
|
-
y:
|
|
19
|
-
y1:
|
|
20
|
-
y2:
|
|
15
|
+
x: any;
|
|
16
|
+
x1: any;
|
|
17
|
+
x2: any;
|
|
18
|
+
y: any;
|
|
19
|
+
y1: any;
|
|
20
|
+
y2: any;
|
|
21
21
|
};
|
|
22
22
|
export declare function stackMosaicY<T>(args: any, opts: any): {
|
|
23
23
|
fx: ChannelAccessor<unknown>;
|
|
24
24
|
fy: ChannelAccessor<unknown>;
|
|
25
25
|
data: unknown[];
|
|
26
|
-
x:
|
|
27
|
-
x1:
|
|
28
|
-
x2:
|
|
29
|
-
y:
|
|
30
|
-
y1:
|
|
31
|
-
y2:
|
|
26
|
+
x: any;
|
|
27
|
+
x1: any;
|
|
28
|
+
x2: any;
|
|
29
|
+
y: any;
|
|
30
|
+
y1: any;
|
|
31
|
+
y2: any;
|
|
32
32
|
};
|
|
@@ -7,140 +7,6 @@ type WindowOptions = {
|
|
|
7
7
|
reduce: ReducerName;
|
|
8
8
|
strict: boolean;
|
|
9
9
|
};
|
|
10
|
-
export declare function windowX(args: TransformArg<DataRecord>, options: WindowOptions):
|
|
11
|
-
|
|
12
|
-
facet?: "auto" | "include" | "exclude" | undefined;
|
|
13
|
-
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
14
|
-
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
15
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
16
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
17
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
18
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
19
|
-
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
20
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
21
|
-
sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
|
|
22
|
-
channel: string;
|
|
23
|
-
order?: "ascending" | "descending";
|
|
24
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
25
|
-
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
26
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
27
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
28
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
29
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
30
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
31
|
-
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
32
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
33
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
34
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
35
|
-
clipPath?: string | undefined;
|
|
36
|
-
mask?: string | undefined;
|
|
37
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
38
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
39
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
40
|
-
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
41
|
-
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
42
|
-
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
43
|
-
onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
44
|
-
onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
45
|
-
onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
46
|
-
onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
47
|
-
onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
48
|
-
onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
49
|
-
onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
50
|
-
onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
51
|
-
onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
52
|
-
onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
53
|
-
onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
54
|
-
onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
55
|
-
onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
56
|
-
onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
57
|
-
ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
58
|
-
ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
59
|
-
ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
60
|
-
ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
61
|
-
ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
62
|
-
ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
63
|
-
ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
64
|
-
ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
65
|
-
ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
66
|
-
ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
67
|
-
ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
68
|
-
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
69
|
-
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
70
|
-
class?: string | undefined;
|
|
71
|
-
style?: string | undefined;
|
|
72
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
73
|
-
data: {
|
|
74
|
-
[x: string]: import("../types/index.js").RawValue;
|
|
75
|
-
[x: symbol]: import("../types/index.js").RawValue;
|
|
76
|
-
}[];
|
|
77
|
-
};
|
|
78
|
-
export declare function windowY(args: TransformArg<DataRecord>, options: WindowOptions): {
|
|
79
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
80
|
-
facet?: "auto" | "include" | "exclude" | undefined;
|
|
81
|
-
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
82
|
-
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
83
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
84
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
85
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
86
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
87
|
-
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
88
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
89
|
-
sort?: ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | {
|
|
90
|
-
channel: string;
|
|
91
|
-
order?: "ascending" | "descending";
|
|
92
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
93
|
-
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
94
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
95
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
96
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
97
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
98
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
99
|
-
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
100
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
101
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
102
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
103
|
-
clipPath?: string | undefined;
|
|
104
|
-
mask?: string | undefined;
|
|
105
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
106
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
107
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
108
|
-
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
109
|
-
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
110
|
-
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
111
|
-
onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
112
|
-
onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
113
|
-
onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
114
|
-
onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
115
|
-
onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
116
|
-
onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
117
|
-
onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
118
|
-
onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
119
|
-
onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
120
|
-
onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
121
|
-
onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
122
|
-
onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
123
|
-
onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
124
|
-
onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
125
|
-
ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
126
|
-
ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
127
|
-
ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
128
|
-
ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
129
|
-
ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
130
|
-
ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
131
|
-
ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
132
|
-
ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
133
|
-
ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
134
|
-
ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
135
|
-
ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
136
|
-
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
137
|
-
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
138
|
-
class?: string | undefined;
|
|
139
|
-
style?: string | undefined;
|
|
140
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
141
|
-
data: {
|
|
142
|
-
[x: string]: import("../types/index.js").RawValue;
|
|
143
|
-
[x: symbol]: import("../types/index.js").RawValue;
|
|
144
|
-
}[];
|
|
145
|
-
};
|
|
10
|
+
export declare function windowX(args: TransformArg<DataRecord>, options: WindowOptions): any;
|
|
11
|
+
export declare function windowY(args: TransformArg<DataRecord>, options: WindowOptions): any;
|
|
146
12
|
export {};
|