@adyen/lume-vue3
Version:
Lume is a Vue data visualization component library, built with Typescript and D3.
12 lines • 1.01 kB
TypeScript
export declare enum Warnings {
DatasetLength = "Our guidelines highly recommend not having more than 5 datasets in one chart.\nLearn more: https://lume.design/guidelines/datasets",
ColorLoop = "Colors will loop around after the 5th dataset. You can prevent this by setting specific colors for your datasets.",
Empty = "The dataset(s) provided are empty.",
InvalidFormat = "The string provided to format is invalid. Please refer to https://github.com/d3/d3-format for valid arguments.",
NotContainedInSvg = "This component is an `SVGElement`, thus it is required to be inside an `<svg>` container.",
InvalidHoveredIndex = "The provided hovered index is not valid for the data of this chart.",
InvalidHoveredElement = "The provided hovered element is not valid for the data of this diagram.",
IndexExceedsLengthOfDataSets = "Index exceeds length of all of the datasets"
}
export declare function warn(warning: Warnings, devOnly?: boolean): void;
//# sourceMappingURL=warnings.d.ts.map