svelteplot 0.10.2 → 0.10.3-pr-370.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/dist/Mark.svelte.d.ts +4 -4
- package/dist/constants.d.ts +1 -1
- package/dist/helpers/colors.d.ts +8 -11
- package/dist/helpers/curves.d.ts +2 -2
- package/dist/helpers/facets.d.ts +1 -1
- package/dist/helpers/getBaseStyles.d.ts +2 -4
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/reduce.d.ts +1 -1
- package/dist/helpers/scales.d.ts +7 -7
- package/dist/helpers/symbols.d.ts +1 -1
- package/dist/helpers/time.d.ts +3 -3
- package/dist/helpers/typeChecks.d.ts +4 -4
- package/dist/marks/Area.svelte.d.ts +5 -4
- package/dist/marks/AreaX.svelte.d.ts +4 -4
- package/dist/marks/AreaY.svelte.d.ts +4 -4
- package/dist/marks/Arrow.svelte.d.ts +5 -4
- package/dist/marks/AxisX.svelte.d.ts +6 -5
- package/dist/marks/AxisY.svelte.d.ts +6 -5
- package/dist/marks/BarX.svelte.d.ts +4 -4
- package/dist/marks/BarY.svelte.d.ts +5 -4
- package/dist/marks/BollingerX.svelte.d.ts +2 -77
- package/dist/marks/BollingerY.svelte.d.ts +2 -77
- package/dist/marks/BoxY.svelte.d.ts +1 -64
- package/dist/marks/Brush.svelte.d.ts +1 -64
- package/dist/marks/Cell.svelte.d.ts +5 -4
- package/dist/marks/CellX.svelte.d.ts +30 -30
- package/dist/marks/CellY.svelte.d.ts +30 -30
- package/dist/marks/CustomMark.svelte.d.ts +2 -85
- package/dist/marks/DifferenceY.svelte.d.ts +1 -64
- package/dist/marks/Dot.svelte.d.ts +5 -4
- package/dist/marks/DotX.svelte.d.ts +5 -5
- package/dist/marks/DotY.svelte.d.ts +5 -5
- package/dist/marks/Frame.svelte.d.ts +6 -5
- package/dist/marks/Geo.svelte.d.ts +5 -4
- package/dist/marks/GridX.svelte.d.ts +5 -4
- package/dist/marks/GridY.svelte.d.ts +5 -4
- package/dist/marks/Image.svelte.d.ts +5 -4
- package/dist/marks/Line.svelte.d.ts +4 -4
- package/dist/marks/LineX.svelte.d.ts +6 -6
- package/dist/marks/LineY.svelte.d.ts +6 -6
- package/dist/marks/Link.svelte.d.ts +5 -4
- package/dist/marks/Rect.svelte.d.ts +5 -4
- package/dist/marks/RuleX.svelte.d.ts +5 -4
- package/dist/marks/RuleY.svelte.d.ts +5 -4
- package/dist/marks/Spike.svelte.d.ts +5 -5
- package/dist/marks/Text.svelte.d.ts +9 -8
- package/dist/marks/TickX.svelte.d.ts +5 -4
- package/dist/marks/TickY.svelte.d.ts +5 -4
- package/dist/marks/Trail.svelte.d.ts +1 -64
- package/dist/marks/Vector.svelte.d.ts +5 -4
- package/dist/marks/WaffleX.svelte.d.ts +2 -86
- package/dist/marks/WaffleY.svelte.d.ts +5 -4
- package/dist/marks/helpers/Box.svelte.d.ts +1 -64
- package/dist/marks/helpers/MarkerPath.svelte.d.ts +2 -107
- package/dist/transforms/centroid.d.ts +1 -4
- package/dist/transforms/interval.d.ts +8 -8
- package/dist/transforms/recordize.d.ts +4 -7
- package/dist/transforms/rename.d.ts +1 -1
- package/dist/transforms/select.d.ts +28 -28
- package/dist/transforms/sort.d.ts +14 -19
- package/dist/transforms/stack.d.ts +12 -12
- package/dist/transforms/window.d.ts +2 -136
- package/package.json +13 -5
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import type { DataRow, TransformArg } from '../types/index.js';
|
|
2
|
-
export declare const SORT_KEY:
|
|
3
|
-
export declare const IS_SORTED:
|
|
2
|
+
export declare const SORT_KEY: any;
|
|
3
|
+
export declare const IS_SORTED: any;
|
|
4
4
|
export declare function sort<T>({ data, ...channels }: TransformArg<T>, options?: {
|
|
5
5
|
reverse?: boolean;
|
|
6
6
|
}): {
|
|
7
|
-
[IS_SORTED]: string | number | true | symbol | object;
|
|
8
7
|
sort: null;
|
|
9
8
|
filter?: import("../types/index.js").ConstantAccessor<boolean, T>;
|
|
10
9
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -12,8 +11,8 @@ export declare function sort<T>({ data, ...channels }: TransformArg<T>, options?
|
|
|
12
11
|
fy?: import("../types/channel.js").ChannelAccessor<T>;
|
|
13
12
|
dx?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
14
13
|
dy?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
15
|
-
dodgeX?:
|
|
16
|
-
dodgeY?:
|
|
14
|
+
dodgeX?: DodgeXOptions;
|
|
15
|
+
dodgeY?: DodgeYOptions;
|
|
17
16
|
fill?: import("../types/channel.js").ChannelAccessor<T>;
|
|
18
17
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
19
18
|
stroke?: import("../types/channel.js").ChannelAccessor<T>;
|
|
@@ -64,9 +63,7 @@ export declare function sort<T>({ data, ...channels }: TransformArg<T>, options?
|
|
|
64
63
|
class?: string | undefined;
|
|
65
64
|
style?: string | undefined;
|
|
66
65
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, T>;
|
|
67
|
-
data:
|
|
68
|
-
[SORT_KEY]: string | number | Date;
|
|
69
|
-
}, typeof SORT_KEY>[];
|
|
66
|
+
data: any;
|
|
70
67
|
} | {
|
|
71
68
|
filter?: import("../types/index.js").ConstantAccessor<boolean, T>;
|
|
72
69
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -74,14 +71,14 @@ export declare function sort<T>({ data, ...channels }: TransformArg<T>, options?
|
|
|
74
71
|
fy?: import("../types/channel.js").ChannelAccessor<T>;
|
|
75
72
|
dx?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
76
73
|
dy?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
77
|
-
dodgeX?:
|
|
78
|
-
dodgeY?:
|
|
74
|
+
dodgeX?: DodgeXOptions;
|
|
75
|
+
dodgeY?: DodgeYOptions;
|
|
79
76
|
fill?: import("../types/channel.js").ChannelAccessor<T>;
|
|
80
77
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
81
|
-
sort?:
|
|
78
|
+
sort?: {
|
|
82
79
|
channel: string;
|
|
83
80
|
order?: "ascending" | "descending";
|
|
84
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
|
|
81
|
+
} | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, T>;
|
|
85
82
|
stroke?: import("../types/channel.js").ChannelAccessor<T>;
|
|
86
83
|
strokeWidth?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
87
84
|
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, T>;
|
|
@@ -139,15 +136,14 @@ export declare function shuffle({ data, ...channels }: TransformArg<DataRow[]>,
|
|
|
139
136
|
seed?: number;
|
|
140
137
|
}): {
|
|
141
138
|
sort: null;
|
|
142
|
-
[IS_SORTED]: boolean;
|
|
143
139
|
filter?: import("../types/index.js").ConstantAccessor<boolean, DataRow[]>;
|
|
144
140
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
145
141
|
fx?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
146
142
|
fy?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
147
143
|
dx?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
148
144
|
dy?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
149
|
-
dodgeX?:
|
|
150
|
-
dodgeY?:
|
|
145
|
+
dodgeX?: DodgeXOptions;
|
|
146
|
+
dodgeY?: DodgeYOptions;
|
|
151
147
|
fill?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
152
148
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
153
149
|
stroke?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
@@ -205,15 +201,14 @@ export declare function shuffle({ data, ...channels }: TransformArg<DataRow[]>,
|
|
|
205
201
|
*/
|
|
206
202
|
export declare function reverse({ data, ...channels }: TransformArg<DataRow[]>): {
|
|
207
203
|
sort: null;
|
|
208
|
-
[IS_SORTED]: boolean;
|
|
209
204
|
filter?: import("../types/index.js").ConstantAccessor<boolean, DataRow[]>;
|
|
210
205
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
211
206
|
fx?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
212
207
|
fy?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
213
208
|
dx?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
214
209
|
dy?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
215
|
-
dodgeX?:
|
|
216
|
-
dodgeY?:
|
|
210
|
+
dodgeX?: DodgeXOptions;
|
|
211
|
+
dodgeY?: DodgeYOptions;
|
|
217
212
|
fill?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
218
213
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRow[]>;
|
|
219
214
|
stroke?: import("../types/channel.js").ChannelAccessor<DataRow[]>;
|
|
@@ -264,5 +259,5 @@ export declare function reverse({ data, ...channels }: TransformArg<DataRow[]>):
|
|
|
264
259
|
class?: string | undefined;
|
|
265
260
|
style?: string | undefined;
|
|
266
261
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, DataRow[]>;
|
|
267
|
-
data:
|
|
262
|
+
data: any;
|
|
268
263
|
};
|
|
@@ -12,21 +12,21 @@ export declare function stackMosaicX<T>(args: any, opts: any): {
|
|
|
12
12
|
fx: ChannelAccessor<unknown>;
|
|
13
13
|
fy: ChannelAccessor<unknown>;
|
|
14
14
|
data: unknown[];
|
|
15
|
-
x:
|
|
16
|
-
x1:
|
|
17
|
-
x2:
|
|
18
|
-
y:
|
|
19
|
-
y1:
|
|
20
|
-
y2:
|
|
15
|
+
x: any;
|
|
16
|
+
x1: any;
|
|
17
|
+
x2: any;
|
|
18
|
+
y: any;
|
|
19
|
+
y1: any;
|
|
20
|
+
y2: any;
|
|
21
21
|
};
|
|
22
22
|
export declare function stackMosaicY<T>(args: any, opts: any): {
|
|
23
23
|
fx: ChannelAccessor<unknown>;
|
|
24
24
|
fy: ChannelAccessor<unknown>;
|
|
25
25
|
data: unknown[];
|
|
26
|
-
x:
|
|
27
|
-
x1:
|
|
28
|
-
x2:
|
|
29
|
-
y:
|
|
30
|
-
y1:
|
|
31
|
-
y2:
|
|
26
|
+
x: any;
|
|
27
|
+
x1: any;
|
|
28
|
+
x2: any;
|
|
29
|
+
y: any;
|
|
30
|
+
y1: any;
|
|
31
|
+
y2: any;
|
|
32
32
|
};
|
|
@@ -7,140 +7,6 @@ type WindowOptions = {
|
|
|
7
7
|
reduce: ReducerName;
|
|
8
8
|
strict: boolean;
|
|
9
9
|
};
|
|
10
|
-
export declare function windowX(args: TransformArg<DataRecord>, options: WindowOptions):
|
|
11
|
-
|
|
12
|
-
facet?: "auto" | "include" | "exclude" | undefined;
|
|
13
|
-
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
14
|
-
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
15
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
16
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
17
|
-
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
18
|
-
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
19
|
-
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
20
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
21
|
-
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
22
|
-
channel: string;
|
|
23
|
-
order?: "ascending" | "descending";
|
|
24
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
25
|
-
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
26
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
27
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
28
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
29
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
30
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
31
|
-
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
32
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
33
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
34
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
35
|
-
clipPath?: string | undefined;
|
|
36
|
-
mask?: string | undefined;
|
|
37
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
38
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
39
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
40
|
-
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
41
|
-
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
42
|
-
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
43
|
-
onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
44
|
-
onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
45
|
-
onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
46
|
-
onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
47
|
-
onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
48
|
-
onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
49
|
-
onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
50
|
-
onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
51
|
-
onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
52
|
-
onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
53
|
-
onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
54
|
-
onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
55
|
-
onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
56
|
-
onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
57
|
-
ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
58
|
-
ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
59
|
-
ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
60
|
-
ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
61
|
-
ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
62
|
-
ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
63
|
-
ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
64
|
-
ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
65
|
-
ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
66
|
-
ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
67
|
-
ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
68
|
-
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
69
|
-
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
70
|
-
class?: string | undefined;
|
|
71
|
-
style?: string | undefined;
|
|
72
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
73
|
-
data: {
|
|
74
|
-
[x: string]: import("../types/data.js").RawValue;
|
|
75
|
-
[x: symbol]: import("../types/data.js").RawValue;
|
|
76
|
-
}[];
|
|
77
|
-
};
|
|
78
|
-
export declare function windowY(args: TransformArg<DataRecord>, options: WindowOptions): {
|
|
79
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
80
|
-
facet?: "auto" | "include" | "exclude" | undefined;
|
|
81
|
-
fx?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
82
|
-
fy?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
83
|
-
dx?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
84
|
-
dy?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
85
|
-
dodgeX?: import("./dodge.js").DodgeXOptions | undefined;
|
|
86
|
-
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
87
|
-
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
88
|
-
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
89
|
-
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
90
|
-
channel: string;
|
|
91
|
-
order?: "ascending" | "descending";
|
|
92
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
93
|
-
stroke?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
94
|
-
strokeWidth?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
95
|
-
strokeOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
96
|
-
strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
97
|
-
strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
98
|
-
strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
99
|
-
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
100
|
-
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
101
|
-
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
102
|
-
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
103
|
-
clipPath?: string | undefined;
|
|
104
|
-
mask?: string | undefined;
|
|
105
|
-
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
106
|
-
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
107
|
-
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
108
|
-
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
109
|
-
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
110
|
-
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
111
|
-
onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
112
|
-
onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
113
|
-
onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
114
|
-
onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
115
|
-
onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
116
|
-
onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
117
|
-
onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
118
|
-
onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
119
|
-
onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
120
|
-
onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
121
|
-
onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
122
|
-
onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
123
|
-
onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
124
|
-
onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
125
|
-
ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
126
|
-
ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
127
|
-
ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
128
|
-
ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
129
|
-
ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
130
|
-
ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
131
|
-
ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
132
|
-
ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
133
|
-
ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
134
|
-
ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
135
|
-
ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
136
|
-
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
137
|
-
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement> | undefined;
|
|
138
|
-
class?: string | undefined;
|
|
139
|
-
style?: string | undefined;
|
|
140
|
-
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
141
|
-
data: {
|
|
142
|
-
[x: string]: import("../types/data.js").RawValue;
|
|
143
|
-
[x: symbol]: import("../types/data.js").RawValue;
|
|
144
|
-
}[];
|
|
145
|
-
};
|
|
10
|
+
export declare function windowX(args: TransformArg<DataRecord>, options: WindowOptions): any;
|
|
11
|
+
export declare function windowY(args: TransformArg<DataRecord>, options: WindowOptions): any;
|
|
146
12
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelteplot",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3-pr-370.0",
|
|
4
4
|
"description": "A Svelte-native data visualization framework based on the layered grammar of graphics principles.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"svelte",
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
"bugs": {
|
|
17
17
|
"url": "https://github.com/svelteplot/svelteplot/issues"
|
|
18
18
|
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/svelteplot/svelteplot.git"
|
|
22
|
+
},
|
|
19
23
|
"license": "ISC",
|
|
20
24
|
"author": {
|
|
21
25
|
"name": "Gregor Aisch",
|
|
@@ -61,7 +65,7 @@
|
|
|
61
65
|
"docs:api:marks": "node scripts/generate-api.js --marks && prettier --write .",
|
|
62
66
|
"docs:api:plot": "node scripts/generate-api.js --plot && prettier --write .",
|
|
63
67
|
"docs:api:transforms": "node scripts/generate-api.js --transforms && prettier --write .",
|
|
64
|
-
"format": "prettier --write .",
|
|
68
|
+
"format": "eslint --fix package.json && prettier --write .",
|
|
65
69
|
"lint": "prettier --check src && eslint src package.json",
|
|
66
70
|
"lint:types": "tsc --noEmit",
|
|
67
71
|
"prepack": "npx svelte-package",
|
|
@@ -89,8 +93,7 @@
|
|
|
89
93
|
"es-toolkit": "^1.44.0",
|
|
90
94
|
"fast-equals": "^6.0.0",
|
|
91
95
|
"interval-tree-1d": "^1.0.4",
|
|
92
|
-
"merge-deep": "^3.0.3"
|
|
93
|
-
"svelte": "5"
|
|
96
|
+
"merge-deep": "^3.0.3"
|
|
94
97
|
},
|
|
95
98
|
"devDependencies": {
|
|
96
99
|
"@aitodotai/json-stringify-pretty-compact": "^1.3.0",
|
|
@@ -151,6 +154,7 @@
|
|
|
151
154
|
"resize-observer-polyfill": "^1.5.1",
|
|
152
155
|
"sass": "^1.97.3",
|
|
153
156
|
"shiki": "^3.21.0",
|
|
157
|
+
"svelte": "5",
|
|
154
158
|
"svelte-check": "^4.3.5",
|
|
155
159
|
"svelte-eslint-parser": "1.4.1",
|
|
156
160
|
"svelte-highlight": "^7.9.0",
|
|
@@ -170,5 +174,9 @@
|
|
|
170
174
|
"vitest-matchmedia-mock": "^2.0.3",
|
|
171
175
|
"wx-svelte-grid": "^2.5.0",
|
|
172
176
|
"yoctocolors": "^2.1.2"
|
|
173
|
-
}
|
|
177
|
+
},
|
|
178
|
+
"peerDependencies": {
|
|
179
|
+
"svelte": "^5.43.0"
|
|
180
|
+
},
|
|
181
|
+
"packageManager": "pnpm@10.0.0"
|
|
174
182
|
}
|