worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
59
node_modules/@mui/material/esm/AppBar/AppBar.d.ts
generated
vendored
Normal file
59
node_modules/@mui/material/esm/AppBar/AppBar.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { OverridableStringUnion } from '@mui/types';
|
||||
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { PropTypes, Theme } from "../styles/index.js";
|
||||
import { AppBarClasses } from "./appBarClasses.js";
|
||||
import { ExtendPaperTypeMap } from "../Paper/Paper.js";
|
||||
export interface AppBarPropsColorOverrides {}
|
||||
export interface AppBarOwnProps {
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<AppBarClasses>;
|
||||
/**
|
||||
* 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).
|
||||
* @default 'primary'
|
||||
*/
|
||||
color?: OverridableStringUnion<PropTypes.Color | 'transparent' | 'error' | 'info' | 'success' | 'warning', AppBarPropsColorOverrides>;
|
||||
/**
|
||||
* If true, the `color` prop is applied in dark mode.
|
||||
* @default false
|
||||
*/
|
||||
enableColorOnDark?: boolean;
|
||||
/**
|
||||
* The positioning type. The behavior of the different options is described
|
||||
* [in the MDN web docs](https://developer.mozilla.org/en-US/docs/Web/CSS/position).
|
||||
* Note: `sticky` is not universally supported and will fall back to `static` when unavailable.
|
||||
* @default 'fixed'
|
||||
*/
|
||||
position?: 'fixed' | 'absolute' | 'sticky' | 'static' | 'relative';
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export type AppBarTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'header'> = ExtendPaperTypeMap<{
|
||||
props: AdditionalProps & AppBarOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}, 'position' | 'color' | 'classes'>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [App Bar](https://mui.com/material-ui/react-app-bar/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [AppBar API](https://mui.com/material-ui/api/app-bar/)
|
||||
* - inherits [Paper API](https://mui.com/material-ui/api/paper/)
|
||||
*/
|
||||
|
||||
declare const AppBar: OverridableComponent<AppBarTypeMap>;
|
||||
export type AppBarProps<RootComponent extends React.ElementType = AppBarTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<AppBarTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default AppBar;
|
||||
Loading…
Add table
Add a link
Reference in a new issue