kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
51 lines (50 loc) • 1.81 kB
TypeScript
import React, { ComponentType } from 'react';
import { Field } from '@kepler.gl/types';
import FieldTokenFactory from '../common/field-token';
export declare type FieldListItemFactoryProps = {
value: Field;
displayOption: (field: Field) => string;
};
export declare function FieldListItemFactoryFactory(FieldToken: any): (showToken?: boolean) => ({ value, displayOption }: FieldListItemFactoryProps) => React.JSX.Element;
export declare namespace FieldListItemFactoryFactory {
var deps: (typeof FieldTokenFactory)[];
}
export declare type MinimalField = {
name: string;
displayName: string;
format: string;
type?: string;
};
declare type FieldType = string | string[] | {
name: string;
format: string | null;
}[] | {
format?: string;
id?: string;
name?: string;
fieldIdx?: number;
type?: number;
} | Field;
interface FieldSelectorFactoryProps {
fields?: FieldType[];
onSelect: (items: ReadonlyArray<string | number | boolean | object> | string | number | boolean | object | null) => void;
placement?: string;
value?: FieldType | null;
filterFieldTypes?: FieldType | FieldType[];
inputTheme?: string;
placeholder?: string;
erasable?: boolean;
error?: boolean;
multiSelect?: boolean;
closeOnSelect?: boolean;
showToken?: boolean;
suggested?: ReadonlyArray<string | number | boolean | object> | null;
CustomChickletComponent?: ComponentType<any>;
size?: string;
reorderItems?: (newOrder: any) => void;
}
declare function FieldSelectorFactory(FieldListItemFactory: ReturnType<typeof FieldListItemFactoryFactory>): ComponentType<FieldSelectorFactoryProps>;
declare namespace FieldSelectorFactory {
var deps: (typeof FieldListItemFactoryFactory)[];
}
export default FieldSelectorFactory;