12345678910111213141516171819202122232425 |
- /// <reference types="react" />
- import React from "react";
- interface Props {
- rowMode: "single" | "multi";
- price: number;
- onPriceChange: (v: number) => void;
- size: "small" | "normal" | "large";
- focusScroll: boolean;
- withTitle: boolean;
- allowZero: boolean;
- titleText?: string | JSX.Element[] | JSX.Element;
- inputPlaceholderText?: string;
- priceOptions?: Array<any>;
- priceRender?: Function;
- inputPriceRender?: Function;
- inputSuffix?: string | JSX.Element[] | JSX.Element;
- injectOptions?: {
- priceBtnClass: (isActive: boolean) => any;
- priceInputClass: Function;
- };
- inputRef: React.RefObject<any>;
- }
- declare const PriceOptions: ({ price, onPriceChange, allowZero, rowMode, size, focusScroll, withTitle, titleText, inputPlaceholderText, priceOptions, priceRender, inputPriceRender, inputSuffix, injectOptions, inputRef }: Props) => JSX.Element;
- export { PriceOptions as default };
|