layerchart 0.43.0 → 0.43.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { type ComponentProps } from 'svelte';
|
|
3
3
|
import Rect from './Rect.svelte';
|
|
4
|
-
import type { Accessor } from '../
|
|
4
|
+
import type { Accessor } from '../utils/common.js';
|
|
5
5
|
declare const __propDef: {
|
|
6
6
|
props: {
|
|
7
7
|
[x: string]: any;
|
|
@@ -16,7 +16,7 @@ export const Svg = _Svg;
|
|
|
16
16
|
export const WebGL = _WebGL;
|
|
17
17
|
</script>
|
|
18
18
|
|
|
19
|
-
<script generics="TData">import { accessor } from '../
|
|
19
|
+
<script generics="TData">import { accessor } from '../utils/common.js';
|
|
20
20
|
import { onMount } from 'svelte';
|
|
21
21
|
import { max, min } from 'd3-array';
|
|
22
22
|
import { isScaleBand } from '../utils/scales.js';
|
|
@@ -7,7 +7,7 @@ export declare const Canvas: typeof _Canvas;
|
|
|
7
7
|
export declare const Html: typeof _Html;
|
|
8
8
|
export declare const Svg: typeof _Svg;
|
|
9
9
|
export declare const WebGL: typeof _WebGL;
|
|
10
|
-
import { type Accessor } from '../
|
|
10
|
+
import { type Accessor } from '../utils/common.js';
|
|
11
11
|
import type { HierarchyNode } from 'd3-hierarchy';
|
|
12
12
|
import type { SankeyGraph } from 'd3-sankey';
|
|
13
13
|
import { type AnyScale } from '../utils/scales.js';
|