/
sweetebin
/
hackaton_26
Обзор
Документация
Войти
/
sweetebin
/
hackaton_26
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
web-form-project/node_modules/@mui/system/Stack/StackProps.d.ts
53 строки
2 KB
AKorostelev
web form project added
28 июл 2026, 10:57
28 июл 2026, 10:57
4339e77
Код
Авторство
О чём код?
import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { ResponsiveStyleValue, SxProps } from '../styleFunctionSx'; import { SystemProps } from '../Box'; import { Theme } from '../createTheme'; 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'>; /** * Defines the space between immediate children. * @default 0 */ spacing?: ResponsiveStyleValue<number | string>; /** * 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; } 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>; } & SystemProps<Theme>; defaultComponent: DefaultComponent; } export type StackProps<RootComponent extends React.ElementType = StackTypeMap['defaultComponent'], AdditionalProps = { component?: React.ElementType; }> = OverrideProps<StackTypeMap<AdditionalProps, RootComponent>, RootComponent>; export interface StackOwnerState { direction: StackProps['direction']; spacing: StackProps['spacing']; useFlexGap: boolean; }