svelteplot 0.10.1 → 0.10.3
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/LICENSE.md +1 -1
- package/dist/marks/AreaY.svelte +1 -0
- package/dist/marks/AreaY.svelte.d.ts +110 -0
- package/dist/marks/BollingerX.svelte.d.ts +2 -2
- package/dist/marks/BollingerY.svelte.d.ts +2 -2
- package/dist/marks/BoxY.svelte.d.ts +2 -2
- package/dist/marks/Brush.svelte.d.ts +2 -2
- package/dist/marks/CustomMark.svelte.d.ts +2 -2
- package/dist/marks/DifferenceY.svelte.d.ts +2 -2
- package/dist/transforms/interval.d.ts +18 -18
- package/dist/transforms/normalize.d.ts +34 -0
- package/dist/transforms/select.d.ts +182 -182
- package/dist/transforms/sort.d.ts +30 -30
- package/dist/transforms/window.d.ts +54 -54
- package/package.json +12 -4
- 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
|
@@ -6,35 +6,35 @@ type SelectOptions = 'first' | 'last' | AtLeastOne<{
|
|
|
6
6
|
[k in ChannelName]: 'min' | 'max';
|
|
7
7
|
}>;
|
|
8
8
|
export declare function select({ data, ...channels }: TransformArg<DataRecord>, options: SelectOptions): {
|
|
9
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
9
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
10
10
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
11
|
-
fx?: import("../types/
|
|
12
|
-
fy?: import("../types/
|
|
13
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
14
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
15
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
16
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
17
|
-
fill?: import("../types/
|
|
18
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
19
|
-
sort?: ((a: import("../types/
|
|
11
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
12
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
13
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
14
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
15
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
16
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
17
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
18
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
19
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
20
20
|
channel: string;
|
|
21
21
|
order?: "ascending" | "descending";
|
|
22
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
23
|
-
stroke?: import("../types/
|
|
24
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
25
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
26
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
27
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
28
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
29
|
-
opacity?: import("../types/
|
|
30
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
31
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
32
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
22
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
23
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
24
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
25
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
26
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
27
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
28
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
29
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
30
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
31
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
32
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
33
33
|
clipPath?: string | undefined;
|
|
34
34
|
mask?: string | undefined;
|
|
35
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
36
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
37
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
35
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
36
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
37
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
38
38
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
39
39
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
40
40
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -67,42 +67,42 @@ export declare function select({ data, ...channels }: TransformArg<DataRecord>,
|
|
|
67
67
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
68
68
|
class?: string | undefined;
|
|
69
69
|
style?: string | undefined;
|
|
70
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
71
|
-
data: Record<string | symbol, import("../types/
|
|
70
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
71
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
72
72
|
};
|
|
73
73
|
/**
|
|
74
74
|
* Keeps only the first item of each group
|
|
75
75
|
*/
|
|
76
76
|
export declare function selectFirst(args: TransformArg<DataRecord>): {
|
|
77
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
77
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
78
78
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
79
|
-
fx?: import("../types/
|
|
80
|
-
fy?: import("../types/
|
|
81
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
82
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
83
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
84
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
85
|
-
fill?: import("../types/
|
|
86
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
87
|
-
sort?: ((a: import("../types/
|
|
79
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
80
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
81
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
82
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
83
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
84
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
85
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
86
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
87
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
88
88
|
channel: string;
|
|
89
89
|
order?: "ascending" | "descending";
|
|
90
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
91
|
-
stroke?: import("../types/
|
|
92
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
93
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
94
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
95
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
96
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
97
|
-
opacity?: import("../types/
|
|
98
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
99
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
100
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
90
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
91
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
92
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
93
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
94
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
95
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
96
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
97
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
98
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
99
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
100
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
101
101
|
clipPath?: string | undefined;
|
|
102
102
|
mask?: string | undefined;
|
|
103
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
104
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
105
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
103
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
104
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
105
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
106
106
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
107
107
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
108
108
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -135,42 +135,42 @@ export declare function selectFirst(args: TransformArg<DataRecord>): {
|
|
|
135
135
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
136
136
|
class?: string | undefined;
|
|
137
137
|
style?: string | undefined;
|
|
138
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
139
|
-
data: Record<string | symbol, import("../types/
|
|
138
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
139
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
140
140
|
};
|
|
141
141
|
/**
|
|
142
142
|
* Keeps only the last item of each group
|
|
143
143
|
*/
|
|
144
144
|
export declare function selectLast(args: TransformArg<DataRecord>): {
|
|
145
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
145
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
146
146
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
147
|
-
fx?: import("../types/
|
|
148
|
-
fy?: import("../types/
|
|
149
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
150
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
151
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
152
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
153
|
-
fill?: import("../types/
|
|
154
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
155
|
-
sort?: ((a: import("../types/
|
|
147
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
148
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
149
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
150
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
151
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
152
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
153
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
154
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
155
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
156
156
|
channel: string;
|
|
157
157
|
order?: "ascending" | "descending";
|
|
158
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
159
|
-
stroke?: import("../types/
|
|
160
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
161
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
162
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
163
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
164
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
165
|
-
opacity?: import("../types/
|
|
166
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
167
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
168
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
158
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
159
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
160
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
161
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
162
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
163
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
164
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
165
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
166
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
167
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
168
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
169
169
|
clipPath?: string | undefined;
|
|
170
170
|
mask?: string | undefined;
|
|
171
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
172
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
173
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
171
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
172
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
173
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
174
174
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
175
175
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
176
176
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -203,39 +203,39 @@ export declare function selectLast(args: TransformArg<DataRecord>): {
|
|
|
203
203
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
204
204
|
class?: string | undefined;
|
|
205
205
|
style?: string | undefined;
|
|
206
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
207
|
-
data: Record<string | symbol, import("../types/
|
|
206
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
207
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
208
208
|
};
|
|
209
209
|
export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
210
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
210
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
211
211
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
212
|
-
fx?: import("../types/
|
|
213
|
-
fy?: import("../types/
|
|
214
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
215
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
216
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
217
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
218
|
-
fill?: import("../types/
|
|
219
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
220
|
-
sort?: ((a: import("../types/
|
|
212
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
213
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
214
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
215
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
216
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
217
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
218
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
219
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
220
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
221
221
|
channel: string;
|
|
222
222
|
order?: "ascending" | "descending";
|
|
223
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
224
|
-
stroke?: import("../types/
|
|
225
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
226
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
227
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
228
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
229
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
230
|
-
opacity?: import("../types/
|
|
231
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
232
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
233
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
223
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
224
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
225
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
226
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
227
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
228
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
229
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
230
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
231
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
232
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
233
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
234
234
|
clipPath?: string | undefined;
|
|
235
235
|
mask?: string | undefined;
|
|
236
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
237
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
238
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
236
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
237
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
238
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
239
239
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
240
240
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
241
241
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -268,39 +268,39 @@ export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
|
268
268
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
269
269
|
class?: string | undefined;
|
|
270
270
|
style?: string | undefined;
|
|
271
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
272
|
-
data: Record<string | symbol, import("../types/
|
|
271
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
272
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
273
273
|
};
|
|
274
274
|
export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
275
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
275
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
276
276
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
277
|
-
fx?: import("../types/
|
|
278
|
-
fy?: import("../types/
|
|
279
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
280
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
281
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
282
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
283
|
-
fill?: import("../types/
|
|
284
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
285
|
-
sort?: ((a: import("../types/
|
|
277
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
278
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
279
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
280
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
281
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
282
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
283
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
284
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
285
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
286
286
|
channel: string;
|
|
287
287
|
order?: "ascending" | "descending";
|
|
288
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
289
|
-
stroke?: import("../types/
|
|
290
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
291
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
292
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
293
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
294
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
295
|
-
opacity?: import("../types/
|
|
296
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
297
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
298
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
288
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
289
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
290
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
291
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
292
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
293
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
294
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
295
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
296
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
297
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
298
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
299
299
|
clipPath?: string | undefined;
|
|
300
300
|
mask?: string | undefined;
|
|
301
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
302
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
303
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
301
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
302
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
303
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
304
304
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
305
305
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
306
306
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -333,39 +333,39 @@ export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
|
333
333
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
334
334
|
class?: string | undefined;
|
|
335
335
|
style?: string | undefined;
|
|
336
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
337
|
-
data: Record<string | symbol, import("../types/
|
|
336
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
337
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
338
338
|
};
|
|
339
339
|
export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
340
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
340
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
341
341
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
342
|
-
fx?: import("../types/
|
|
343
|
-
fy?: import("../types/
|
|
344
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
345
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
346
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
347
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
348
|
-
fill?: import("../types/
|
|
349
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
350
|
-
sort?: ((a: import("../types/
|
|
342
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
343
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
344
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
345
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
346
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
347
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
348
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
349
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
350
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
351
351
|
channel: string;
|
|
352
352
|
order?: "ascending" | "descending";
|
|
353
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
354
|
-
stroke?: import("../types/
|
|
355
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
356
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
357
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
358
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
359
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
360
|
-
opacity?: import("../types/
|
|
361
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
362
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
363
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
353
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
354
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
355
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
356
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
357
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
358
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
359
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
360
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
361
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
362
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
363
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
364
364
|
clipPath?: string | undefined;
|
|
365
365
|
mask?: string | undefined;
|
|
366
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
367
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
368
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
366
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
367
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
368
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
369
369
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
370
370
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
371
371
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -398,39 +398,39 @@ export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
|
398
398
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
399
399
|
class?: string | undefined;
|
|
400
400
|
style?: string | undefined;
|
|
401
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
402
|
-
data: Record<string | symbol, import("../types/
|
|
401
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
402
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
403
403
|
};
|
|
404
404
|
export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
405
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/
|
|
405
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
406
406
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
407
|
-
fx?: import("../types/
|
|
408
|
-
fy?: import("../types/
|
|
409
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
410
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
411
|
-
dodgeX?: import("./dodge").DodgeXOptions | undefined;
|
|
412
|
-
dodgeY?: import("./dodge").DodgeYOptions | undefined;
|
|
413
|
-
fill?: import("../types/
|
|
414
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
415
|
-
sort?: ((a: import("../types/
|
|
407
|
+
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
408
|
+
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
409
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
410
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
411
|
+
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
412
|
+
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
413
|
+
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
414
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
415
|
+
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
416
416
|
channel: string;
|
|
417
417
|
order?: "ascending" | "descending";
|
|
418
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/
|
|
419
|
-
stroke?: import("../types/
|
|
420
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
421
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
422
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/
|
|
423
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/
|
|
424
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
425
|
-
opacity?: import("../types/
|
|
426
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
427
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/
|
|
428
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/
|
|
418
|
+
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
419
|
+
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
420
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
421
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
422
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
423
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
424
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
425
|
+
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
426
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
427
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
428
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
429
429
|
clipPath?: string | undefined;
|
|
430
430
|
mask?: string | undefined;
|
|
431
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
432
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/
|
|
433
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/
|
|
431
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
432
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
433
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
434
434
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
435
435
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
436
436
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -463,7 +463,7 @@ export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
|
463
463
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
464
464
|
class?: string | undefined;
|
|
465
465
|
style?: string | undefined;
|
|
466
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/
|
|
467
|
-
data: Record<string | symbol, import("../types/
|
|
466
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
467
|
+
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
468
468
|
};
|
|
469
469
|
export {};
|