@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
25 lines (24 loc) • 2.49 kB
TypeScript
export declare const StyledSlider: any;
export declare const StyledTextField: import("@emotion/styled").StyledComponent<Omit<import("@mui/material").TextFieldProps, "variant" | "onChange" | "InputProps"> & import("@mui/material").InputBaseComponentProps & Omit<import("react-number-format").NumericFormatProps, "onChange"> & {
onChange?: (value?: unknown, event?: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
language?: string;
currency?: string;
isStepper?: boolean;
minValue?: number;
maxValue?: number;
decimalScale?: number;
fixedDecimalScale?: boolean;
thousandSeparator?: string | boolean;
} & {
onChange?: (value?: unknown, event?: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
isNumeric?: boolean;
InputProps?: Omit<Partial<import("@mui/material").FilledInputProps>, "startAdornment" | "endAdornment"> | Omit<Partial<import("@mui/material").OutlinedInputProps>, "startAdornment" | "endAdornment"> | Omit<Partial<import("@mui/material").InputProps>, "startAdornment" | "endAdornment">;
startAdornment?: React.ReactNode;
endAdornment?: React.ReactNode;
debounceBy?: number;
isClearable?: boolean;
step?: number;
variant?: import("../TextField").TextFieldVariant;
} & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
export declare const FormControl: import("@emotion/styled").StyledComponent<import("@mui/material/FormControl").FormControlOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "error" | "className" | "style" | "classes" | "children" | "disabled" | "sx" | "color" | "margin" | "fullWidth" | "size" | "variant" | "required" | "focused" | "hiddenLabel"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
export declare const FormHelperText: import("@emotion/styled").StyledComponent<import("@mui/material/FormHelperText").FormHelperTextOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "error" | "className" | "style" | "classes" | "children" | "disabled" | "sx" | "margin" | "variant" | "required" | "filled" | "focused"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;