Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/FormLabel/FormLabel.d.ts 2.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  import * as React from 'react';
  import { SxProps } from '@mui/system';
  import { OverridableStringUnion } from '@mui/types';
  import { Theme } from "../styles/index.js";
  import { OverridableComponent, OverrideProps, OverridableTypeMap } from "../OverridableComponent/index.js";
  import { FormLabelClasses } from "./formLabelClasses.js";
  export interface FormLabelPropsColorOverrides {}
  
  /**
   * This type is kept for compatibility. Use `FormLabelOwnProps` instead.
   */
  export type FormLabelBaseProps = React.LabelHTMLAttributes<HTMLLabelElement>;
  export interface FormLabelOwnProps {
    /**
     * The content of the component.
     */
    children?: React.LabelHTMLAttributes<HTMLLabelElement>['children'];
    /**
     * Override or extend the styles applied to the component.
     */
    classes?: Partial<FormLabelClasses>;
    /**
     * The color of the component.
     * It supports both default and custom theme colors, which can be added as shown in the
     * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
     */
    color?: OverridableStringUnion<'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning', FormLabelPropsColorOverrides>;
    /**
     * If `true`, the label should be displayed in a disabled state.
     */
    disabled?: boolean;
    /**
     * If `true`, the label is displayed in an error state.
     */
    error?: boolean;
    /**
     * If `true`, the label should use filled classes key.
     */
    filled?: boolean;
    /**
     * If `true`, the input of this label is focused (used by `FormGroup` components).
     */
    focused?: boolean;
    /**
     * If `true`, the label will indicate that the `input` is required.
     */
    required?: boolean;
    /**
     * The system prop that allows defining system overrides as well as additional CSS styles.
     */
    sx?: SxProps<Theme>;
  }
  export interface FormLabelTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'label'> {
    props: AdditionalProps & FormLabelBaseProps & FormLabelOwnProps;
    defaultComponent: RootComponent;
  }
  
  /**
   *
   * Demos:
   *
   * - [Checkbox](https://mui.com/material-ui/react-checkbox/)
   * - [Radio Group](https://mui.com/material-ui/react-radio-button/)
   * - [Switch](https://mui.com/material-ui/react-switch/)
   *
   * API:
   *
   * - [FormLabel API](https://mui.com/material-ui/api/form-label/)
   */
  declare const FormLabel: OverridableComponent<FormLabelTypeMap>;
  export interface ExtendFormLabelTypeMap<TypeMap extends OverridableTypeMap> {
    props: TypeMap['props'] & Pick<FormLabelOwnProps, 'filled' | 'color'>;
    defaultComponent: TypeMap['defaultComponent'];
  }
  export type FormLabelProps<RootComponent extends React.ElementType = FormLabelTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<FormLabelTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
    component?: React.ElementType;
  };
  export default FormLabel;