UNPKG

@jaspersoft/jv-input-controls

Version:

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

15 lines (14 loc) 501 B
import { InputControlProperties } from '@jaspersoft/jv-tools'; export type TextFieldICType = "textField"; export interface TextFieldICProps extends InputControlProperties { variant?: "standard" | "filled" | "outlined" | undefined; className?: string; } /** * Text Input Control Component * * Will handle the text based input controls * @param props * @constructor */ export declare const SingleValueTextInputControl: (props: TextFieldICProps) => import("react/jsx-runtime").JSX.Element;