svelteplot 0.3.11-pr-153.14 → 0.3.11-pr-153.15

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.
@@ -9,6 +9,8 @@ export type StackOptions = {
9
9
  export declare function stackY<T>({ data, ...channels }: T, opts?: Partial<StackOptions>): T;
10
10
  export declare function stackX({ data, ...channels }: TransformArg, opts?: Partial<StackOptions>): TransformArg;
11
11
  export declare function stackMosaicX<T>(args: any, opts: any): {
12
+ fx: any;
13
+ fy: any;
12
14
  data: unknown[];
13
15
  x: symbol;
14
16
  x1: symbol;
@@ -18,6 +20,8 @@ export declare function stackMosaicX<T>(args: any, opts: any): {
18
20
  y2: symbol;
19
21
  };
20
22
  export declare function stackMosaicY<T>(args: any, opts: any): {
23
+ fx: any;
24
+ fy: any;
21
25
  data: unknown[];
22
26
  x: symbol;
23
27
  x1: symbol;
@@ -171,7 +171,7 @@ function stackMosaic({ data, x, y, value, fx, fy, ...rest }, { outer, inner }, {
171
171
  });
172
172
  });
173
173
  });
174
- return { ...rest, data: out, x: X, x1: X1, x2: X2, y: Y, y1: Y1, y2: Y2 };
174
+ return { ...rest, fx, fy, data: out, x: X, x1: X1, x2: X2, y: Y, y1: Y1, y2: Y2 };
175
175
  }
176
176
  export function stackMosaicX(args, opts) {
177
177
  return stackMosaic(args, { outer: 'x', inner: 'y' }, opts);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelteplot",
3
- "version": "0.3.11-pr-153.14",
3
+ "version": "0.3.11-pr-153.15",
4
4
  "license": "ISC",
5
5
  "author": {
6
6
  "name": "Gregor Aisch",