UNPKG

@jaspersoft/jv-input-controls

Version:

Component for rendering input controls for a report or ad hoc view using visualize.js

9 lines (8 loc) 380 B
import { InputControlProperties } from '@jaspersoft/jv-tools'; export type TimePickerICType = "material"; export interface TimeICProps extends InputControlProperties { className?: string; views?: Array<"hours" | "minutes" | "seconds">; disabled?: boolean; } export declare const TimePickerInputControl: (props: TimeICProps) => import("react/jsx-runtime").JSX.Element;