svelteplot 0.1.3-next.14 → 0.1.3-next.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.
- package/dist/Mark.svelte +6 -1
- package/dist/marks/Dot.svelte +1 -10
- package/package.json +1 -1
package/dist/Mark.svelte
CHANGED
|
@@ -227,7 +227,12 @@
|
|
|
227
227
|
);
|
|
228
228
|
out[`x${suffix}`] = x;
|
|
229
229
|
out[`y${suffix}`] = y;
|
|
230
|
-
out.valid =
|
|
230
|
+
out.valid =
|
|
231
|
+
out.valid &&
|
|
232
|
+
isValid(row.x) &&
|
|
233
|
+
isValid(row.y) &&
|
|
234
|
+
isValid(x) &&
|
|
235
|
+
isValid(y);
|
|
231
236
|
}
|
|
232
237
|
}
|
|
233
238
|
}
|
package/dist/marks/Dot.svelte
CHANGED
|
@@ -9,15 +9,9 @@
|
|
|
9
9
|
FacetContext,
|
|
10
10
|
PlotDefaults
|
|
11
11
|
} from '../types.js';
|
|
12
|
-
import {
|
|
13
|
-
resolveChannel,
|
|
14
|
-
resolveProp,
|
|
15
|
-
resolveScaledStyles,
|
|
16
|
-
resolveStyles
|
|
17
|
-
} from '../helpers/resolve.js';
|
|
12
|
+
import { resolveProp, resolveStyles } from '../helpers/resolve.js';
|
|
18
13
|
import { maybeSymbol } from '../helpers/symbols.js';
|
|
19
14
|
import { symbol as d3Symbol } from 'd3-shape';
|
|
20
|
-
import { projectXY } from '../helpers/scales.js';
|
|
21
15
|
import { sort } from '../index.js';
|
|
22
16
|
import Mark from '../Mark.svelte';
|
|
23
17
|
import DotCanvas from './helpers/DotCanvas.svelte';
|
|
@@ -132,6 +126,3 @@
|
|
|
132
126
|
</g>
|
|
133
127
|
{/snippet}
|
|
134
128
|
</Mark>
|
|
135
|
-
|
|
136
|
-
<style>
|
|
137
|
-
</style>
|