@itwin/presentation-components
Version:
React components based on iTwin.js Presentation library
21 lines • 967 B
TypeScript
import { PropertyRecord } from "@itwin/appui-abstract";
import { PropertyEditorProps } from "@itwin/components-react";
import { PropertyEditorAttributes } from "../editors/Common.js";
/** @internal */
export interface NumericPropertyInputProps extends PropertyEditorProps {
propertyRecord: PropertyRecord;
}
/** @internal */
export declare const NumericPropertyInput: import("react").ForwardRefExoticComponent<NumericPropertyInputProps & import("react").RefAttributes<PropertyEditorAttributes>>;
/** @internal */
export interface NumericInputProps extends PropertyEditorProps {
onChange: (newValue: string) => void;
onBlur?: React.FocusEventHandler;
value: string;
isDisabled?: boolean;
min?: number;
max?: number;
}
/** @internal */
export declare const NumericInput: import("react").ForwardRefExoticComponent<NumericInputProps & import("react").RefAttributes<PropertyEditorAttributes>>;
//# sourceMappingURL=NumericPropertyInput.d.ts.map