@jaspersoft/jv-input-controls
Version:
Component for rendering input controls for a report or ad hoc view using visualize.js
8 lines (7 loc) • 336 B
TypeScript
import { JSX } from 'react';
import { InputControlProperties } from '@jaspersoft/jv-tools';
export type BoolICType = "switch" | "checkbox";
export interface BooleanInputControlProps extends InputControlProperties {
styleType?: BoolICType;
}
export declare function BooleanInputControl(props: BooleanInputControlProps): JSX.Element;