Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/esm/Select/SelectInput.d.ts 1.75 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
  import * as React from 'react';
  import { SxProps } from '@mui/system';
  import { Theme } from "../styles/index.js";
  import { MenuProps } from "../Menu/index.js";
  
  /**
   * The change can be caused by different kind of events.
   * The type of event depends on what caused the change.
   * For example, when the browser auto-fills the `Select` you'll receive a `React.ChangeEvent`.
   */
  
  export type SelectChangeEvent<Value = string> = Value extends (string & {}) | number ? React.ChangeEvent<Omit<HTMLInputElement, 'value'> & {
    value: Value;
  }> | (Event & {
    target: {
      value: Value;
      name: string;
    };
  }) : React.ChangeEvent<HTMLInputElement> | (Event & {
    target: {
      value: Value;
      name: string;
    };
  });
  export interface SelectInputProps<Value = unknown> {
    autoFocus?: boolean;
    autoWidth: boolean;
    defaultOpen?: boolean;
    disabled?: boolean;
    error?: boolean;
    IconComponent?: React.ElementType;
    inputRef?: (ref: HTMLSelectElement | {
      node: HTMLInputElement;
      value: SelectInputProps<Value>['value'];
    }) => void;
    MenuProps?: Partial<MenuProps>;
    multiple: boolean;
    name?: string;
    native: boolean;
    onBlur?: React.FocusEventHandler<any>;
    onChange?: (event: SelectChangeEvent<Value>, child: React.ReactNode) => void;
    onClose?: (event: React.SyntheticEvent) => void;
    onFocus?: React.FocusEventHandler<any>;
    onOpen?: (event: React.SyntheticEvent) => void;
    open?: boolean;
    readOnly?: boolean;
    renderValue?: (value: SelectInputProps<Value>['value']) => React.ReactNode;
    SelectDisplayProps?: React.HTMLAttributes<HTMLDivElement>;
    sx?: SxProps<Theme>;
    tabIndex?: number;
    value?: Value;
    variant?: 'standard' | 'outlined' | 'filled';
  }
  declare const SelectInput: React.JSXElementConstructor<SelectInputProps>;
  export default SelectInput;