opendash
Version:
open.DASH data visualization framework
11 lines (10 loc) • 625 B
TypeScript
import * as React from "react";
import { SourceIdentifierInterface, DataItemIdentifierInterface, DataItemDimensionIdentifierInterface, DataItemSelectionInterface } from "..";
interface Props {
selectionOptions?: DataItemSelectionInterface;
selection: SourceIdentifierInterface[] | DataItemIdentifierInterface[] | DataItemDimensionIdentifierInterface[];
onSelection: (nextValue: SourceIdentifierInterface[] | DataItemIdentifierInterface[] | DataItemDimensionIdentifierInterface[]) => void;
style?: React.CSSProperties;
}
export declare const DataSelect: React.NamedExoticComponent<Props>;
export {};