vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
111 lines (105 loc) • 3.44 kB
TypeScript
import type { DefineComponent, VNodeChild } from 'vue';
import type {
VueUiChordDataset,
VueUiChordDatapointArc,
VueUiChordNode,
VueUiChordDatapointRibbon,
VueUiChordConfig,
VueUiChordExpose,
VueUiChordEvent,
VueUiChordProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiChordSvgSlotProps,
VueUiWatermarkSlotProps,
VueUiKeyboardNavigationHintSlotProps,
VueUiChordLegendItem,
VueUiChordLegendSlotProps,
VueUiChordPatternSlotProps,
VueUiResetActionSlotProps,
CommonAnnotatorSlots,
VueUiChordEmits,
VueUiChordEmitSelectLegend,
VueUiChordEmitSelectGroup,
VueUiChordEmitSelectRibbon,
VueUiChordEmitCopyAlt,
} from 'vue-data-ui';
export type {
VueUiChordDataset,
VueUiChordDatapointArc,
VueUiChordNode,
VueUiChordDatapointRibbon,
VueUiChordConfig,
VueUiChordExpose,
VueUiChordEvent,
VueUiChordProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiChordSvgSlotProps,
VueUiWatermarkSlotProps,
VueUiKeyboardNavigationHintSlotProps,
VueUiChordLegendItem,
VueUiChordLegendSlotProps,
VueUiChordPatternSlotProps,
VueUiResetActionSlotProps,
CommonAnnotatorSlots,
VueUiChordEmits,
VueUiChordEmitSelectLegend,
VueUiChordEmitSelectGroup,
VueUiChordEmitSelectRibbon,
VueUiChordEmitCopyAlt,
};
declare const VueUiChordBase: DefineComponent<
VueUiChordProps,
{},
{},
{},
{},
{},
{},
VueUiChordEmits
>;
export const VueUiChord: typeof VueUiChordBase & {
new (): VueUiChordExpose & {
$slots: CommonAnnotatorSlots & {
['custom-menu-before']?: () => VNodeChild;
['custom-menu-after']?: () => VNodeChild;
menuIcon?: (props: VueUiMenuIconSlotProps) => 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: VueUiChordSvgSlotProps) => VNodeChild;
watermark?: (props: VueUiWatermarkSlotProps) => VNodeChild;
hint?: (props: VueUiKeyboardNavigationHintSlotProps) => VNodeChild;
legend?: (props: VueUiChordLegendSlotProps) => VNodeChild;
pattern?: (props: VueUiChordPatternSlotProps) => VNodeChild;
source?: () => VNodeChild;
['reset-action']?: (props: VueUiResetActionSlotProps) => VNodeChild;
skeleton?: () => VNodeChild;
};
};
};
export default VueUiChord;
export { VueUiChord };