Blame view

天文台pc/tianwentai-ui/node_modules/@mui/system/esm/Stack/StackProps.d.ts 1.99 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
  import * as React from 'react';
  import { OverrideProps } from '@mui/types';
  import { ResponsiveStyleValue, SxProps } from "../styleFunctionSx/index.js";
  import { SystemProps } from "../Box/index.js";
  import { Theme } from "../createTheme/index.js";
  export interface StackBaseProps {
    /**
     * The content of the component.
     */
    children?: React.ReactNode;
    /**
     * Defines the `flex-direction` style property.
     * It is applied for all screen sizes.
     * @default 'column'
     */
    direction?: ResponsiveStyleValue<'row' | 'row-reverse' | 'column' | 'column-reverse'> | undefined;
    /**
     * Defines the space between immediate children.
     * @default 0
     */
    spacing?: ResponsiveStyleValue<number | string> | undefined;
    /**
     * Add an element between each child.
     */
    divider?: React.ReactNode;
    /**
     * If `true`, the CSS flexbox `gap` is used instead of applying `margin` to children.
     *
     * While CSS `gap` removes the [known limitations](https://mui.com/joy-ui/react-stack/#limitations),
     * it is not fully supported in some browsers. We recommend checking https://caniuse.com/?search=flex%20gap before using this flag.
     *
     * To enable this flag globally, follow the theme's default props configuration.
     * @default false
     */
    useFlexGap?: boolean | undefined;
  }
  export interface StackTypeMap<AdditionalProps = {}, DefaultComponent extends React.ElementType = 'div'> {
    props: AdditionalProps & StackBaseProps & {
      /**
       * The system prop, which allows defining system overrides as well as additional CSS styles.
       */
      sx?: SxProps<Theme> | undefined;
    } & SystemProps<Theme>;
    defaultComponent: DefaultComponent;
  }
  export type StackProps<RootComponent extends React.ElementType = StackTypeMap['defaultComponent'], AdditionalProps = {
    component?: React.ElementType | undefined;
  }> = OverrideProps<StackTypeMap<AdditionalProps, RootComponent>, RootComponent>;
  export interface StackOwnerState {
    direction: StackProps['direction'];
    spacing: StackProps['spacing'];
    useFlexGap: boolean;
  }