svelteplot 0.3.11 → 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.
Files changed (40) hide show
  1. package/dist/core/FacetGrid.svelte +3 -0
  2. package/dist/helpers/autoScales.js +1 -1
  3. package/dist/helpers/group.d.ts +2 -2
  4. package/dist/helpers/index.d.ts +3 -6
  5. package/dist/helpers/index.js +1 -1
  6. package/dist/helpers/mergeDeep.js +0 -1
  7. package/dist/helpers/reduce.js +0 -1
  8. package/dist/helpers/scales.js +1 -1
  9. package/dist/marks/AreaX.svelte.d.ts +29 -29
  10. package/dist/marks/AreaY.svelte.d.ts +29 -29
  11. package/dist/marks/DotX.svelte.d.ts +29 -29
  12. package/dist/marks/DotY.svelte.d.ts +29 -29
  13. package/dist/marks/GridX.svelte +4 -2
  14. package/dist/marks/GridY.svelte +4 -2
  15. package/dist/marks/HTMLTooltip.svelte +38 -12
  16. package/dist/marks/HTMLTooltip.svelte.d.ts +2 -0
  17. package/dist/marks/LineX.svelte.d.ts +33 -33
  18. package/dist/marks/LineY.svelte.d.ts +33 -33
  19. package/dist/marks/Spike.svelte.d.ts +27 -27
  20. package/dist/marks/Text.svelte +9 -6
  21. package/dist/marks/Text.svelte.d.ts +8 -4
  22. package/dist/marks/helpers/MultilineText.svelte +6 -8
  23. package/dist/transforms/bollinger.d.ts +22 -22
  24. package/dist/transforms/filter.d.ts +2 -2
  25. package/dist/transforms/group.d.ts +4 -4
  26. package/dist/transforms/index.d.ts +1 -1
  27. package/dist/transforms/index.js +1 -1
  28. package/dist/transforms/map.d.ts +4 -184
  29. package/dist/transforms/normalize.d.ts +3 -123
  30. package/dist/transforms/select.d.ts +161 -161
  31. package/dist/transforms/sort.d.ts +50 -50
  32. package/dist/transforms/stack.d.ts +23 -1
  33. package/dist/transforms/stack.js +71 -2
  34. package/dist/transforms/window.d.ts +44 -46
  35. package/dist/types/channel.d.ts +1 -1
  36. package/dist/types/data.d.ts +1 -3
  37. package/dist/types/index.d.ts +4 -4
  38. package/dist/types/scale.d.ts +1 -1
  39. package/dist/ui/ExamplesGrid.svelte +2 -1
  40. package/package.json +16 -16
@@ -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, DataRecord>;
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<DataRecord>;
12
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
13
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
14
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
15
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
16
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
21
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
22
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
23
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
24
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
25
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
26
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
27
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
28
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
29
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
30
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
33
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
34
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
67
- data: DataRecord[];
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, DataRecord>;
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<DataRecord>;
76
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
77
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
78
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
79
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
80
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
85
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
86
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
87
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
88
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
89
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
90
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
91
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
92
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
93
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
94
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
97
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
98
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
131
- data: DataRecord[];
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, DataRecord>;
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<DataRecord>;
140
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
141
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
142
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
143
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
144
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
149
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
150
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
151
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
152
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
153
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
154
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
155
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
156
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
157
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
158
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
161
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
162
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
195
- data: DataRecord[];
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, DataRecord>;
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<DataRecord>;
201
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
202
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
203
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
204
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
205
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
210
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
211
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
212
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
213
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
214
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
215
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
216
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
217
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
218
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
219
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
222
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
223
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
256
- data: DataRecord[];
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, DataRecord>;
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<DataRecord>;
262
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
263
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
264
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
265
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
266
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
271
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
272
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
273
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
274
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
275
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
276
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
277
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
278
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
279
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
280
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
283
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
284
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
317
- data: DataRecord[];
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, DataRecord>;
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<DataRecord>;
323
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
324
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
325
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
326
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
327
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
332
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
333
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
334
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
335
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
336
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
337
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
338
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
339
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
340
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
341
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
344
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
345
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
378
- data: DataRecord[];
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, DataRecord>;
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<DataRecord>;
384
- fy?: import("../types/index.js").ChannelAccessor<DataRecord>;
385
- dx?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
386
- dy?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
387
- fill?: import("../types/index.js").ChannelAccessor<DataRecord>;
388
- fillOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
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, DataRecord>;
393
- stroke?: import("../types/index.js").ChannelAccessor<DataRecord>;
394
- strokeWidth?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
395
- strokeOpacity?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
396
- strokeLinejoin?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, DataRecord>;
397
- strokeLinecap?: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, DataRecord>;
398
- strokeMiterlimit?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
399
- opacity?: import("../types/index.js").ChannelAccessor<DataRecord>;
400
- strokeDasharray?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
401
- strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, DataRecord>;
402
- mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, DataRecord>;
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, DataRecord>;
405
- shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, DataRecord>;
406
- paintOrder?: import("../types/index.js").ConstantAccessor<string, DataRecord>;
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, DataRecord>;
439
- data: DataRecord[];
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 {};