vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
115 lines (109 loc) • 3.88 kB
TypeScript
import type { DefineComponent, VNodeChild } from 'vue';
import type {
VueUiHistoryPlotDatasetItem,
VueUiHistoryPlotConfig,
VueUiHistoryPlotDatapoint,
VueUiHistoryPlotDatapointEvent,
VueUiHistoryPlotDatpointSeries,
VueUiHistoryPlotExpose,
VueUiHistoryPlotEvent,
VueUiHistoryPlotProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiHistoryPlotFormattedDatapoint,
VueUiHistoryPlotSvgSlotProps,
VueUiKeyboardNavigationHintSlotProps,
VueUiWatermarkSlotProps,
VueUiHistoryPlotLegendItem,
VueUiHistoryPlotLegendSlotProps,
VueUiHistoryPlotTooltipSlotProps,
CommonAnnotatorSlots,
VueUiHistoryPlotEmits,
VueUiHistoryPlotEmitSelectLegend,
VueUiHistoryPlotEmitSelectDatapoint,
VueUiHistoryPlotEmitCopyAlt,
} from 'vue-data-ui';
export type {
VueUiHistoryPlotDatasetItem,
VueUiHistoryPlotConfig,
VueUiHistoryPlotDatapoint,
VueUiHistoryPlotDatapointEvent,
VueUiHistoryPlotDatpointSeries,
VueUiHistoryPlotExpose,
VueUiHistoryPlotEvent,
VueUiHistoryPlotProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiHistoryPlotFormattedDatapoint,
VueUiHistoryPlotSvgSlotProps,
VueUiKeyboardNavigationHintSlotProps,
VueUiWatermarkSlotProps,
VueUiHistoryPlotLegendItem,
VueUiHistoryPlotLegendSlotProps,
VueUiHistoryPlotTooltipSlotProps,
CommonAnnotatorSlots,
VueUiHistoryPlotEmits,
VueUiHistoryPlotEmitSelectLegend,
VueUiHistoryPlotEmitSelectDatapoint,
VueUiHistoryPlotEmitCopyAlt,
};
declare const VueUiHistoryPlotBase: DefineComponent<
VueUiHistoryPlotProps,
{},
{},
{},
{},
{},
{},
VueUiHistoryPlotEmits
>;
export const VueUiHistoryPlot: typeof VueUiHistoryPlotBase & {
new (): VueUiHistoryPlotExpose & {
$slots: CommonAnnotatorSlots & {
['custom-menu-before']?: () => VNodeChild;
['custom-menu-after']?: () => VNodeChild;
menuIcon?: (props: VueUiMenuIconSlotProps) => VNodeChild;
optionTooltip?: () => VNodeChild;
optionPdf?: () => VNodeChild;
optionCsv?: () => VNodeChild;
optionImg?: () => VNodeChild;
optionSvg?: () => VNodeChild;
optionTable?: () => VNodeChild;
optionFullscreen?: (
props: VueUiOptionFullscreenSlotProps,
) => VNodeChild;
optionAnnotator?: (
props: VueUiOptionAnnotatorSlotProps,
) => VNodeChild;
optionAltCopy?: () => VNodeChild;
['chart-background']?: () => VNodeChild;
svg?: (props: VueUiHistoryPlotSvgSlotProps) => VNodeChild;
hint?: (props: VueUiKeyboardNavigationHintSlotProps) => VNodeChild;
watermark?: (props: VueUiWatermarkSlotProps) => VNodeChild;
legend?: (props: VueUiHistoryPlotLegendSlotProps) => VNodeChild;
source?: () => VNodeChild;
['tooltip-before']?: (
props: VueUiHistoryPlotTooltipSlotProps,
) => VNodeChild;
tooltip?: (props: VueUiHistoryPlotTooltipSlotProps) => VNodeChild;
['tooltip-after']?: (
props: VueUiHistoryPlotTooltipSlotProps,
) => VNodeChild;
skeleton?: () => VNodeChild;
};
};
};
export default VueUiHistoryPlot;
export { VueUiHistoryPlot };