svelteplot 0.0.1-alpha.5 → 0.0.1-alpha.6

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,10 +1,10 @@
1
1
  <script>import { getContext } from "svelte";
2
+ import dayjs from "dayjs";
3
+ import { get } from "underscore";
2
4
  import BaseMark from "./BaseMark.svelte";
3
5
  import getBaseStyles from "../helpers/getBaseStyles.js";
4
6
  import removeIdenticalLines from "../helpers/removeIdenticalLines.js";
5
7
  import autoTimeFormat from "../helpers/autoTimeFormat.js";
6
- import dayjs from "dayjs";
7
- import { get } from "underscore";
8
8
  const BaseMark_AxisX = BaseMark;
9
9
  const plot = getContext("svelteplot");
10
10
  let {
@@ -1,7 +1,7 @@
1
1
  <script>import { getContext } from "svelte";
2
+ import { get } from "underscore";
2
3
  import BaseMark from "./BaseMark.svelte";
3
4
  import getBaseStyles from "../helpers/getBaseStyles.js";
4
- import { get } from "underscore";
5
5
  const BaseMark_AxisX = BaseMark;
6
6
  const plot = getContext("svelteplot");
7
7
  let {
@@ -1,8 +1,8 @@
1
- <script>import resolveChannel from "../helpers/resolveChannel";
2
- import { getContext } from "svelte";
1
+ <script>import { getContext } from "svelte";
2
+ import { symbol as d3Symbol } from "d3-shape";
3
3
  import BaseMark from "./BaseMark.svelte";
4
+ import resolveChannel from "../helpers/resolveChannel.js";
4
5
  import getBaseStyles from "../helpers/getBaseStyles.js";
5
- import { symbol as d3Symbol } from "d3-shape";
6
6
  import { isSymbol, maybeSymbol } from "../helpers/symbols.js";
7
7
  const BaseMark_Dot = BaseMark;
8
8
  const plot = getContext("svelteplot");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelteplot",
3
- "version": "0.0.1-alpha.5",
3
+ "version": "0.0.1-alpha.6",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build",