svelteplot 0.0.1-alpha.17 → 0.0.1-alpha.19
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/Plot.svelte.d.ts +2 -2
- package/dist/helpers/GroupMultiple.svelte.d.ts +2 -2
- package/dist/marks/Area.svelte.d.ts +2 -2
- package/dist/marks/AreaX.svelte.d.ts +2 -2
- package/dist/marks/AreaY.svelte.d.ts +2 -2
- package/dist/marks/AxisX.svelte.d.ts +2 -2
- package/dist/marks/AxisY.svelte.d.ts +2 -2
- package/dist/marks/BarX.svelte.d.ts +2 -2
- package/dist/marks/BarY.svelte.d.ts +2 -2
- package/dist/marks/BaseMark.svelte.d.ts +2 -2
- package/dist/marks/ColorLegend.svelte.d.ts +2 -2
- package/dist/marks/Dot.svelte.d.ts +2 -2
- package/dist/marks/DotX.svelte.d.ts +2 -2
- package/dist/marks/DotY.svelte.d.ts +2 -2
- package/dist/marks/Frame.svelte.d.ts +2 -2
- package/dist/marks/GridX.svelte.d.ts +2 -2
- package/dist/marks/GridY.svelte.d.ts +2 -2
- package/dist/marks/Line.svelte.d.ts +2 -2
- package/dist/marks/LineX.svelte.d.ts +2 -2
- package/dist/marks/LineY.svelte.d.ts +2 -2
- package/dist/marks/RuleX.svelte.d.ts +2 -2
- package/dist/marks/RuleY.svelte.d.ts +2 -2
- package/dist/marks/SymbolLegend.svelte.d.ts +2 -2
- package/dist/marks/TickX.svelte.d.ts +2 -2
- package/dist/marks/TickY.svelte.d.ts +2 -2
- package/package.json +6 -9
package/dist/Plot.svelte.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { PlotProps } from './types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: PlotProps;
|
|
@@ -11,5 +11,5 @@ type PlotProps_ = typeof __propDef.props;
|
|
|
11
11
|
export { PlotProps_ as PlotProps };
|
|
12
12
|
export type PlotEvents = typeof __propDef.events;
|
|
13
13
|
export type PlotSlots = typeof __propDef.slots;
|
|
14
|
-
export default class Plot extends
|
|
14
|
+
export default class Plot extends SvelteComponentTyped<PlotProps, PlotEvents, PlotSlots> {
|
|
15
15
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { DataRow } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -14,6 +14,6 @@ declare const __propDef: {
|
|
|
14
14
|
export type GroupMultipleProps = typeof __propDef.props;
|
|
15
15
|
export type GroupMultipleEvents = typeof __propDef.events;
|
|
16
16
|
export type GroupMultipleSlots = typeof __propDef.slots;
|
|
17
|
-
export default class GroupMultiple extends
|
|
17
|
+
export default class GroupMultiple extends SvelteComponentTyped<GroupMultipleProps, GroupMultipleEvents, GroupMultipleSlots> {
|
|
18
18
|
}
|
|
19
19
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, Curve } from '../types.js';
|
|
3
3
|
export type AreaMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
4
4
|
x1?: ChannelAccessor;
|
|
@@ -23,6 +23,6 @@ declare const __propDef: {
|
|
|
23
23
|
export type AreaProps = typeof __propDef.props;
|
|
24
24
|
export type AreaEvents = typeof __propDef.events;
|
|
25
25
|
export type AreaSlots = typeof __propDef.slots;
|
|
26
|
-
export default class Area extends
|
|
26
|
+
export default class Area extends SvelteComponentTyped<AreaProps, AreaEvents, AreaSlots> {
|
|
27
27
|
}
|
|
28
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, Curve } from '../types.js';
|
|
3
3
|
import type { CurveFactory } from 'd3-shape';
|
|
4
4
|
import type { StackOptions } from '../transforms/stack.js';
|
|
@@ -25,6 +25,6 @@ declare const __propDef: {
|
|
|
25
25
|
export type AreaXProps = typeof __propDef.props;
|
|
26
26
|
export type AreaXEvents = typeof __propDef.events;
|
|
27
27
|
export type AreaXSlots = typeof __propDef.slots;
|
|
28
|
-
export default class AreaX extends
|
|
28
|
+
export default class AreaX extends SvelteComponentTyped<AreaXProps, AreaXEvents, AreaXSlots> {
|
|
29
29
|
}
|
|
30
30
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, Curve } from '../types.js';
|
|
3
3
|
import type { CurveFactory } from 'd3-shape';
|
|
4
4
|
import type { StackOptions } from '../transforms/stack.js';
|
|
@@ -25,6 +25,6 @@ declare const __propDef: {
|
|
|
25
25
|
export type AreaYProps = typeof __propDef.props;
|
|
26
26
|
export type AreaYEvents = typeof __propDef.events;
|
|
27
27
|
export type AreaYSlots = typeof __propDef.slots;
|
|
28
|
-
export default class AreaY extends
|
|
28
|
+
export default class AreaY extends SvelteComponentTyped<AreaYProps, AreaYEvents, AreaYSlots> {
|
|
29
29
|
}
|
|
30
30
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { AxisMarkOptions } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: AxisMarkOptions & {
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type AxisXProps = typeof __propDef.props;
|
|
13
13
|
export type AxisXEvents = typeof __propDef.events;
|
|
14
14
|
export type AxisXSlots = typeof __propDef.slots;
|
|
15
|
-
export default class AxisX extends
|
|
15
|
+
export default class AxisX extends SvelteComponentTyped<AxisXProps, AxisXEvents, AxisXSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { AxisYMarkProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: AxisYMarkProps;
|
|
@@ -10,6 +10,6 @@ declare const __propDef: {
|
|
|
10
10
|
export type AxisYProps = typeof __propDef.props;
|
|
11
11
|
export type AxisYEvents = typeof __propDef.events;
|
|
12
12
|
export type AxisYSlots = typeof __propDef.slots;
|
|
13
|
-
export default class AxisY extends
|
|
13
|
+
export default class AxisY extends SvelteComponentTyped<AxisYProps, AxisYEvents, AxisYSlots> {
|
|
14
14
|
}
|
|
15
15
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, DataRow } from '../types.js';
|
|
3
3
|
import type { StackOptions } from '../transforms/stack.js';
|
|
4
4
|
export type BarXMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
@@ -20,6 +20,6 @@ declare const __propDef: {
|
|
|
20
20
|
export type BarXProps = typeof __propDef.props;
|
|
21
21
|
export type BarXEvents = typeof __propDef.events;
|
|
22
22
|
export type BarXSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BarX extends
|
|
23
|
+
export default class BarX extends SvelteComponentTyped<BarXProps, BarXEvents, BarXSlots> {
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, DataRow } from '../types.js';
|
|
3
3
|
import type { StackOptions } from '../transforms/stack.js';
|
|
4
4
|
export type BarYMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
@@ -20,6 +20,6 @@ declare const __propDef: {
|
|
|
20
20
|
export type BarYProps = typeof __propDef.props;
|
|
21
21
|
export type BarYEvents = typeof __propDef.events;
|
|
22
22
|
export type BarYSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BarY extends
|
|
23
|
+
export default class BarY extends SvelteComponentTyped<BarYProps, BarYEvents, BarYSlots> {
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { BaseMarkProps } from '../types.js';
|
|
3
3
|
import { type Snippet } from 'svelte';
|
|
4
4
|
declare class __sveltets_Render<T extends BaseMarkProps> {
|
|
@@ -15,6 +15,6 @@ declare class __sveltets_Render<T extends BaseMarkProps> {
|
|
|
15
15
|
export type BaseMarkProps<T extends BaseMarkProps> = ReturnType<__sveltets_Render<T>['props']>;
|
|
16
16
|
export type BaseMarkEvents<T extends BaseMarkProps> = ReturnType<__sveltets_Render<T>['events']>;
|
|
17
17
|
export type BaseMarkSlots<T extends BaseMarkProps> = ReturnType<__sveltets_Render<T>['slots']>;
|
|
18
|
-
export default class BaseMark<T extends BaseMarkProps> extends
|
|
18
|
+
export default class BaseMark<T extends BaseMarkProps> extends SvelteComponentTyped<BaseMarkProps<T>, BaseMarkEvents<T>, BaseMarkSlots<T>> {
|
|
19
19
|
}
|
|
20
20
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type ColorLegendProps = typeof __propDef.props;
|
|
10
10
|
export type ColorLegendEvents = typeof __propDef.events;
|
|
11
11
|
export type ColorLegendSlots = typeof __propDef.slots;
|
|
12
|
-
export default class ColorLegend extends
|
|
12
|
+
export default class ColorLegend extends SvelteComponentTyped<ColorLegendProps, ColorLegendEvents, ColorLegendSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, DataRow } from '../types.js';
|
|
3
3
|
export type DotMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
4
4
|
data: DataRow[];
|
|
@@ -18,6 +18,6 @@ declare const __propDef: {
|
|
|
18
18
|
export type DotProps = typeof __propDef.props;
|
|
19
19
|
export type DotEvents = typeof __propDef.events;
|
|
20
20
|
export type DotSlots = typeof __propDef.slots;
|
|
21
|
-
export default class Dot extends
|
|
21
|
+
export default class Dot extends SvelteComponentTyped<DotProps, DotEvents, DotSlots> {
|
|
22
22
|
}
|
|
23
23
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { RawValue } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type DotXProps = typeof __propDef.props;
|
|
13
13
|
export type DotXEvents = typeof __propDef.events;
|
|
14
14
|
export type DotXSlots = typeof __propDef.slots;
|
|
15
|
-
export default class DotX extends
|
|
15
|
+
export default class DotX extends SvelteComponentTyped<DotXProps, DotXEvents, DotXSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { RawValue } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type DotYProps = typeof __propDef.props;
|
|
13
13
|
export type DotYEvents = typeof __propDef.events;
|
|
14
14
|
export type DotYSlots = typeof __propDef.slots;
|
|
15
|
-
export default class DotY extends
|
|
15
|
+
export default class DotY extends SvelteComponentTyped<DotYProps, DotYEvents, DotYSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { FrameProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: import("../types.js").BaseMarkStyleProps;
|
|
@@ -11,5 +11,5 @@ type FrameProps_ = typeof __propDef.props;
|
|
|
11
11
|
export { FrameProps_ as FrameProps };
|
|
12
12
|
export type FrameEvents = typeof __propDef.events;
|
|
13
13
|
export type FrameSlots = typeof __propDef.slots;
|
|
14
|
-
export default class Frame extends
|
|
14
|
+
export default class Frame extends SvelteComponentTyped<FrameProps, FrameEvents, FrameSlots> {
|
|
15
15
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { GridOptions, ChannelAccessor } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: Partial<import("../types.js").MarkProps> & GridOptions & {
|
|
@@ -14,6 +14,6 @@ declare const __propDef: {
|
|
|
14
14
|
export type GridXProps = typeof __propDef.props;
|
|
15
15
|
export type GridXEvents = typeof __propDef.events;
|
|
16
16
|
export type GridXSlots = typeof __propDef.slots;
|
|
17
|
-
export default class GridX extends
|
|
17
|
+
export default class GridX extends SvelteComponentTyped<GridXProps, GridXEvents, GridXSlots> {
|
|
18
18
|
}
|
|
19
19
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { GridYMarkProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: GridYMarkProps;
|
|
@@ -10,6 +10,6 @@ declare const __propDef: {
|
|
|
10
10
|
export type GridYProps = typeof __propDef.props;
|
|
11
11
|
export type GridYEvents = typeof __propDef.events;
|
|
12
12
|
export type GridYSlots = typeof __propDef.slots;
|
|
13
|
-
export default class GridY extends
|
|
13
|
+
export default class GridY extends SvelteComponentTyped<GridYProps, GridYEvents, GridYSlots> {
|
|
14
14
|
}
|
|
15
15
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, Curve, DataRow } from '../types.js';
|
|
3
3
|
export type LineMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
4
4
|
data: DataRow[];
|
|
@@ -22,6 +22,6 @@ declare const __propDef: {
|
|
|
22
22
|
export type LineProps = typeof __propDef.props;
|
|
23
23
|
export type LineEvents = typeof __propDef.events;
|
|
24
24
|
export type LineSlots = typeof __propDef.slots;
|
|
25
|
-
export default class Line extends
|
|
25
|
+
export default class Line extends SvelteComponentTyped<LineProps, LineEvents, LineSlots> {
|
|
26
26
|
}
|
|
27
27
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { CurveFactory } from 'd3-shape';
|
|
3
3
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, Curve, RawValue } from '../types.js';
|
|
4
4
|
export type LineXMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
@@ -19,6 +19,6 @@ declare const __propDef: {
|
|
|
19
19
|
export type LineXProps = typeof __propDef.props;
|
|
20
20
|
export type LineXEvents = typeof __propDef.events;
|
|
21
21
|
export type LineXSlots = typeof __propDef.slots;
|
|
22
|
-
export default class LineX extends
|
|
22
|
+
export default class LineX extends SvelteComponentTyped<LineXProps, LineXEvents, LineXSlots> {
|
|
23
23
|
}
|
|
24
24
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { MarkProps, BaseMarkStyleProps, ChannelAccessor, Curve } from '../types.js';
|
|
3
3
|
export type LineYMarkProps = MarkProps & BaseMarkStyleProps & {
|
|
4
4
|
data: RawValue[];
|
|
@@ -20,6 +20,6 @@ declare const __propDef: {
|
|
|
20
20
|
export type LineYProps = typeof __propDef.props;
|
|
21
21
|
export type LineYEvents = typeof __propDef.events;
|
|
22
22
|
export type LineYSlots = typeof __propDef.slots;
|
|
23
|
-
export default class LineY extends
|
|
23
|
+
export default class LineY extends SvelteComponentTyped<LineYProps, LineYEvents, LineYSlots> {
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { RuleXMarkProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: RuleXMarkProps;
|
|
@@ -10,6 +10,6 @@ declare const __propDef: {
|
|
|
10
10
|
export type RuleXProps = typeof __propDef.props;
|
|
11
11
|
export type RuleXEvents = typeof __propDef.events;
|
|
12
12
|
export type RuleXSlots = typeof __propDef.slots;
|
|
13
|
-
export default class RuleX extends
|
|
13
|
+
export default class RuleX extends SvelteComponentTyped<RuleXProps, RuleXEvents, RuleXSlots> {
|
|
14
14
|
}
|
|
15
15
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { RuleYMarkProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: RuleYMarkProps;
|
|
@@ -10,6 +10,6 @@ declare const __propDef: {
|
|
|
10
10
|
export type RuleYProps = typeof __propDef.props;
|
|
11
11
|
export type RuleYEvents = typeof __propDef.events;
|
|
12
12
|
export type RuleYSlots = typeof __propDef.slots;
|
|
13
|
-
export default class RuleY extends
|
|
13
|
+
export default class RuleY extends SvelteComponentTyped<RuleYProps, RuleYEvents, RuleYSlots> {
|
|
14
14
|
}
|
|
15
15
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type SymbolLegendProps = typeof __propDef.props;
|
|
10
10
|
export type SymbolLegendEvents = typeof __propDef.events;
|
|
11
11
|
export type SymbolLegendSlots = typeof __propDef.slots;
|
|
12
|
-
export default class SymbolLegend extends
|
|
12
|
+
export default class SymbolLegend extends SvelteComponentTyped<SymbolLegendProps, SymbolLegendEvents, SymbolLegendSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { TickMarkProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: TickMarkProps;
|
|
@@ -10,6 +10,6 @@ declare const __propDef: {
|
|
|
10
10
|
export type TickXProps = typeof __propDef.props;
|
|
11
11
|
export type TickXEvents = typeof __propDef.events;
|
|
12
12
|
export type TickXSlots = typeof __propDef.slots;
|
|
13
|
-
export default class TickX extends
|
|
13
|
+
export default class TickX extends SvelteComponentTyped<TickXProps, TickXEvents, TickXSlots> {
|
|
14
14
|
}
|
|
15
15
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { TickMarkProps } from '../types.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: TickMarkProps;
|
|
@@ -10,6 +10,6 @@ declare const __propDef: {
|
|
|
10
10
|
export type TickYProps = typeof __propDef.props;
|
|
11
11
|
export type TickYEvents = typeof __propDef.events;
|
|
12
12
|
export type TickYSlots = typeof __propDef.slots;
|
|
13
|
-
export default class TickY extends
|
|
13
|
+
export default class TickY extends SvelteComponentTyped<TickYProps, TickYEvents, TickYSlots> {
|
|
14
14
|
}
|
|
15
15
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelteplot",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.19",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build",
|
|
@@ -26,10 +26,8 @@
|
|
|
26
26
|
"!dist/**/*.test.*",
|
|
27
27
|
"!dist/**/*.spec.*"
|
|
28
28
|
],
|
|
29
|
-
"peerDependencies": {
|
|
30
|
-
"svelte": "^4.0.0"
|
|
31
|
-
},
|
|
32
29
|
"devDependencies": {
|
|
30
|
+
"@sveltejs/package": "^2.2.5",
|
|
33
31
|
"@playwright/test": "^1.40.1",
|
|
34
32
|
"@sveltejs/adapter-auto": "^3.1.0",
|
|
35
33
|
"@sveltejs/kit": "^2.3.2",
|
|
@@ -41,9 +39,11 @@
|
|
|
41
39
|
"@types/d3-shape": "^3.1.6",
|
|
42
40
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
43
41
|
"@typescript-eslint/parser": "^6.19.0",
|
|
42
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
43
|
+
"@sveltepress/theme-default": "^1.22.3",
|
|
44
|
+
"@sveltepress/vite": "^0.31.3",
|
|
44
45
|
"bulma": "^0.9.4",
|
|
45
46
|
"d3-dsv": "^3.0.1",
|
|
46
|
-
"dayjs": "^1.11.10",
|
|
47
47
|
"eslint": "^8.56.0",
|
|
48
48
|
"eslint-config-prettier": "^9.1.0",
|
|
49
49
|
"eslint-plugin-svelte": "^2.35.1",
|
|
@@ -65,10 +65,6 @@
|
|
|
65
65
|
"type": "module",
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@observablehq/plot": "^0.6.13",
|
|
68
|
-
"@sveltejs/package": "^2.2.5",
|
|
69
|
-
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
70
|
-
"@sveltepress/theme-default": "^1.22.3",
|
|
71
|
-
"@sveltepress/vite": "^0.31.3",
|
|
72
68
|
"@types/d3-array": "^3.2.1",
|
|
73
69
|
"@types/d3-scale": "^4.0.8",
|
|
74
70
|
"@types/underscore": "^1.11.15",
|
|
@@ -80,6 +76,7 @@
|
|
|
80
76
|
"d3-scale-chromatic": "^3.0.0",
|
|
81
77
|
"d3-shape": "^3.2.0",
|
|
82
78
|
"d3-time-format": "^4.1.0",
|
|
79
|
+
"dayjs": "^1.11.10",
|
|
83
80
|
"merge-deep": "^3.0.3",
|
|
84
81
|
"underscore": "^1.13.6"
|
|
85
82
|
}
|