1
0
Fork 0

worked on GarageApp stuff

This commit is contained in:
Techognito 2025-08-25 17:46:11 +02:00
parent 60aaf17af3
commit eb606572b0
51919 changed files with 2168177 additions and 18 deletions

View file

@ -0,0 +1,37 @@
import * as React from 'react';
import { SxProps } from '@mui/system';
import { TypographyTypeMap } from "../Typography/index.js";
import { OverrideProps, OverridableComponent } from "../OverridableComponent/index.js";
import { Theme } from "../styles/index.js";
import { DialogContentTextClasses } from "./dialogContentTextClasses.js";
export interface DialogContentTextOwnProps extends Omit<TypographyTypeMap['props'], 'classes'> {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<DialogContentTextClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export interface DialogContentTextTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = TypographyTypeMap['defaultComponent']> {
props: AdditionalProps & DialogContentTextOwnProps;
defaultComponent: RootComponent;
}
/**
*
* Demos:
*
* - [Dialog](https://mui.com/material-ui/react-dialog/)
*
* API:
*
* - [DialogContentText API](https://mui.com/material-ui/api/dialog-content-text/)
* - inherits [Typography API](https://mui.com/material-ui/api/typography/)
*/
declare const DialogContentText: OverridableComponent<DialogContentTextTypeMap>;
export type DialogContentTextProps<RootComponent extends React.ElementType = DialogContentTextTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<DialogContentTextTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
component?: React.ElementType;
};
export default DialogContentText;

View file

@ -0,0 +1,76 @@
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import composeClasses from '@mui/utils/composeClasses';
import rootShouldForwardProp from "../styles/rootShouldForwardProp.js";
import { styled } from "../zero-styled/index.js";
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
import Typography from "../Typography/index.js";
import { getDialogContentTextUtilityClass } from "./dialogContentTextClasses.js";
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
classes
} = ownerState;
const slots = {
root: ['root']
};
const composedClasses = composeClasses(slots, getDialogContentTextUtilityClass, classes);
return {
...classes,
// forward classes to the Typography
...composedClasses
};
};
const DialogContentTextRoot = styled(Typography, {
shouldForwardProp: prop => rootShouldForwardProp(prop) || prop === 'classes',
name: 'MuiDialogContentText',
slot: 'Root'
})({});
const DialogContentText = /*#__PURE__*/React.forwardRef(function DialogContentText(inProps, ref) {
const props = useDefaultProps({
props: inProps,
name: 'MuiDialogContentText'
});
const {
children,
className,
...ownerState
} = props;
const classes = useUtilityClasses(ownerState);
return /*#__PURE__*/_jsx(DialogContentTextRoot, {
component: "p",
variant: "body1",
color: "textSecondary",
ref: ref,
ownerState: ownerState,
className: clsx(classes.root, className),
...props,
classes: classes
});
});
process.env.NODE_ENV !== "production" ? DialogContentText.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 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 DialogContentText;

View file

@ -0,0 +1,8 @@
export interface DialogContentTextClasses {
/** Styles applied to the root element. */
root: string;
}
export type DialogContentTextClassKey = keyof DialogContentTextClasses;
export declare function getDialogContentTextUtilityClass(slot: string): string;
declare const dialogContentTextClasses: DialogContentTextClasses;
export default dialogContentTextClasses;

View file

@ -0,0 +1,7 @@
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
import generateUtilityClass from '@mui/utils/generateUtilityClass';
export function getDialogContentTextUtilityClass(slot) {
return generateUtilityClass('MuiDialogContentText', slot);
}
const dialogContentTextClasses = generateUtilityClasses('MuiDialogContentText', ['root']);
export default dialogContentTextClasses;

View file

@ -0,0 +1,4 @@
export { default } from "./DialogContentText.js";
export * from "./DialogContentText.js";
export { default as dialogContentTextClasses } from "./dialogContentTextClasses.js";
export * from "./dialogContentTextClasses.js";

View file

@ -0,0 +1,3 @@
export { default } from "./DialogContentText.js";
export { default as dialogContentTextClasses } from "./dialogContentTextClasses.js";
export * from "./dialogContentTextClasses.js";