svelteplot 0.4.0 → 0.4.1
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/dist/helpers/autoScales.js +1 -1
- package/dist/helpers/mergeDeep.js +0 -1
- package/dist/helpers/reduce.js +0 -1
- package/dist/helpers/scales.js +1 -1
- package/dist/marks/AreaX.svelte.d.ts +29 -29
- package/dist/marks/AreaY.svelte.d.ts +29 -29
- package/dist/marks/DotX.svelte.d.ts +29 -29
- package/dist/marks/DotY.svelte.d.ts +29 -29
- package/dist/marks/LineX.svelte.d.ts +33 -33
- package/dist/marks/LineY.svelte.d.ts +33 -33
- package/dist/marks/Spike.svelte.d.ts +27 -27
- package/dist/marks/Text.svelte +4 -3
- package/dist/marks/Text.svelte.d.ts +2 -2
- package/dist/marks/helpers/MultilineText.svelte +3 -7
- package/dist/transforms/bollinger.d.ts +22 -22
- package/dist/transforms/group.d.ts +4 -4
- package/dist/transforms/select.d.ts +161 -161
- package/dist/transforms/window.d.ts +44 -46
- package/dist/types/data.d.ts +1 -3
- package/package.json +1 -1
|
@@ -6,32 +6,32 @@ 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,
|
|
9
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
10
10
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
11
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
12
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
13
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
14
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
15
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
16
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
11
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
12
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
13
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
14
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
15
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
16
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
17
17
|
sort?: {
|
|
18
18
|
channel: string;
|
|
19
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,
|
|
21
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
22
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
23
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
24
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
25
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
26
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
27
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
28
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
29
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
30
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
20
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
21
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
22
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
23
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
24
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
25
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
26
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
27
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
28
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
29
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
30
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
31
31
|
clipPath?: string | undefined;
|
|
32
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
33
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
34
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
32
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
33
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
34
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
35
35
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
36
36
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
37
37
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -63,39 +63,39 @@ export declare function select({ data, ...channels }: TransformArg<DataRecord>,
|
|
|
63
63
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
64
64
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
65
65
|
class?: string | null | undefined;
|
|
66
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
67
|
-
data:
|
|
66
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
67
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* Keeps only the first item of each group
|
|
71
71
|
*/
|
|
72
72
|
export declare function selectFirst(args: TransformArg<DataRecord>): {
|
|
73
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean,
|
|
73
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
74
74
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
75
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
76
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
77
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
78
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
79
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
80
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
75
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
76
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
77
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
78
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
79
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
80
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
81
81
|
sort?: {
|
|
82
82
|
channel: string;
|
|
83
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,
|
|
85
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
86
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
87
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
88
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
89
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
90
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
91
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
92
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
93
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
94
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
84
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
85
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
86
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
87
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
88
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
89
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
90
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
91
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
92
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
93
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
94
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
95
95
|
clipPath?: string | undefined;
|
|
96
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
97
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
98
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
96
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
97
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
98
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
99
99
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
100
100
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
101
101
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -127,39 +127,39 @@ export declare function selectFirst(args: TransformArg<DataRecord>): {
|
|
|
127
127
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
128
128
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
129
129
|
class?: string | null | undefined;
|
|
130
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
131
|
-
data:
|
|
130
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
131
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
132
132
|
};
|
|
133
133
|
/**
|
|
134
134
|
* Keeps only the last item of each group
|
|
135
135
|
*/
|
|
136
136
|
export declare function selectLast(args: TransformArg<DataRecord>): {
|
|
137
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean,
|
|
137
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
138
138
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
139
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
140
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
141
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
142
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
143
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
144
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
139
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
140
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
141
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
142
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
143
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
144
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
145
145
|
sort?: {
|
|
146
146
|
channel: string;
|
|
147
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,
|
|
149
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
150
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
151
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
152
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
153
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
154
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
155
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
156
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
157
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
158
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
148
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
149
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
150
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
151
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
152
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
153
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
154
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
155
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
156
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
157
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
158
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
159
159
|
clipPath?: string | undefined;
|
|
160
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
161
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
162
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
160
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
161
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
162
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
163
163
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
164
164
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
165
165
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -191,36 +191,36 @@ export declare function selectLast(args: TransformArg<DataRecord>): {
|
|
|
191
191
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
192
192
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
193
193
|
class?: string | null | undefined;
|
|
194
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
195
|
-
data:
|
|
194
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
195
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
196
196
|
};
|
|
197
197
|
export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
198
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean,
|
|
198
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
199
199
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
200
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
201
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
202
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
203
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
204
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
205
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
200
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
201
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
202
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
203
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
204
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
205
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
206
206
|
sort?: {
|
|
207
207
|
channel: string;
|
|
208
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,
|
|
210
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
211
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
212
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
213
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
214
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
215
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
216
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
217
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
218
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
219
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
209
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
210
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
211
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
212
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
213
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
214
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
215
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
216
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
217
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
218
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
219
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
220
220
|
clipPath?: string | undefined;
|
|
221
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
222
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
223
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
221
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
222
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
223
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
224
224
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
225
225
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
226
226
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -252,36 +252,36 @@ export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
|
252
252
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
253
253
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
254
254
|
class?: string | null | undefined;
|
|
255
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
256
|
-
data:
|
|
255
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
256
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
257
257
|
};
|
|
258
258
|
export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
259
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean,
|
|
259
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
260
260
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
261
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
262
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
263
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
264
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
265
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
266
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
261
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
262
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
263
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
264
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
265
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
266
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
267
267
|
sort?: {
|
|
268
268
|
channel: string;
|
|
269
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,
|
|
271
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
272
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
273
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
274
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
275
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
276
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
277
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
278
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
279
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
280
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
270
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
271
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
272
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
273
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
274
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
275
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
276
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
277
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
278
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
279
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
280
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
281
281
|
clipPath?: string | undefined;
|
|
282
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
283
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
284
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
282
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
283
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
284
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
285
285
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
286
286
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
287
287
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -313,36 +313,36 @@ export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
|
313
313
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
314
314
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
315
315
|
class?: string | null | undefined;
|
|
316
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
317
|
-
data:
|
|
316
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
317
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
318
318
|
};
|
|
319
319
|
export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
320
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean,
|
|
320
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
321
321
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
322
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
323
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
324
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
325
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
326
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
327
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
322
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
323
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
324
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
325
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
326
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
327
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
328
328
|
sort?: {
|
|
329
329
|
channel: string;
|
|
330
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,
|
|
332
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
333
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
334
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
335
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
336
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
337
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
338
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
339
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
340
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
341
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
331
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
332
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
333
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
334
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
335
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
336
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
337
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
338
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
339
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
340
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
341
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
342
342
|
clipPath?: string | undefined;
|
|
343
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
344
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
345
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
343
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
344
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
345
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
346
346
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
347
347
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
348
348
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -374,36 +374,36 @@ export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
|
374
374
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
375
375
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
376
376
|
class?: string | null | undefined;
|
|
377
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
378
|
-
data:
|
|
377
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
378
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
379
379
|
};
|
|
380
380
|
export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
381
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean,
|
|
381
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
382
382
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
383
|
-
fx?: import("../types/index.js").ChannelAccessor<
|
|
384
|
-
fy?: import("../types/index.js").ChannelAccessor<
|
|
385
|
-
dx?: import("../types/index.js").ConstantAccessor<number,
|
|
386
|
-
dy?: import("../types/index.js").ConstantAccessor<number,
|
|
387
|
-
fill?: import("../types/index.js").ChannelAccessor<
|
|
388
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
383
|
+
fx?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
384
|
+
fy?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
385
|
+
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
386
|
+
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
387
|
+
fill?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
388
|
+
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
389
389
|
sort?: {
|
|
390
390
|
channel: string;
|
|
391
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,
|
|
393
|
-
stroke?: import("../types/index.js").ChannelAccessor<
|
|
394
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number,
|
|
395
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number,
|
|
396
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin,
|
|
397
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap,
|
|
398
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number,
|
|
399
|
-
opacity?: import("../types/index.js").ChannelAccessor<
|
|
400
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string,
|
|
401
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number,
|
|
402
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode,
|
|
392
|
+
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
393
|
+
stroke?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
394
|
+
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
395
|
+
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
396
|
+
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
397
|
+
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
398
|
+
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
399
|
+
opacity?: import("../types/index.js").ChannelAccessor<Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
400
|
+
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
401
|
+
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
402
|
+
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
403
403
|
clipPath?: string | undefined;
|
|
404
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string,
|
|
405
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering,
|
|
406
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string,
|
|
404
|
+
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
405
|
+
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
406
|
+
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
407
407
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
408
408
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
409
409
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
@@ -435,7 +435,7 @@ export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
|
435
435
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
436
436
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
437
437
|
class?: string | null | undefined;
|
|
438
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor,
|
|
439
|
-
data:
|
|
438
|
+
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/index.js").RawValue>>;
|
|
439
|
+
data: Record<string | symbol, import("../types/index.js").RawValue>[];
|
|
440
440
|
};
|
|
441
441
|
export {};
|