svelte-tiny-linked-charts
Advanced tools
Comparing version 1.5.0 to 1.6.0
@@ -7,2 +7,3 @@ /** @typedef {typeof __propDef.props} LinkedLabelProps */ | ||
empty?: string; | ||
transform?: (label: any) => any; | ||
}, { | ||
@@ -20,2 +21,3 @@ [evt: string]: CustomEvent<any>; | ||
empty?: string; | ||
transform?: (label: any) => any; | ||
}; | ||
@@ -22,0 +24,0 @@ events: { |
@@ -8,2 +8,3 @@ /** @typedef {typeof __propDef.props} LinkedValueProps */ | ||
empty?: string; | ||
transform?: (value: any) => any; | ||
}, { | ||
@@ -22,2 +23,3 @@ [evt: string]: CustomEvent<any>; | ||
empty?: string; | ||
transform?: (value: any) => any; | ||
}; | ||
@@ -24,0 +26,0 @@ events: { |
{ | ||
"name": "svelte-tiny-linked-charts", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "dev": "vite dev", |
@@ -114,2 +114,3 @@ # Tiny Linked Charts for Svelte | ||
empty | \ | String that will be displayed when no bar is being hovered. | ||
transform | (label) => label | Transform the given label to format it differently from how it was supplied. | ||
@@ -122,1 +123,2 @@ `<LinkedValue />` component. | ||
valueUndefined | 0 | For when the hovering value returns undefined. | ||
transform | (value) => value | Transform the given value to format it differently from how it was supplied. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
19008
163
123