worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
65
node_modules/@mui/material/esm/List/List.d.ts
generated
vendored
Normal file
65
node_modules/@mui/material/esm/List/List.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { OverridableComponent, OverridableTypeMap, OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { ListClasses } from "./listClasses.js";
|
||||
export interface ListOwnProps {
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<ListClasses>;
|
||||
/**
|
||||
* If `true`, compact vertical padding designed for keyboard and mouse input is used for
|
||||
* the list and list items.
|
||||
* The prop is available to descendant components as the `dense` context.
|
||||
* @default false
|
||||
*/
|
||||
dense?: boolean;
|
||||
/**
|
||||
* If `true`, vertical padding is removed from the list.
|
||||
* @default false
|
||||
*/
|
||||
disablePadding?: boolean;
|
||||
/**
|
||||
* The content of the subheader, normally `ListSubheader`.
|
||||
*/
|
||||
subheader?: React.ReactNode;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export interface ListTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'ul'> {
|
||||
props: AdditionalProps & ListOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
}
|
||||
|
||||
/**
|
||||
* utility to create component types that inherit props from List.
|
||||
*/
|
||||
export interface ExtendListTypeMap<TypeMap extends OverridableTypeMap> {
|
||||
props: TypeMap['props'] & ListTypeMap['props'];
|
||||
defaultComponent: TypeMap['defaultComponent'];
|
||||
}
|
||||
export type ExtendList<TypeMap extends OverridableTypeMap> = OverridableComponent<ExtendListTypeMap<TypeMap>>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Lists](https://mui.com/material-ui/react-list/)
|
||||
* - [Transfer List](https://mui.com/material-ui/react-transfer-list/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [List API](https://mui.com/material-ui/api/list/)
|
||||
*/
|
||||
declare const List: ExtendList<ListTypeMap>;
|
||||
export type ListProps<RootComponent extends React.ElementType = ListTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<ListTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default List;
|
||||
134
node_modules/@mui/material/esm/List/List.js
generated
vendored
Normal file
134
node_modules/@mui/material/esm/List/List.js
generated
vendored
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
|
||||
import ListContext from "./ListContext.js";
|
||||
import { getListUtilityClass } from "./listClasses.js";
|
||||
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
disablePadding,
|
||||
dense,
|
||||
subheader
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', !disablePadding && 'padding', dense && 'dense', subheader && 'subheader']
|
||||
};
|
||||
return composeClasses(slots, getListUtilityClass, classes);
|
||||
};
|
||||
const ListRoot = styled('ul', {
|
||||
name: 'MuiList',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, !ownerState.disablePadding && styles.padding, ownerState.dense && styles.dense, ownerState.subheader && styles.subheader];
|
||||
}
|
||||
})({
|
||||
listStyle: 'none',
|
||||
margin: 0,
|
||||
padding: 0,
|
||||
position: 'relative',
|
||||
variants: [{
|
||||
props: ({
|
||||
ownerState
|
||||
}) => !ownerState.disablePadding,
|
||||
style: {
|
||||
paddingTop: 8,
|
||||
paddingBottom: 8
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.subheader,
|
||||
style: {
|
||||
paddingTop: 0
|
||||
}
|
||||
}]
|
||||
});
|
||||
const List = /*#__PURE__*/React.forwardRef(function List(inProps, ref) {
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiList'
|
||||
});
|
||||
const {
|
||||
children,
|
||||
className,
|
||||
component = 'ul',
|
||||
dense = false,
|
||||
disablePadding = false,
|
||||
subheader,
|
||||
...other
|
||||
} = props;
|
||||
const context = React.useMemo(() => ({
|
||||
dense
|
||||
}), [dense]);
|
||||
const ownerState = {
|
||||
...props,
|
||||
component,
|
||||
dense,
|
||||
disablePadding
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/_jsx(ListContext.Provider, {
|
||||
value: context,
|
||||
children: /*#__PURE__*/_jsxs(ListRoot, {
|
||||
as: component,
|
||||
className: clsx(classes.root, className),
|
||||
ref: ref,
|
||||
ownerState: ownerState,
|
||||
...other,
|
||||
children: [subheader, children]
|
||||
})
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? List.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.string,
|
||||
/**
|
||||
* The component used for the root node.
|
||||
* Either a string to use a HTML element or a component.
|
||||
*/
|
||||
component: PropTypes.elementType,
|
||||
/**
|
||||
* If `true`, compact vertical padding designed for keyboard and mouse input is used for
|
||||
* the list and list items.
|
||||
* The prop is available to descendant components as the `dense` context.
|
||||
* @default false
|
||||
*/
|
||||
dense: PropTypes.bool,
|
||||
/**
|
||||
* If `true`, vertical padding is removed from the list.
|
||||
* @default false
|
||||
*/
|
||||
disablePadding: PropTypes.bool,
|
||||
/**
|
||||
* The content of the subheader, normally `ListSubheader`.
|
||||
*/
|
||||
subheader: PropTypes.node,
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
||||
} : void 0;
|
||||
export default List;
|
||||
5
node_modules/@mui/material/esm/List/ListContext.d.ts
generated
vendored
Normal file
5
node_modules/@mui/material/esm/List/ListContext.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import * as React from 'react';
|
||||
declare const ListContext: React.Context<{
|
||||
dense?: boolean;
|
||||
}>;
|
||||
export default ListContext;
|
||||
12
node_modules/@mui/material/esm/List/ListContext.js
generated
vendored
Normal file
12
node_modules/@mui/material/esm/List/ListContext.js
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
|
||||
/**
|
||||
* @ignore - internal component.
|
||||
*/
|
||||
const ListContext = /*#__PURE__*/React.createContext({});
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
ListContext.displayName = 'ListContext';
|
||||
}
|
||||
export default ListContext;
|
||||
4
node_modules/@mui/material/esm/List/index.d.ts
generated
vendored
Normal file
4
node_modules/@mui/material/esm/List/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export { default } from "./List.js";
|
||||
export * from "./List.js";
|
||||
export { default as listClasses } from "./listClasses.js";
|
||||
export * from "./listClasses.js";
|
||||
3
node_modules/@mui/material/esm/List/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/esm/List/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export { default } from "./List.js";
|
||||
export { default as listClasses } from "./listClasses.js";
|
||||
export * from "./listClasses.js";
|
||||
14
node_modules/@mui/material/esm/List/listClasses.d.ts
generated
vendored
Normal file
14
node_modules/@mui/material/esm/List/listClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
export interface ListClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element unless `disablePadding={true}`. */
|
||||
padding: string;
|
||||
/** Styles applied to the root element if dense. */
|
||||
dense: string;
|
||||
/** Styles applied to the root element if a `subheader` is provided. */
|
||||
subheader: string;
|
||||
}
|
||||
export type ListClassKey = keyof ListClasses;
|
||||
export declare function getListUtilityClass(slot: string): string;
|
||||
declare const listClasses: ListClasses;
|
||||
export default listClasses;
|
||||
7
node_modules/@mui/material/esm/List/listClasses.js
generated
vendored
Normal file
7
node_modules/@mui/material/esm/List/listClasses.js
generated
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getListUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiList', slot);
|
||||
}
|
||||
const listClasses = generateUtilityClasses('MuiList', ['root', 'padding', 'dense', 'subheader']);
|
||||
export default listClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue