worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
68
node_modules/@mui/material/esm/TabScrollButton/TabScrollButton.d.ts
generated
vendored
Normal file
68
node_modules/@mui/material/esm/TabScrollButton/TabScrollButton.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { SlotComponentProps } from "../utils/types.js";
|
||||
import { ButtonBaseProps } from "../ButtonBase/index.js";
|
||||
import { Theme } from "../styles/index.js";
|
||||
import SvgIcon from "../SvgIcon/index.js";
|
||||
import { TabScrollButtonClasses } from "./tabScrollButtonClasses.js";
|
||||
export interface TabScrollButtonStartIconSlotPropsOverrides {}
|
||||
export interface TabScrollButtonEndIconSlotPropsOverrides {}
|
||||
export interface TabScrollButtonOwnerState extends TabScrollButtonProps {
|
||||
isRtl: boolean;
|
||||
}
|
||||
export interface TabScrollButtonProps extends ButtonBaseProps {
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<TabScrollButtonClasses>;
|
||||
/**
|
||||
* The components used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slots?: {
|
||||
StartScrollButtonIcon?: React.ElementType;
|
||||
EndScrollButtonIcon?: React.ElementType;
|
||||
};
|
||||
/**
|
||||
* The extra props for the slot components.
|
||||
* You can override the existing props or add new ones.
|
||||
* @default {}
|
||||
*/
|
||||
slotProps?: {
|
||||
startScrollButtonIcon?: SlotComponentProps<typeof SvgIcon, TabScrollButtonStartIconSlotPropsOverrides, TabScrollButtonOwnerState>;
|
||||
endScrollButtonIcon?: SlotComponentProps<typeof SvgIcon, TabScrollButtonEndIconSlotPropsOverrides, TabScrollButtonOwnerState>;
|
||||
};
|
||||
/**
|
||||
* The direction the button should indicate.
|
||||
*/
|
||||
direction: 'left' | 'right';
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled?: boolean;
|
||||
/**
|
||||
* The component orientation (layout flow direction).
|
||||
*/
|
||||
orientation: 'horizontal' | 'vertical';
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [TabScrollButton API](https://mui.com/material-ui/api/tab-scroll-button/)
|
||||
*/
|
||||
export default function TabScrollButton(props: TabScrollButtonProps): React.JSX.Element;
|
||||
Loading…
Add table
Add a link
Reference in a new issue