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