worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
40
node_modules/@mui/material/esm/FormGroup/FormGroup.d.ts
generated
vendored
Normal file
40
node_modules/@mui/material/esm/FormGroup/FormGroup.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
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 { FormGroupClasses } from "./formGroupClasses.js";
|
||||
export interface FormGroupProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<FormGroupClasses>;
|
||||
/**
|
||||
* Display group of elements in a compact row.
|
||||
* @default false
|
||||
*/
|
||||
row?: boolean;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
|
||||
/**
|
||||
* `FormGroup` wraps controls such as `Checkbox` and `Switch`.
|
||||
* It provides compact row layout.
|
||||
* For the `Radio`, you should be using the `RadioGroup` component instead of this one.
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Checkbox](https://mui.com/material-ui/react-checkbox/)
|
||||
* - [Switch](https://mui.com/material-ui/react-switch/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [FormGroup API](https://mui.com/material-ui/api/form-group/)
|
||||
*/
|
||||
export default function FormGroup(props: FormGroupProps): React.JSX.Element;
|
||||
108
node_modules/@mui/material/esm/FormGroup/FormGroup.js
generated
vendored
Normal file
108
node_modules/@mui/material/esm/FormGroup/FormGroup.js
generated
vendored
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
'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 { getFormGroupUtilityClass } from "./formGroupClasses.js";
|
||||
import useFormControl from "../FormControl/useFormControl.js";
|
||||
import formControlState from "../FormControl/formControlState.js";
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
row,
|
||||
error
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', row && 'row', error && 'error']
|
||||
};
|
||||
return composeClasses(slots, getFormGroupUtilityClass, classes);
|
||||
};
|
||||
const FormGroupRoot = styled('div', {
|
||||
name: 'MuiFormGroup',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, ownerState.row && styles.row];
|
||||
}
|
||||
})({
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
flexWrap: 'wrap',
|
||||
variants: [{
|
||||
props: {
|
||||
row: true
|
||||
},
|
||||
style: {
|
||||
flexDirection: 'row'
|
||||
}
|
||||
}]
|
||||
});
|
||||
|
||||
/**
|
||||
* `FormGroup` wraps controls such as `Checkbox` and `Switch`.
|
||||
* It provides compact row layout.
|
||||
* For the `Radio`, you should be using the `RadioGroup` component instead of this one.
|
||||
*/
|
||||
const FormGroup = /*#__PURE__*/React.forwardRef(function FormGroup(inProps, ref) {
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiFormGroup'
|
||||
});
|
||||
const {
|
||||
className,
|
||||
row = false,
|
||||
...other
|
||||
} = props;
|
||||
const muiFormControl = useFormControl();
|
||||
const fcs = formControlState({
|
||||
props,
|
||||
muiFormControl,
|
||||
states: ['error']
|
||||
});
|
||||
const ownerState = {
|
||||
...props,
|
||||
row,
|
||||
error: fcs.error
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/_jsx(FormGroupRoot, {
|
||||
className: clsx(classes.root, className),
|
||||
ownerState: ownerState,
|
||||
ref: ref,
|
||||
...other
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? FormGroup.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,
|
||||
/**
|
||||
* Display group of elements in a compact row.
|
||||
* @default false
|
||||
*/
|
||||
row: PropTypes.bool,
|
||||
/**
|
||||
* 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 FormGroup;
|
||||
12
node_modules/@mui/material/esm/FormGroup/formGroupClasses.d.ts
generated
vendored
Normal file
12
node_modules/@mui/material/esm/FormGroup/formGroupClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
export interface FormGroupClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if `row={true}`. */
|
||||
row: string;
|
||||
/** State class applied to the root element if `error={true}`. */
|
||||
error: string;
|
||||
}
|
||||
export type FormGroupClassKey = keyof FormGroupClasses;
|
||||
export declare function getFormGroupUtilityClass(slot: string): string;
|
||||
declare const formGroupClasses: FormGroupClasses;
|
||||
export default formGroupClasses;
|
||||
7
node_modules/@mui/material/esm/FormGroup/formGroupClasses.js
generated
vendored
Normal file
7
node_modules/@mui/material/esm/FormGroup/formGroupClasses.js
generated
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getFormGroupUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiFormGroup', slot);
|
||||
}
|
||||
const formGroupClasses = generateUtilityClasses('MuiFormGroup', ['root', 'row', 'error']);
|
||||
export default formGroupClasses;
|
||||
4
node_modules/@mui/material/esm/FormGroup/index.d.ts
generated
vendored
Normal file
4
node_modules/@mui/material/esm/FormGroup/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export { default } from "./FormGroup.js";
|
||||
export * from "./FormGroup.js";
|
||||
export { default as formGroupClasses } from "./formGroupClasses.js";
|
||||
export * from "./formGroupClasses.js";
|
||||
3
node_modules/@mui/material/esm/FormGroup/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/esm/FormGroup/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export { default } from "./FormGroup.js";
|
||||
export { default as formGroupClasses } from "./formGroupClasses.js";
|
||||
export * from "./formGroupClasses.js";
|
||||
Loading…
Add table
Add a link
Reference in a new issue