svelteplot 0.3.5-pr-121.6 → 0.3.5-pr-121.8

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.
@@ -3,12 +3,14 @@
3
3
  class: string | null;
4
4
  }
5
5
  import { getContext } from 'svelte';
6
- import { Plot, AxisX, Frame } from '..';
6
+ import Plot from '../Plot.svelte';
7
+ import AxisX from './AxisX.svelte';
8
+ import Frame from './Frame.svelte';
7
9
  import { symbol as d3Symbol } from 'd3-shape';
8
10
  import { range as d3Range, extent } from 'd3-array';
9
11
  import { maybeSymbol } from '../helpers/symbols.js';
10
12
 
11
- import type { PlotDefaults, PlotContext } from '../types/index.js';
13
+ import type { PlotDefaults, PlotContext } from '../types/plot.js';
12
14
 
13
15
  let { class: className = null }: ColorLegendMarkProps = $props();
14
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelteplot",
3
- "version": "0.3.5-pr-121.6",
3
+ "version": "0.3.5-pr-121.8",
4
4
  "license": "ISC",
5
5
  "author": {
6
6
  "name": "Gregor Aisch",