@jaspersoft/jv-input-controls
Version:
Component for rendering input controls for a report or ad hoc view using visualize.js
15 lines (14 loc) • 497 B
TypeScript
import { InputControlProperties } from '@jaspersoft/jv-tools';
export type NumberICType = "number";
export interface NumberICProps extends InputControlProperties {
variant?: "standard" | "filled" | "outlined" | undefined;
className?: string;
}
/**
* Number Input Control Component
*
* Will handle the numbers as a text based input
* @param props
* @constructor
*/
export declare const SingleValueNumberInputControl: (props: NumberICProps) => import("react/jsx-runtime").JSX.Element;