svelteplot 0.5.3 → 0.6.0-pr-256.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/dist/Mark.svelte.d.ts +5 -4
- package/dist/helpers/colors.d.ts +1 -1
- package/dist/helpers/index.d.ts +2 -2
- package/dist/helpers/scales.d.ts +2 -2
- package/dist/helpers/typeChecks.d.ts +4 -4
- package/dist/marks/Area.svelte.d.ts +5 -4
- package/dist/marks/AreaX.svelte.d.ts +6 -5
- 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 +5 -4
- package/dist/marks/BarY.svelte.d.ts +5 -4
- package/dist/marks/BollingerX.svelte.d.ts +2 -76
- package/dist/marks/BollingerY.svelte.d.ts +2 -76
- package/dist/marks/BoxY.svelte.d.ts +6 -68
- package/dist/marks/Cell.svelte.d.ts +5 -4
- package/dist/marks/CustomMark.svelte +9 -3
- package/dist/marks/CustomMark.svelte.d.ts +2 -83
- package/dist/marks/CustomMarkHTML.svelte.d.ts +1 -1
- package/dist/marks/DifferenceY.svelte.d.ts +7 -69
- package/dist/marks/Dot.svelte.d.ts +5 -4
- package/dist/marks/DotX.svelte.d.ts +6 -5
- package/dist/marks/DotY.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 +76 -0
- package/dist/marks/Image.svelte.d.ts +19 -0
- package/dist/marks/Line.svelte +2 -2
- package/dist/marks/Line.svelte.d.ts +6 -5
- package/dist/marks/LineX.svelte.d.ts +7 -6
- package/dist/marks/LineY.svelte.d.ts +7 -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 +6 -5
- package/dist/marks/Text.svelte.d.ts +7 -6
- package/dist/marks/TickX.svelte.d.ts +5 -4
- package/dist/marks/TickY.svelte.d.ts +5 -4
- package/dist/marks/Vector.svelte.d.ts +5 -4
- package/dist/marks/helpers/Anchor.svelte +16 -2
- package/dist/marks/helpers/Anchor.svelte.d.ts +28 -14
- package/dist/marks/helpers/MarkerPath.svelte.d.ts +2 -164
- package/dist/marks/helpers/RectPath.svelte.d.ts +3 -65
- package/dist/marks/index.d.ts +1 -0
- package/dist/marks/index.js +1 -0
- package/dist/transforms/bollinger.d.ts +1 -69
- package/dist/transforms/group.d.ts +4 -12
- package/dist/transforms/interval.d.ts +2 -128
- package/dist/transforms/recordize.d.ts +1 -4
- package/dist/transforms/select.d.ts +7 -448
- package/dist/transforms/sort.d.ts +3 -251
- package/dist/transforms/stack.d.ts +3 -23
- package/dist/transforms/window.d.ts +2 -134
- package/dist/types/plot.d.ts +5 -1
- package/package.json +129 -128
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { DataRecord, ConstantAccessor, ChannelAccessor, CurveName, MarkerOptions, RawValue } from '../types/index.js';
|
|
2
|
+
import { replaceChannels } from '../transforms/rename.js';
|
|
2
3
|
import { type CurveFactory } from 'd3-shape';
|
|
3
4
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
4
5
|
props(): Partial<{
|
|
@@ -8,14 +9,14 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
8
9
|
fy: ChannelAccessor<Datum>;
|
|
9
10
|
dx: ConstantAccessor<number, Datum>;
|
|
10
11
|
dy: ConstantAccessor<number, Datum>;
|
|
11
|
-
dodgeX:
|
|
12
|
-
dodgeY:
|
|
12
|
+
dodgeX: replaceChannels;
|
|
13
|
+
dodgeY: replaceChannels;
|
|
13
14
|
fill: ChannelAccessor<Datum>;
|
|
14
15
|
fillOpacity: ConstantAccessor<number, Datum>;
|
|
15
|
-
sort:
|
|
16
|
+
sort: {
|
|
16
17
|
channel: string;
|
|
17
18
|
order?: "ascending" | "descending";
|
|
18
|
-
} | ConstantAccessor<RawValue, Datum>;
|
|
19
|
+
} | ((a: RawValue, b: RawValue) => number) | ConstantAccessor<RawValue, Datum>;
|
|
19
20
|
stroke: ChannelAccessor<Datum>;
|
|
20
21
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
21
22
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { intervalX } from '../index.js';
|
|
1
2
|
import type { DataRecord, BaseRectMarkProps, ChannelAccessor, LinkableMarkProps } from '../types/index.js';
|
|
2
3
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
3
4
|
props(): Partial<{
|
|
@@ -7,14 +8,14 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
7
8
|
fy: ChannelAccessor<Datum>;
|
|
8
9
|
dx: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
9
10
|
dy: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
10
|
-
dodgeX:
|
|
11
|
-
dodgeY:
|
|
11
|
+
dodgeX: intervalX;
|
|
12
|
+
dodgeY: intervalX;
|
|
12
13
|
fill: ChannelAccessor<Datum>;
|
|
13
14
|
fillOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
14
|
-
sort:
|
|
15
|
+
sort: {
|
|
15
16
|
channel: string;
|
|
16
17
|
order?: "ascending" | "descending";
|
|
17
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
19
|
stroke: ChannelAccessor<Datum>;
|
|
19
20
|
strokeWidth: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
20
21
|
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { recordizeX } from '../transforms/recordize.js';
|
|
1
2
|
import type { DataRecord, ConstantAccessor, ChannelAccessor, RawValue } from '../types/index.js';
|
|
2
3
|
declare class __sveltets_Render<Datum = DataRecord | RawValue> {
|
|
3
4
|
props(): Omit<Partial<{
|
|
@@ -7,14 +8,14 @@ declare class __sveltets_Render<Datum = DataRecord | RawValue> {
|
|
|
7
8
|
fy: ChannelAccessor<Datum>;
|
|
8
9
|
dx: ConstantAccessor<number, Datum>;
|
|
9
10
|
dy: ConstantAccessor<number, Datum>;
|
|
10
|
-
dodgeX:
|
|
11
|
-
dodgeY:
|
|
11
|
+
dodgeX: recordizeX;
|
|
12
|
+
dodgeY: recordizeX;
|
|
12
13
|
fill: ChannelAccessor<Datum>;
|
|
13
14
|
fillOpacity: ConstantAccessor<number, Datum>;
|
|
14
|
-
sort:
|
|
15
|
+
sort: {
|
|
15
16
|
channel: string;
|
|
16
17
|
order?: "ascending" | "descending";
|
|
17
|
-
} | ConstantAccessor<RawValue, Datum>;
|
|
18
|
+
} | ((a: RawValue, b: RawValue) => number) | ConstantAccessor<RawValue, Datum>;
|
|
18
19
|
stroke: ChannelAccessor<Datum>;
|
|
19
20
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
20
21
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { recordizeY } from '../transforms/recordize.js';
|
|
1
2
|
import type { DataRecord, ConstantAccessor, ChannelAccessor } from '../types/index.js';
|
|
2
3
|
declare class __sveltets_Render<Datum = DataRecord> {
|
|
3
4
|
props(): Omit<Partial<{
|
|
@@ -7,14 +8,14 @@ declare class __sveltets_Render<Datum = DataRecord> {
|
|
|
7
8
|
fy: ChannelAccessor<Datum>;
|
|
8
9
|
dx: ConstantAccessor<number, Datum>;
|
|
9
10
|
dy: ConstantAccessor<number, Datum>;
|
|
10
|
-
dodgeX:
|
|
11
|
-
dodgeY:
|
|
11
|
+
dodgeX: recordizeY;
|
|
12
|
+
dodgeY: recordizeY;
|
|
12
13
|
fill: ChannelAccessor<Datum>;
|
|
13
14
|
fillOpacity: ConstantAccessor<number, Datum>;
|
|
14
|
-
sort:
|
|
15
|
+
sort: {
|
|
15
16
|
channel: string;
|
|
16
17
|
order?: "ascending" | "descending";
|
|
17
|
-
} | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
19
|
stroke: ChannelAccessor<Datum>;
|
|
19
20
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
20
21
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { ChannelAccessor, DataRecord } from '../types/index.js';
|
|
2
|
+
import { getPlotDefaults } from '../hooks/plotDefaults.js';
|
|
2
3
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
3
4
|
props(): Omit<Partial<{
|
|
4
5
|
filter: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data").RawValue>>;
|
|
@@ -7,14 +8,14 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
7
8
|
fy: ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
8
9
|
dx: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
9
10
|
dy: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
10
|
-
dodgeX:
|
|
11
|
-
dodgeY:
|
|
11
|
+
dodgeX: getPlotDefaults;
|
|
12
|
+
dodgeY: getPlotDefaults;
|
|
12
13
|
fill: ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
13
14
|
fillOpacity: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
14
|
-
sort:
|
|
15
|
+
sort: {
|
|
15
16
|
channel: string;
|
|
16
17
|
order?: "ascending" | "descending";
|
|
17
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, Record<string | symbol, import("../types/data").RawValue>>;
|
|
18
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, Record<string | symbol, import("../types/data").RawValue>>;
|
|
18
19
|
stroke: ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
19
20
|
strokeWidth: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
20
21
|
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
@@ -73,7 +74,7 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
73
74
|
shape?: "arrow" | "spike" | "arrow-filled" | import("./Vector.svelte").ShapeRenderer;
|
|
74
75
|
children?: import("svelte").Snippet;
|
|
75
76
|
canvas?: boolean;
|
|
76
|
-
}, "
|
|
77
|
+
}, "r" | "length" | "x" | "y" | "data" | "rotate"> & {
|
|
77
78
|
data: Datum[];
|
|
78
79
|
x: ChannelAccessor<Datum>;
|
|
79
80
|
y: ChannelAccessor<Datum>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type * as CSS from 'csstype';
|
|
2
2
|
import { type Snippet } from 'svelte';
|
|
3
3
|
import type { DataRecord, ConstantAccessor, ChannelAccessor, LinkableMarkProps } from '../types/index.js';
|
|
4
|
+
import { sort } from '../index.js';
|
|
4
5
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
5
6
|
props(): Partial<{
|
|
6
7
|
filter: ConstantAccessor<boolean, Datum>;
|
|
@@ -9,14 +10,14 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
9
10
|
fy: ChannelAccessor<Datum>;
|
|
10
11
|
dx: ConstantAccessor<number, Datum>;
|
|
11
12
|
dy: ConstantAccessor<number, Datum>;
|
|
12
|
-
dodgeX:
|
|
13
|
-
dodgeY:
|
|
13
|
+
dodgeX: sort;
|
|
14
|
+
dodgeY: sort;
|
|
14
15
|
fill: ChannelAccessor<Datum>;
|
|
15
16
|
fillOpacity: ConstantAccessor<number, Datum>;
|
|
16
|
-
sort:
|
|
17
|
+
sort: {
|
|
17
18
|
channel: string;
|
|
18
19
|
order?: "ascending" | "descending";
|
|
19
|
-
} | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
20
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
20
21
|
stroke: ChannelAccessor<Datum>;
|
|
21
22
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
22
23
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -75,7 +76,7 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
75
76
|
* the font size of the text
|
|
76
77
|
*/
|
|
77
78
|
fontFamily?: ConstantAccessor<CSS.Property.FontFamily, Datum>;
|
|
78
|
-
fontSize?: ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | (string & {}) | "small" | "
|
|
79
|
+
fontSize?: ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | (string & {}) | "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Datum>;
|
|
79
80
|
fontWeight?: ConstantAccessor<CSS.Property.FontWeight, Datum>;
|
|
80
81
|
fontStyle?: ConstantAccessor<CSS.Property.FontStyle, Datum>;
|
|
81
82
|
fontVariant?: ConstantAccessor<CSS.Property.FontVariant, Datum>;
|
|
@@ -100,7 +101,7 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
100
101
|
* @default 1.2
|
|
101
102
|
*/
|
|
102
103
|
lineHeight?: ConstantAccessor<number, Datum>;
|
|
103
|
-
frameAnchor?: ConstantAccessor<"
|
|
104
|
+
frameAnchor?: ConstantAccessor<"bottom" | "top" | "left" | "right" | "middle" | "top-left" | "bottom-left" | "top-right" | "bottom-right", Datum>;
|
|
104
105
|
/**
|
|
105
106
|
* rotate text by angle in degrees
|
|
106
107
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { ChannelAccessor, DataRow, ConstantAccessor } from '../types/index.js';
|
|
2
|
+
import { recordizeX } from '../index.js';
|
|
2
3
|
declare class __sveltets_Render<Datum extends DataRow> {
|
|
3
4
|
props(): Omit<Partial<{
|
|
4
5
|
filter: ConstantAccessor<boolean, Datum>;
|
|
@@ -7,14 +8,14 @@ declare class __sveltets_Render<Datum extends DataRow> {
|
|
|
7
8
|
fy: ChannelAccessor<Datum>;
|
|
8
9
|
dx: ConstantAccessor<number, Datum>;
|
|
9
10
|
dy: ConstantAccessor<number, Datum>;
|
|
10
|
-
dodgeX:
|
|
11
|
-
dodgeY:
|
|
11
|
+
dodgeX: recordizeX;
|
|
12
|
+
dodgeY: recordizeX;
|
|
12
13
|
fill: ChannelAccessor<Datum>;
|
|
13
14
|
fillOpacity: ConstantAccessor<number, Datum>;
|
|
14
|
-
sort:
|
|
15
|
+
sort: {
|
|
15
16
|
channel: string;
|
|
16
17
|
order?: "ascending" | "descending";
|
|
17
|
-
} | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
19
|
stroke: ChannelAccessor<Datum>;
|
|
19
20
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
20
21
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { ChannelAccessor, DataRow, ConstantAccessor } from '../types/index.js';
|
|
2
|
+
import { recordizeY } from '../index.js';
|
|
2
3
|
declare class __sveltets_Render<Datum extends DataRow> {
|
|
3
4
|
props(): Omit<Partial<{
|
|
4
5
|
filter: ConstantAccessor<boolean, Datum>;
|
|
@@ -7,14 +8,14 @@ declare class __sveltets_Render<Datum extends DataRow> {
|
|
|
7
8
|
fy: ChannelAccessor<Datum>;
|
|
8
9
|
dx: ConstantAccessor<number, Datum>;
|
|
9
10
|
dy: ConstantAccessor<number, Datum>;
|
|
10
|
-
dodgeX:
|
|
11
|
-
dodgeY:
|
|
11
|
+
dodgeX: recordizeY;
|
|
12
|
+
dodgeY: recordizeY;
|
|
12
13
|
fill: ChannelAccessor<Datum>;
|
|
13
14
|
fillOpacity: ConstantAccessor<number, Datum>;
|
|
14
|
-
sort:
|
|
15
|
+
sort: {
|
|
15
16
|
channel: string;
|
|
16
17
|
order?: "ascending" | "descending";
|
|
17
|
-
} | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | ConstantAccessor<import("../types/data").RawValue, Datum>;
|
|
18
19
|
stroke: ChannelAccessor<Datum>;
|
|
19
20
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
20
21
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -4,6 +4,7 @@ export type ShapeRenderer = {
|
|
|
4
4
|
};
|
|
5
5
|
import type { DataRecord, ChannelAccessor } from '../types/index.js';
|
|
6
6
|
import { type Snippet } from 'svelte';
|
|
7
|
+
import { sort } from '../index.js';
|
|
7
8
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
8
9
|
props(): Partial<{
|
|
9
10
|
filter: import("../types/index.js").ConstantAccessor<boolean, Datum>;
|
|
@@ -12,14 +13,14 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
12
13
|
fy: ChannelAccessor<Datum>;
|
|
13
14
|
dx: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
14
15
|
dy: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
15
|
-
dodgeX:
|
|
16
|
-
dodgeY:
|
|
16
|
+
dodgeX: sort;
|
|
17
|
+
dodgeY: sort;
|
|
17
18
|
fill: ChannelAccessor<Datum>;
|
|
18
19
|
fillOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
19
|
-
sort:
|
|
20
|
+
sort: {
|
|
20
21
|
channel: string;
|
|
21
22
|
order?: "ascending" | "descending";
|
|
22
|
-
} | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Datum>;
|
|
23
|
+
} | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data.js").RawValue, Datum>;
|
|
23
24
|
stroke: ChannelAccessor<Datum>;
|
|
24
25
|
strokeWidth: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
25
26
|
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-
<script>
|
|
1
|
+
<script lang="ts" generics="Datum extends Record<string, any>">
|
|
2
2
|
import { resolveProp } from '../../helpers/resolve.js';
|
|
3
|
+
import type { ConstantAccessor } from '../../types';
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
interface AnchorProps {
|
|
6
|
+
datum?: Datum;
|
|
7
|
+
options?: {
|
|
8
|
+
href?: ConstantAccessor<string, Datum>;
|
|
9
|
+
target?: ConstantAccessor<string, Datum>;
|
|
10
|
+
rel?: ConstantAccessor<string, Datum>;
|
|
11
|
+
type?: ConstantAccessor<string, Datum>;
|
|
12
|
+
download?: ConstantAccessor<string, Datum>;
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
children?: () => any;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
let { datum = {}, options = {}, children }: AnchorProps = $props();
|
|
5
19
|
|
|
6
20
|
const href = $derived(resolveProp(options.href, datum, null));
|
|
7
21
|
const target = $derived(resolveProp(options.target, datum, null));
|
|
@@ -1,15 +1,29 @@
|
|
|
1
|
+
import type { ConstantAccessor } from '../../types';
|
|
2
|
+
declare class __sveltets_Render<Datum extends Record<string, any>> {
|
|
3
|
+
props(): {
|
|
4
|
+
datum?: Datum | undefined;
|
|
5
|
+
options?: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
href?: ConstantAccessor<string, Datum_1>;
|
|
8
|
+
target?: ConstantAccessor<string, Datum_1>;
|
|
9
|
+
rel?: ConstantAccessor<string, Datum_1>;
|
|
10
|
+
type?: ConstantAccessor<string, Datum_1>;
|
|
11
|
+
download?: ConstantAccessor<string, Datum_1>;
|
|
12
|
+
} | undefined;
|
|
13
|
+
children?: (() => any) | undefined;
|
|
14
|
+
};
|
|
15
|
+
events(): {};
|
|
16
|
+
slots(): {};
|
|
17
|
+
bindings(): "";
|
|
18
|
+
exports(): {};
|
|
19
|
+
}
|
|
20
|
+
interface $$IsomorphicComponent {
|
|
21
|
+
new <Datum extends Record<string, any>>(options: import('svelte').ComponentConstructorOptions<ReturnType<__sveltets_Render<Datum>['props']>>): import('svelte').SvelteComponent<ReturnType<__sveltets_Render<Datum>['props']>, ReturnType<__sveltets_Render<Datum>['events']>, ReturnType<__sveltets_Render<Datum>['slots']>> & {
|
|
22
|
+
$$bindings?: ReturnType<__sveltets_Render<Datum>['bindings']>;
|
|
23
|
+
} & ReturnType<__sveltets_Render<Datum>['exports']>;
|
|
24
|
+
<Datum extends Record<string, any>>(internal: unknown, props: ReturnType<__sveltets_Render<Datum>['props']> & {}): ReturnType<__sveltets_Render<Datum>['exports']>;
|
|
25
|
+
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
|
|
26
|
+
}
|
|
27
|
+
declare const Anchor: $$IsomorphicComponent;
|
|
28
|
+
type Anchor<Datum extends Record<string, any>> = InstanceType<typeof Anchor<Datum>>;
|
|
1
29
|
export default Anchor;
|
|
2
|
-
type Anchor = {
|
|
3
|
-
$on?(type: string, callback: (e: any) => void): () => void;
|
|
4
|
-
$set?(props: Partial<$$ComponentProps>): void;
|
|
5
|
-
};
|
|
6
|
-
declare const Anchor: import("svelte").Component<{
|
|
7
|
-
datum?: Record<string, any>;
|
|
8
|
-
options?: Record<string, any>;
|
|
9
|
-
children: any;
|
|
10
|
-
}, {}, "">;
|
|
11
|
-
type $$ComponentProps = {
|
|
12
|
-
datum?: Record<string, any>;
|
|
13
|
-
options?: Record<string, any>;
|
|
14
|
-
children: any;
|
|
15
|
-
};
|
|
@@ -1,168 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type { ConstantAccessor, DataRecord, Mark, PlotScales } from '../../types/index.js';
|
|
1
|
+
import type { DataRecord } from '../../types/index.js';
|
|
3
2
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
4
|
-
props():
|
|
5
|
-
filter: ConstantAccessor<boolean, Datum>;
|
|
6
|
-
facet: "auto" | "include" | "exclude";
|
|
7
|
-
fx: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
8
|
-
fy: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
9
|
-
dx: ConstantAccessor<number, Datum>;
|
|
10
|
-
dy: ConstantAccessor<number, Datum>;
|
|
11
|
-
dodgeX: import("../../transforms/dodge").DodgeXOptions;
|
|
12
|
-
dodgeY: import("../../transforms/dodge").DodgeYOptions;
|
|
13
|
-
fill: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
14
|
-
fillOpacity: ConstantAccessor<number, Datum>;
|
|
15
|
-
sort: ((a: import("../../types/index.js").RawValue, b: import("../../types/index.js").RawValue) => number) | {
|
|
16
|
-
channel: string;
|
|
17
|
-
order?: "ascending" | "descending";
|
|
18
|
-
} | ConstantAccessor<import("../../types/index.js").RawValue, Datum>;
|
|
19
|
-
stroke: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
20
|
-
strokeWidth: ConstantAccessor<number, Datum>;
|
|
21
|
-
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
22
|
-
strokeLinejoin: ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
|
|
23
|
-
strokeLinecap: ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
|
|
24
|
-
strokeMiterlimit: ConstantAccessor<number, Datum>;
|
|
25
|
-
opacity: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
26
|
-
strokeDasharray: ConstantAccessor<string, Datum>;
|
|
27
|
-
strokeDashoffset: ConstantAccessor<number, Datum>;
|
|
28
|
-
mixBlendMode: ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
|
|
29
|
-
clipPath: string;
|
|
30
|
-
imageFilter: ConstantAccessor<string, Datum>;
|
|
31
|
-
shapeRendering: ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
|
|
32
|
-
paintOrder: ConstantAccessor<string, Datum>;
|
|
33
|
-
onclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
34
|
-
ondblclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
35
|
-
onmouseup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
36
|
-
onmousedown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
37
|
-
onmouseenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
38
|
-
onmousemove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
39
|
-
onmouseleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
40
|
-
onmouseout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
41
|
-
onmouseover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
42
|
-
onpointercancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
43
|
-
onpointerdown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
44
|
-
onpointerup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
45
|
-
onpointerenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
46
|
-
onpointerleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
47
|
-
onpointermove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
48
|
-
onpointerover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
49
|
-
onpointerout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
50
|
-
ondrag: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
51
|
-
ondrop: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
52
|
-
ondragstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
53
|
-
ondragenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
54
|
-
ondragleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
55
|
-
ondragover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
56
|
-
ondragend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
57
|
-
ontouchstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
58
|
-
ontouchmove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
59
|
-
ontouchend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
60
|
-
ontouchcancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
61
|
-
oncontextmenu: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
62
|
-
onwheel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
63
|
-
class: string;
|
|
64
|
-
style: string;
|
|
65
|
-
cursor: ConstantAccessor<import("csstype").Property.Cursor, Datum>;
|
|
66
|
-
}> & {
|
|
67
|
-
/**
|
|
68
|
-
* the datum associated with this path, usually the first
|
|
69
|
-
* element of the data array group
|
|
70
|
-
*/
|
|
71
|
-
datum: Datum;
|
|
72
|
-
/**
|
|
73
|
-
* the marker shape to use at the start of the path, defaults to
|
|
74
|
-
* circle
|
|
75
|
-
*/
|
|
76
|
-
markerStart?: boolean | MarkerShape;
|
|
77
|
-
/**
|
|
78
|
-
* the marker shape to use at the middle of the path, defaults to circle
|
|
79
|
-
*/
|
|
80
|
-
markerMid?: boolean | MarkerShape;
|
|
81
|
-
/**
|
|
82
|
-
* the marker shape to use at the end of the path, defaults to circle
|
|
83
|
-
*/
|
|
84
|
-
markerEnd?: boolean | MarkerShape;
|
|
85
|
-
/**
|
|
86
|
-
* shorthand for setting all markers
|
|
87
|
-
*/
|
|
88
|
-
marker?: boolean | MarkerShape;
|
|
89
|
-
/**
|
|
90
|
-
* path string
|
|
91
|
-
*/
|
|
92
|
-
d: string;
|
|
93
|
-
style: string;
|
|
94
|
-
startOffset: string;
|
|
95
|
-
textStyle: string;
|
|
96
|
-
textStyleClass?: string | null;
|
|
97
|
-
text: string;
|
|
98
|
-
transform: string;
|
|
99
|
-
color: string;
|
|
100
|
-
strokeWidth: ConstantAccessor<number>;
|
|
101
|
-
mark: Mark<Partial<{
|
|
102
|
-
filter: ConstantAccessor<boolean, Datum>;
|
|
103
|
-
facet: "auto" | "include" | "exclude";
|
|
104
|
-
fx: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
105
|
-
fy: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
106
|
-
dx: ConstantAccessor<number, Datum>;
|
|
107
|
-
dy: ConstantAccessor<number, Datum>;
|
|
108
|
-
dodgeX: import("../../transforms/dodge").DodgeXOptions;
|
|
109
|
-
dodgeY: import("../../transforms/dodge").DodgeYOptions;
|
|
110
|
-
fill: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
111
|
-
fillOpacity: ConstantAccessor<number, Datum>;
|
|
112
|
-
sort: ((a: import("../../types/index.js").RawValue, b: import("../../types/index.js").RawValue) => number) | {
|
|
113
|
-
channel: string;
|
|
114
|
-
order?: "ascending" | "descending";
|
|
115
|
-
} | ConstantAccessor<import("../../types/index.js").RawValue, Datum>;
|
|
116
|
-
stroke: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
117
|
-
strokeWidth: ConstantAccessor<number, Datum>;
|
|
118
|
-
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
119
|
-
strokeLinejoin: ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
|
|
120
|
-
strokeLinecap: ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
|
|
121
|
-
strokeMiterlimit: ConstantAccessor<number, Datum>;
|
|
122
|
-
opacity: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
123
|
-
strokeDasharray: ConstantAccessor<string, Datum>;
|
|
124
|
-
strokeDashoffset: ConstantAccessor<number, Datum>;
|
|
125
|
-
mixBlendMode: ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
|
|
126
|
-
clipPath: string;
|
|
127
|
-
imageFilter: ConstantAccessor<string, Datum>;
|
|
128
|
-
shapeRendering: ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
|
|
129
|
-
paintOrder: ConstantAccessor<string, Datum>;
|
|
130
|
-
onclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
131
|
-
ondblclick: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
132
|
-
onmouseup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
133
|
-
onmousedown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
134
|
-
onmouseenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
135
|
-
onmousemove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
136
|
-
onmouseleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
137
|
-
onmouseout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
138
|
-
onmouseover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
139
|
-
onpointercancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
140
|
-
onpointerdown: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
141
|
-
onpointerup: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
142
|
-
onpointerenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
143
|
-
onpointerleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
144
|
-
onpointermove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
145
|
-
onpointerover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
146
|
-
onpointerout: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
147
|
-
ondrag: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
148
|
-
ondrop: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
149
|
-
ondragstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
150
|
-
ondragenter: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
151
|
-
ondragleave: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
152
|
-
ondragover: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
153
|
-
ondragend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
154
|
-
ontouchstart: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
155
|
-
ontouchmove: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
156
|
-
ontouchend: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
157
|
-
ontouchcancel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
158
|
-
oncontextmenu: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
159
|
-
onwheel: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
160
|
-
class: string;
|
|
161
|
-
style: string;
|
|
162
|
-
cursor: ConstantAccessor<import("csstype").Property.Cursor, Datum>;
|
|
163
|
-
}>>;
|
|
164
|
-
scales: PlotScales;
|
|
165
|
-
};
|
|
3
|
+
props(): any;
|
|
166
4
|
events(): {};
|
|
167
5
|
slots(): {};
|
|
168
6
|
bindings(): "";
|
|
@@ -1,77 +1,15 @@
|
|
|
1
|
-
import type { BaseRectMarkProps } from '../../types/mark.js';
|
|
1
|
+
import type { BaseMarkProps, BaseRectMarkProps } from '../../types/mark.js';
|
|
2
2
|
import type { DataRecord, ScaledDataRecord } from '../../types/data.js';
|
|
3
3
|
import type { UsedScales } from '../../types/index.js';
|
|
4
4
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
5
5
|
props(): {
|
|
6
|
-
datum: ScaledDataRecord<
|
|
6
|
+
datum: ScaledDataRecord<Datum_1>;
|
|
7
7
|
class: string | null;
|
|
8
8
|
x: number;
|
|
9
9
|
y: number;
|
|
10
10
|
width: number;
|
|
11
11
|
height: number;
|
|
12
|
-
options: BaseRectMarkProps<
|
|
13
|
-
filter: import("../../types/index.js").ConstantAccessor<boolean, Datum>;
|
|
14
|
-
facet: "auto" | "include" | "exclude";
|
|
15
|
-
fx: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
16
|
-
fy: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
17
|
-
dx: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
18
|
-
dy: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
19
|
-
dodgeX: import("../../transforms/dodge.js").DodgeXOptions;
|
|
20
|
-
dodgeY: import("../../transforms/dodge.js").DodgeYOptions;
|
|
21
|
-
fill: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
22
|
-
fillOpacity: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
23
|
-
sort: ((a: import("../../types/data.js").RawValue, b: import("../../types/data.js").RawValue) => number) | {
|
|
24
|
-
channel: string;
|
|
25
|
-
order?: "ascending" | "descending";
|
|
26
|
-
} | import("../../types/index.js").ConstantAccessor<import("../../types/data.js").RawValue, Datum>;
|
|
27
|
-
stroke: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
28
|
-
strokeWidth: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
29
|
-
strokeOpacity: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
30
|
-
strokeLinejoin: import("../../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
|
|
31
|
-
strokeLinecap: import("../../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
|
|
32
|
-
strokeMiterlimit: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
33
|
-
opacity: import("../../types/index.js").ChannelAccessor<Datum>;
|
|
34
|
-
strokeDasharray: import("../../types/index.js").ConstantAccessor<string, Datum>;
|
|
35
|
-
strokeDashoffset: import("../../types/index.js").ConstantAccessor<number, Datum>;
|
|
36
|
-
mixBlendMode: import("../../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
|
|
37
|
-
clipPath: string;
|
|
38
|
-
imageFilter: import("../../types/index.js").ConstantAccessor<string, Datum>;
|
|
39
|
-
shapeRendering: import("../../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
|
|
40
|
-
paintOrder: import("../../types/index.js").ConstantAccessor<string, Datum>;
|
|
41
|
-
onclick: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
42
|
-
ondblclick: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
43
|
-
onmouseup: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
44
|
-
onmousedown: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
45
|
-
onmouseenter: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
46
|
-
onmousemove: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
47
|
-
onmouseleave: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
48
|
-
onmouseout: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
49
|
-
onmouseover: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
50
|
-
onpointercancel: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
51
|
-
onpointerdown: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
52
|
-
onpointerup: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
53
|
-
onpointerenter: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
54
|
-
onpointerleave: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
55
|
-
onpointermove: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
56
|
-
onpointerover: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
57
|
-
onpointerout: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
58
|
-
ondrag: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
59
|
-
ondrop: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
60
|
-
ondragstart: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
61
|
-
ondragenter: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
62
|
-
ondragleave: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
63
|
-
ondragover: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
64
|
-
ondragend: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
65
|
-
ontouchstart: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
66
|
-
ontouchmove: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
67
|
-
ontouchend: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
68
|
-
ontouchcancel: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
69
|
-
oncontextmenu: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
70
|
-
onwheel: import("svelte/elements.js").MouseEventHandler<SVGPathElement>;
|
|
71
|
-
class: string;
|
|
72
|
-
style: string;
|
|
73
|
-
cursor: import("../../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Datum>;
|
|
74
|
-
}>;
|
|
12
|
+
options: BaseRectMarkProps<Datum_1> & BaseMarkProps<Datum_1>;
|
|
75
13
|
/**
|
|
76
14
|
* By default, the `inset` property is applied to all four insets. Mark components
|
|
77
15
|
* can tweak this behavior for insetTop and insetBottom by setting the
|
package/dist/marks/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export { default as Geo } from './Geo.svelte';
|
|
|
27
27
|
export { default as Graticule } from './Graticule.svelte';
|
|
28
28
|
export { default as GridX } from './GridX.svelte';
|
|
29
29
|
export { default as GridY } from './GridY.svelte';
|
|
30
|
+
export { default as Image } from './Image.svelte';
|
|
30
31
|
export { default as Line } from './Line.svelte';
|
|
31
32
|
export { default as LineX } from './LineX.svelte';
|
|
32
33
|
export { default as LineY } from './LineY.svelte';
|
package/dist/marks/index.js
CHANGED
|
@@ -27,6 +27,7 @@ export { default as Geo } from './Geo.svelte';
|
|
|
27
27
|
export { default as Graticule } from './Graticule.svelte';
|
|
28
28
|
export { default as GridX } from './GridX.svelte';
|
|
29
29
|
export { default as GridY } from './GridY.svelte';
|
|
30
|
+
export { default as Image } from './Image.svelte';
|
|
30
31
|
export { default as Line } from './Line.svelte';
|
|
31
32
|
export { default as LineX } from './LineX.svelte';
|
|
32
33
|
export { default as LineY } from './LineY.svelte';
|