worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
29
node_modules/@mui/material/esm/StepConnector/StepConnector.d.ts
generated
vendored
Normal file
29
node_modules/@mui/material/esm/StepConnector/StepConnector.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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 { StepConnectorClasses } from "./stepConnectorClasses.js";
|
||||
export type StepConnectorIcon = React.ReactElement<unknown> | string | number;
|
||||
export interface StepConnectorProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, 'children'> {
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<StepConnectorClasses>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
export type StepConnectorClasskey = keyof NonNullable<StepConnectorProps['classes']>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Stepper](https://mui.com/material-ui/react-stepper/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [StepConnector API](https://mui.com/material-ui/api/step-connector/)
|
||||
*/
|
||||
export default function StepConnector(props: StepConnectorProps): React.JSX.Element;
|
||||
152
node_modules/@mui/material/esm/StepConnector/StepConnector.js
generated
vendored
Normal file
152
node_modules/@mui/material/esm/StepConnector/StepConnector.js
generated
vendored
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import capitalize from "../utils/capitalize.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
|
||||
import StepperContext from "../Stepper/StepperContext.js";
|
||||
import StepContext from "../Step/StepContext.js";
|
||||
import { getStepConnectorUtilityClass } from "./stepConnectorClasses.js";
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
orientation,
|
||||
alternativeLabel,
|
||||
active,
|
||||
completed,
|
||||
disabled
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', orientation, alternativeLabel && 'alternativeLabel', active && 'active', completed && 'completed', disabled && 'disabled'],
|
||||
line: ['line', `line${capitalize(orientation)}`]
|
||||
};
|
||||
return composeClasses(slots, getStepConnectorUtilityClass, classes);
|
||||
};
|
||||
const StepConnectorRoot = styled('div', {
|
||||
name: 'MuiStepConnector',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, styles[ownerState.orientation], ownerState.alternativeLabel && styles.alternativeLabel, ownerState.completed && styles.completed];
|
||||
}
|
||||
})({
|
||||
flex: '1 1 auto',
|
||||
variants: [{
|
||||
props: {
|
||||
orientation: 'vertical'
|
||||
},
|
||||
style: {
|
||||
marginLeft: 12 // half icon
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
alternativeLabel: true
|
||||
},
|
||||
style: {
|
||||
position: 'absolute',
|
||||
top: 8 + 4,
|
||||
left: 'calc(-50% + 20px)',
|
||||
right: 'calc(50% + 20px)'
|
||||
}
|
||||
}]
|
||||
});
|
||||
const StepConnectorLine = styled('span', {
|
||||
name: 'MuiStepConnector',
|
||||
slot: 'Line',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.line, styles[`line${capitalize(ownerState.orientation)}`]];
|
||||
}
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => {
|
||||
const borderColor = theme.palette.mode === 'light' ? theme.palette.grey[400] : theme.palette.grey[600];
|
||||
return {
|
||||
display: 'block',
|
||||
borderColor: theme.vars ? theme.vars.palette.StepConnector.border : borderColor,
|
||||
variants: [{
|
||||
props: {
|
||||
orientation: 'horizontal'
|
||||
},
|
||||
style: {
|
||||
borderTopStyle: 'solid',
|
||||
borderTopWidth: 1
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
orientation: 'vertical'
|
||||
},
|
||||
style: {
|
||||
borderLeftStyle: 'solid',
|
||||
borderLeftWidth: 1,
|
||||
minHeight: 24
|
||||
}
|
||||
}]
|
||||
};
|
||||
}));
|
||||
const StepConnector = /*#__PURE__*/React.forwardRef(function StepConnector(inProps, ref) {
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiStepConnector'
|
||||
});
|
||||
const {
|
||||
className,
|
||||
...other
|
||||
} = props;
|
||||
const {
|
||||
alternativeLabel,
|
||||
orientation = 'horizontal'
|
||||
} = React.useContext(StepperContext);
|
||||
const {
|
||||
active,
|
||||
disabled,
|
||||
completed
|
||||
} = React.useContext(StepContext);
|
||||
const ownerState = {
|
||||
...props,
|
||||
alternativeLabel,
|
||||
orientation,
|
||||
active,
|
||||
completed,
|
||||
disabled
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/_jsx(StepConnectorRoot, {
|
||||
className: clsx(classes.root, className),
|
||||
ref: ref,
|
||||
ownerState: ownerState,
|
||||
...other,
|
||||
children: /*#__PURE__*/_jsx(StepConnectorLine, {
|
||||
className: classes.line,
|
||||
ownerState: ownerState
|
||||
})
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? StepConnector.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`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* 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 StepConnector;
|
||||
4
node_modules/@mui/material/esm/StepConnector/index.d.ts
generated
vendored
Normal file
4
node_modules/@mui/material/esm/StepConnector/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export { default } from "./StepConnector.js";
|
||||
export * from "./StepConnector.js";
|
||||
export { default as stepConnectorClasses } from "./stepConnectorClasses.js";
|
||||
export * from "./stepConnectorClasses.js";
|
||||
3
node_modules/@mui/material/esm/StepConnector/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/esm/StepConnector/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export { default } from "./StepConnector.js";
|
||||
export { default as stepConnectorClasses } from "./stepConnectorClasses.js";
|
||||
export * from "./stepConnectorClasses.js";
|
||||
30
node_modules/@mui/material/esm/StepConnector/stepConnectorClasses.d.ts
generated
vendored
Normal file
30
node_modules/@mui/material/esm/StepConnector/stepConnectorClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
export interface StepConnectorClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if `orientation="horizontal"`. */
|
||||
horizontal: string;
|
||||
/** Styles applied to the root element if `orientation="vertical"`. */
|
||||
vertical: string;
|
||||
/** Styles applied to the root element if `alternativeLabel={true}`. */
|
||||
alternativeLabel: string;
|
||||
/** State class applied to the root element if `active={true}`. */
|
||||
active: string;
|
||||
/** State class applied to the root element if `completed={true}`. */
|
||||
completed: string;
|
||||
/** State class applied to the root element if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** Styles applied to the line element. */
|
||||
line: string;
|
||||
/** Styles applied to the line element if `orientation="horizontal"`.
|
||||
* @deprecated Combine the [.MuiStepConnector-horizontal](/material-ui/api/step-connector/#step-connector-classes-horizontal) and [.MuiStepConnector-line](/material-ui/api/step-connector/#step-connector-classes-line) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*/
|
||||
lineHorizontal: string;
|
||||
/** Styles applied to the line element if `orientation="vertical"`.
|
||||
* @deprecated Combine the [.MuiStepConnector-vertical](/material-ui/api/step-connector/#step-connector-classes-vertical) and [.MuiStepConnector-line](/material-ui/api/step-connector/#step-connector-classes-line) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*/
|
||||
lineVertical: string;
|
||||
}
|
||||
export type StepConnectorClassKey = keyof StepConnectorClasses;
|
||||
export declare function getStepConnectorUtilityClass(slot: string): string;
|
||||
declare const stepConnectorClasses: StepConnectorClasses;
|
||||
export default stepConnectorClasses;
|
||||
7
node_modules/@mui/material/esm/StepConnector/stepConnectorClasses.js
generated
vendored
Normal file
7
node_modules/@mui/material/esm/StepConnector/stepConnectorClasses.js
generated
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getStepConnectorUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiStepConnector', slot);
|
||||
}
|
||||
const stepConnectorClasses = generateUtilityClasses('MuiStepConnector', ['root', 'horizontal', 'vertical', 'alternativeLabel', 'active', 'completed', 'disabled', 'line', 'lineHorizontal', 'lineVertical']);
|
||||
export default stepConnectorClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue