svelteplot 0.3.5-pr-121.3 → 0.3.5-pr-121.4
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/types/mark.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/mark.d.ts
CHANGED
|
@@ -9,9 +9,9 @@ export type Mark<T> = {
|
|
|
9
9
|
export type MarkType = 'area' | 'arrow' | 'barX' | 'barY' | 'cell' | 'dot' | 'vector' | 'frame' | 'geo' | 'gridX' | 'gridY' | 'line' | 'rect' | 'regression' | 'ruleX' | 'ruleY' | 'swoopyArrow' | 'text' | 'tickX' | 'tickY';
|
|
10
10
|
export type MarkStyleProps = 'strokeDasharray' | 'strokeLinejoin' | 'strokeLinecap' | 'opacity' | 'cursor' | 'pointerEvents' | 'blend' | 'fill' | 'fillOpacity' | 'fontWeight' | 'fontVariant' | 'fontSize' | 'fontStyle' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'x' | 'y' | 'clipPath' | 'mask' | 'filter' | 'angle' | 'radius' | 'symbol' | 'textAnchor' | 'width';
|
|
11
11
|
import type { MouseEventHandler } from 'svelte/elements';
|
|
12
|
-
import type { ChannelAccessor, ConstantAccessor, DataRecord, RawValue } from '.';
|
|
12
|
+
import type { ChannelAccessor, ConstantAccessor, DataRecord, RawValue } from './index.js';
|
|
13
13
|
import type * as CSS from 'csstype';
|
|
14
|
-
import type { ScaledChannelName, ScaleName } from './scale';
|
|
14
|
+
import type { ScaledChannelName, ScaleName } from './scale.js';
|
|
15
15
|
export type BaseMarkProps<T> = Partial<{
|
|
16
16
|
/**
|
|
17
17
|
* Filter the data without modifying the inferred scales
|