Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/InputAdornment/InputAdornment.d.ts 2.03 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  import * as React from 'react';
  import { SxProps } from '@mui/system';
  import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
  import { Theme } from "../styles/index.js";
  import { InputAdornmentClasses } from "./inputAdornmentClasses.js";
  export interface InputAdornmentOwnProps {
    /**
     * Override or extend the styles applied to the component.
     */
    classes?: Partial<InputAdornmentClasses>;
    /**
     * The content of the component, normally an `IconButton` or string.
     */
    children?: React.ReactNode;
    /**
     * Disable pointer events on the root.
     * This allows for the content of the adornment to focus the `input` on click.
     * @default false
     */
    disablePointerEvents?: boolean;
    /**
     * If children is a string then disable wrapping in a Typography component.
     * @default false
     */
    disableTypography?: boolean;
    /**
     * The position this adornment should appear relative to the `Input`.
     */
    position: 'start' | 'end';
    /**
     * The system prop that allows defining system overrides as well as additional CSS styles.
     */
    sx?: SxProps<Theme>;
    /**
     * The variant to use.
     * Note: If you are using the `TextField` component or the `FormControl` component
     * you do not have to set this manually.
     */
    variant?: 'standard' | 'outlined' | 'filled';
  }
  export interface InputAdornmentTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'div'> {
    props: AdditionalProps & InputAdornmentOwnProps;
    defaultComponent: RootComponent;
  }
  /**
   *
   * Demos:
   *
   * - [Text Field](https://mui.com/material-ui/react-text-field/)
   *
   * API:
   *
   * - [InputAdornment API](https://mui.com/material-ui/api/input-adornment/)
   */
  declare const InputAdornment: OverridableComponent<InputAdornmentTypeMap>;
  export type InputAdornmentProps<RootComponent extends React.ElementType = InputAdornmentTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<InputAdornmentTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
    component?: React.ElementType;
  };
  export default InputAdornment;