@jaspersoft/jv-input-controls
Version:
Component for rendering input controls for a report or ad hoc view using visualize.js
9 lines (8 loc) • 373 B
TypeScript
import { InputControlProperties } from '@jaspersoft/jv-tools';
export type DatePickerICType = "material";
export interface DateICProps extends InputControlProperties {
className?: string;
views?: Array<"year" | "month" | "day">;
disabled?: boolean;
}
export declare const DatePickerInputControl: (props: DateICProps) => import("react/jsx-runtime").JSX.Element;