worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
37
node_modules/@mui/material/ListItemSecondaryAction/ListItemSecondaryAction.d.ts
generated
vendored
Normal file
37
node_modules/@mui/material/ListItemSecondaryAction/ListItemSecondaryAction.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { InternalStandardProps as StandardProps } from "../internal/index.js";
|
||||
import { ListItemSecondaryActionClasses } from "./listItemSecondaryActionClasses.js";
|
||||
export interface ListItemSecondaryActionProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
|
||||
/**
|
||||
* The content of the component, normally an `IconButton` or selection control.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<ListItemSecondaryActionClasses>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Must be used as the last child of ListItem to function properly.
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Lists](https://mui.com/material-ui/react-list/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [ListItemSecondaryAction API](https://mui.com/material-ui/api/list-item-secondary-action/)
|
||||
*
|
||||
* @deprecated Use the `secondaryAction` prop in the `ListItem` component instead. This component will be removed in a future major release. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*/
|
||||
declare const ListItemSecondaryAction: ((props: ListItemSecondaryActionProps) => React.JSX.Element) & {
|
||||
muiName: string;
|
||||
};
|
||||
export default ListItemSecondaryAction;
|
||||
103
node_modules/@mui/material/ListItemSecondaryAction/ListItemSecondaryAction.js
generated
vendored
Normal file
103
node_modules/@mui/material/ListItemSecondaryAction/ListItemSecondaryAction.js
generated
vendored
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
"use strict";
|
||||
'use client';
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var React = _interopRequireWildcard(require("react"));
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
var _clsx = _interopRequireDefault(require("clsx"));
|
||||
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
||||
var _zeroStyled = require("../zero-styled");
|
||||
var _DefaultPropsProvider = require("../DefaultPropsProvider");
|
||||
var _ListContext = _interopRequireDefault(require("../List/ListContext"));
|
||||
var _listItemSecondaryActionClasses = require("./listItemSecondaryActionClasses");
|
||||
var _jsxRuntime = require("react/jsx-runtime");
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
disableGutters,
|
||||
classes
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', disableGutters && 'disableGutters']
|
||||
};
|
||||
return (0, _composeClasses.default)(slots, _listItemSecondaryActionClasses.getListItemSecondaryActionClassesUtilityClass, classes);
|
||||
};
|
||||
const ListItemSecondaryActionRoot = (0, _zeroStyled.styled)('div', {
|
||||
name: 'MuiListItemSecondaryAction',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, ownerState.disableGutters && styles.disableGutters];
|
||||
}
|
||||
})({
|
||||
position: 'absolute',
|
||||
right: 16,
|
||||
top: '50%',
|
||||
transform: 'translateY(-50%)',
|
||||
variants: [{
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.disableGutters,
|
||||
style: {
|
||||
right: 0
|
||||
}
|
||||
}]
|
||||
});
|
||||
|
||||
/**
|
||||
* Must be used as the last child of ListItem to function properly.
|
||||
*
|
||||
* @deprecated Use the `secondaryAction` prop in the `ListItem` component instead. This component will be removed in a future major release. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*/
|
||||
const ListItemSecondaryAction = /*#__PURE__*/React.forwardRef(function ListItemSecondaryAction(inProps, ref) {
|
||||
const props = (0, _DefaultPropsProvider.useDefaultProps)({
|
||||
props: inProps,
|
||||
name: 'MuiListItemSecondaryAction'
|
||||
});
|
||||
const {
|
||||
className,
|
||||
...other
|
||||
} = props;
|
||||
const context = React.useContext(_ListContext.default);
|
||||
const ownerState = {
|
||||
...props,
|
||||
disableGutters: context.disableGutters
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/(0, _jsxRuntime.jsx)(ListItemSecondaryActionRoot, {
|
||||
className: (0, _clsx.default)(classes.root, className),
|
||||
ownerState: ownerState,
|
||||
ref: ref,
|
||||
...other
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? ListItemSecondaryAction.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, normally an `IconButton` or selection control.
|
||||
*/
|
||||
children: _propTypes.default.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: _propTypes.default.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: _propTypes.default.string,
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object])
|
||||
} : void 0;
|
||||
ListItemSecondaryAction.muiName = 'ListItemSecondaryAction';
|
||||
var _default = exports.default = ListItemSecondaryAction;
|
||||
4
node_modules/@mui/material/ListItemSecondaryAction/index.d.ts
generated
vendored
Normal file
4
node_modules/@mui/material/ListItemSecondaryAction/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export { default } from "./ListItemSecondaryAction.js";
|
||||
export * from "./ListItemSecondaryAction.js";
|
||||
export { default as listItemSecondaryActionClasses } from "./listItemSecondaryActionClasses.js";
|
||||
export * from "./listItemSecondaryActionClasses.js";
|
||||
35
node_modules/@mui/material/ListItemSecondaryAction/index.js
generated
vendored
Normal file
35
node_modules/@mui/material/ListItemSecondaryAction/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
var _exportNames = {
|
||||
listItemSecondaryActionClasses: true
|
||||
};
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _ListItemSecondaryAction.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "listItemSecondaryActionClasses", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _listItemSecondaryActionClasses.default;
|
||||
}
|
||||
});
|
||||
var _ListItemSecondaryAction = _interopRequireDefault(require("./ListItemSecondaryAction"));
|
||||
var _listItemSecondaryActionClasses = _interopRequireWildcard(require("./listItemSecondaryActionClasses"));
|
||||
Object.keys(_listItemSecondaryActionClasses).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
||||
if (key in exports && exports[key] === _listItemSecondaryActionClasses[key]) return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _listItemSecondaryActionClasses[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
10
node_modules/@mui/material/ListItemSecondaryAction/listItemSecondaryActionClasses.d.ts
generated
vendored
Normal file
10
node_modules/@mui/material/ListItemSecondaryAction/listItemSecondaryActionClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export interface ListItemSecondaryActionClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element when the parent `ListItem` has `disableGutters={true}`. */
|
||||
disableGutters: string;
|
||||
}
|
||||
export type ListItemSecondaryActionClassKey = keyof ListItemSecondaryActionClasses;
|
||||
export declare function getListItemSecondaryActionClassesUtilityClass(slot: string): string;
|
||||
declare const listItemSecondaryActionClasses: ListItemSecondaryActionClasses;
|
||||
export default listItemSecondaryActionClasses;
|
||||
15
node_modules/@mui/material/ListItemSecondaryAction/listItemSecondaryActionClasses.js
generated
vendored
Normal file
15
node_modules/@mui/material/ListItemSecondaryAction/listItemSecondaryActionClasses.js
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
exports.getListItemSecondaryActionClassesUtilityClass = getListItemSecondaryActionClassesUtilityClass;
|
||||
var _generateUtilityClasses = _interopRequireDefault(require("@mui/utils/generateUtilityClasses"));
|
||||
var _generateUtilityClass = _interopRequireDefault(require("@mui/utils/generateUtilityClass"));
|
||||
function getListItemSecondaryActionClassesUtilityClass(slot) {
|
||||
return (0, _generateUtilityClass.default)('MuiListItemSecondaryAction', slot);
|
||||
}
|
||||
const listItemSecondaryActionClasses = (0, _generateUtilityClasses.default)('MuiListItemSecondaryAction', ['root', 'disableGutters']);
|
||||
var _default = exports.default = listItemSecondaryActionClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue