Jesus sucks
This commit is contained in:
82
backend/frontend/node_modules/@mui/material/StepLabel/StepLabel.d.ts
generated
vendored
Normal file
82
backend/frontend/node_modules/@mui/material/StepLabel/StepLabel.d.ts
generated
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { InternalStandardProps as StandardProps } from '..';
|
||||
import { StepIconProps } from '../StepIcon';
|
||||
import { Theme } from '../styles';
|
||||
import { StepLabelClasses } from './stepLabelClasses';
|
||||
|
||||
export interface StepLabelProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
|
||||
/**
|
||||
* In most cases will simply be a string containing a title for the label.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<StepLabelClasses>;
|
||||
/**
|
||||
* The props used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
componentsProps?: {
|
||||
/**
|
||||
* Props applied to the label element.
|
||||
* @default {}
|
||||
*/
|
||||
label?: React.HTMLProps<HTMLSpanElement>;
|
||||
};
|
||||
/**
|
||||
* If `true`, the step is marked as failed.
|
||||
* @default false
|
||||
*/
|
||||
error?: boolean;
|
||||
/**
|
||||
* Override the default label of the step icon.
|
||||
*/
|
||||
icon?: React.ReactNode;
|
||||
/**
|
||||
* The optional node to display.
|
||||
*/
|
||||
optional?: React.ReactNode;
|
||||
/**
|
||||
* The props used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slotProps?: {
|
||||
/**
|
||||
* Props applied to the label element.
|
||||
* @default {}
|
||||
*/
|
||||
label?: React.HTMLProps<HTMLSpanElement>;
|
||||
};
|
||||
/**
|
||||
* The component to render in place of the [`StepIcon`](/material-ui/api/step-icon/).
|
||||
*/
|
||||
StepIconComponent?: React.ElementType<StepIconProps>;
|
||||
/**
|
||||
* Props applied to the [`StepIcon`](/material-ui/api/step-icon/) element.
|
||||
*/
|
||||
StepIconProps?: Partial<StepIconProps>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
}
|
||||
|
||||
export type StepLabelClasskey = keyof NonNullable<StepLabelProps['classes']>;
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Stepper](https://mui.com/material-ui/react-stepper/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [StepLabel API](https://mui.com/material-ui/api/step-label/)
|
||||
*/
|
||||
declare const StepLabel: ((props: StepLabelProps) => React.JSX.Element) & {
|
||||
muiName: string;
|
||||
};
|
||||
|
||||
export default StepLabel;
|
||||
239
backend/frontend/node_modules/@mui/material/StepLabel/StepLabel.js
generated
vendored
Normal file
239
backend/frontend/node_modules/@mui/material/StepLabel/StepLabel.js
generated
vendored
Normal file
@@ -0,0 +1,239 @@
|
||||
'use client';
|
||||
|
||||
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
||||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
const _excluded = ["children", "className", "componentsProps", "error", "icon", "optional", "slotProps", "StepIconComponent", "StepIconProps"];
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import styled from '../styles/styled';
|
||||
import { useDefaultProps } from '../DefaultPropsProvider';
|
||||
import StepIcon from '../StepIcon';
|
||||
import StepperContext from '../Stepper/StepperContext';
|
||||
import StepContext from '../Step/StepContext';
|
||||
import stepLabelClasses, { getStepLabelUtilityClass } from './stepLabelClasses';
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
import { jsxs as _jsxs } from "react/jsx-runtime";
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
orientation,
|
||||
active,
|
||||
completed,
|
||||
error,
|
||||
disabled,
|
||||
alternativeLabel
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', orientation, error && 'error', disabled && 'disabled', alternativeLabel && 'alternativeLabel'],
|
||||
label: ['label', active && 'active', completed && 'completed', error && 'error', disabled && 'disabled', alternativeLabel && 'alternativeLabel'],
|
||||
iconContainer: ['iconContainer', active && 'active', completed && 'completed', error && 'error', disabled && 'disabled', alternativeLabel && 'alternativeLabel'],
|
||||
labelContainer: ['labelContainer', alternativeLabel && 'alternativeLabel']
|
||||
};
|
||||
return composeClasses(slots, getStepLabelUtilityClass, classes);
|
||||
};
|
||||
const StepLabelRoot = styled('span', {
|
||||
name: 'MuiStepLabel',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, styles[ownerState.orientation]];
|
||||
}
|
||||
})(({
|
||||
ownerState
|
||||
}) => _extends({
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
[`&.${stepLabelClasses.alternativeLabel}`]: {
|
||||
flexDirection: 'column'
|
||||
},
|
||||
[`&.${stepLabelClasses.disabled}`]: {
|
||||
cursor: 'default'
|
||||
}
|
||||
}, ownerState.orientation === 'vertical' && {
|
||||
textAlign: 'left',
|
||||
padding: '8px 0'
|
||||
}));
|
||||
const StepLabelLabel = styled('span', {
|
||||
name: 'MuiStepLabel',
|
||||
slot: 'Label',
|
||||
overridesResolver: (props, styles) => styles.label
|
||||
})(({
|
||||
theme
|
||||
}) => _extends({}, theme.typography.body2, {
|
||||
display: 'block',
|
||||
transition: theme.transitions.create('color', {
|
||||
duration: theme.transitions.duration.shortest
|
||||
}),
|
||||
[`&.${stepLabelClasses.active}`]: {
|
||||
color: (theme.vars || theme).palette.text.primary,
|
||||
fontWeight: 500
|
||||
},
|
||||
[`&.${stepLabelClasses.completed}`]: {
|
||||
color: (theme.vars || theme).palette.text.primary,
|
||||
fontWeight: 500
|
||||
},
|
||||
[`&.${stepLabelClasses.alternativeLabel}`]: {
|
||||
marginTop: 16
|
||||
},
|
||||
[`&.${stepLabelClasses.error}`]: {
|
||||
color: (theme.vars || theme).palette.error.main
|
||||
}
|
||||
}));
|
||||
const StepLabelIconContainer = styled('span', {
|
||||
name: 'MuiStepLabel',
|
||||
slot: 'IconContainer',
|
||||
overridesResolver: (props, styles) => styles.iconContainer
|
||||
})(() => ({
|
||||
flexShrink: 0,
|
||||
// Fix IE11 issue
|
||||
display: 'flex',
|
||||
paddingRight: 8,
|
||||
[`&.${stepLabelClasses.alternativeLabel}`]: {
|
||||
paddingRight: 0
|
||||
}
|
||||
}));
|
||||
const StepLabelLabelContainer = styled('span', {
|
||||
name: 'MuiStepLabel',
|
||||
slot: 'LabelContainer',
|
||||
overridesResolver: (props, styles) => styles.labelContainer
|
||||
})(({
|
||||
theme
|
||||
}) => ({
|
||||
width: '100%',
|
||||
color: (theme.vars || theme).palette.text.secondary,
|
||||
[`&.${stepLabelClasses.alternativeLabel}`]: {
|
||||
textAlign: 'center'
|
||||
}
|
||||
}));
|
||||
const StepLabel = /*#__PURE__*/React.forwardRef(function StepLabel(inProps, ref) {
|
||||
var _slotProps$label;
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiStepLabel'
|
||||
});
|
||||
const {
|
||||
children,
|
||||
className,
|
||||
componentsProps = {},
|
||||
error = false,
|
||||
icon: iconProp,
|
||||
optional,
|
||||
slotProps = {},
|
||||
StepIconComponent: StepIconComponentProp,
|
||||
StepIconProps
|
||||
} = props,
|
||||
other = _objectWithoutPropertiesLoose(props, _excluded);
|
||||
const {
|
||||
alternativeLabel,
|
||||
orientation
|
||||
} = React.useContext(StepperContext);
|
||||
const {
|
||||
active,
|
||||
disabled,
|
||||
completed,
|
||||
icon: iconContext
|
||||
} = React.useContext(StepContext);
|
||||
const icon = iconProp || iconContext;
|
||||
let StepIconComponent = StepIconComponentProp;
|
||||
if (icon && !StepIconComponent) {
|
||||
StepIconComponent = StepIcon;
|
||||
}
|
||||
const ownerState = _extends({}, props, {
|
||||
active,
|
||||
alternativeLabel,
|
||||
completed,
|
||||
disabled,
|
||||
error,
|
||||
orientation
|
||||
});
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
const labelSlotProps = (_slotProps$label = slotProps.label) != null ? _slotProps$label : componentsProps.label;
|
||||
return /*#__PURE__*/_jsxs(StepLabelRoot, _extends({
|
||||
className: clsx(classes.root, className),
|
||||
ref: ref,
|
||||
ownerState: ownerState
|
||||
}, other, {
|
||||
children: [icon || StepIconComponent ? /*#__PURE__*/_jsx(StepLabelIconContainer, {
|
||||
className: classes.iconContainer,
|
||||
ownerState: ownerState,
|
||||
children: /*#__PURE__*/_jsx(StepIconComponent, _extends({
|
||||
completed: completed,
|
||||
active: active,
|
||||
error: error,
|
||||
icon: icon
|
||||
}, StepIconProps))
|
||||
}) : null, /*#__PURE__*/_jsxs(StepLabelLabelContainer, {
|
||||
className: classes.labelContainer,
|
||||
ownerState: ownerState,
|
||||
children: [children ? /*#__PURE__*/_jsx(StepLabelLabel, _extends({
|
||||
ownerState: ownerState
|
||||
}, labelSlotProps, {
|
||||
className: clsx(classes.label, labelSlotProps == null ? void 0 : labelSlotProps.className),
|
||||
children: children
|
||||
})) : null, optional]
|
||||
})]
|
||||
}));
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? StepLabel.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`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* In most cases will simply be a string containing a title for the label.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.string,
|
||||
/**
|
||||
* The props used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
componentsProps: PropTypes.shape({
|
||||
label: PropTypes.object
|
||||
}),
|
||||
/**
|
||||
* If `true`, the step is marked as failed.
|
||||
* @default false
|
||||
*/
|
||||
error: PropTypes.bool,
|
||||
/**
|
||||
* Override the default label of the step icon.
|
||||
*/
|
||||
icon: PropTypes.node,
|
||||
/**
|
||||
* The optional node to display.
|
||||
*/
|
||||
optional: PropTypes.node,
|
||||
/**
|
||||
* The props used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slotProps: PropTypes.shape({
|
||||
label: PropTypes.object
|
||||
}),
|
||||
/**
|
||||
* The component to render in place of the [`StepIcon`](/material-ui/api/step-icon/).
|
||||
*/
|
||||
StepIconComponent: PropTypes.elementType,
|
||||
/**
|
||||
* Props applied to the [`StepIcon`](/material-ui/api/step-icon/) element.
|
||||
*/
|
||||
StepIconProps: PropTypes.object,
|
||||
/**
|
||||
* 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;
|
||||
StepLabel.muiName = 'StepLabel';
|
||||
export default StepLabel;
|
||||
5
backend/frontend/node_modules/@mui/material/StepLabel/index.d.ts
generated
vendored
Normal file
5
backend/frontend/node_modules/@mui/material/StepLabel/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export { default } from './StepLabel';
|
||||
export * from './StepLabel';
|
||||
|
||||
export { default as stepLabelClasses } from './stepLabelClasses';
|
||||
export * from './stepLabelClasses';
|
||||
5
backend/frontend/node_modules/@mui/material/StepLabel/index.js
generated
vendored
Normal file
5
backend/frontend/node_modules/@mui/material/StepLabel/index.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
'use client';
|
||||
|
||||
export { default } from './StepLabel';
|
||||
export { default as stepLabelClasses } from './stepLabelClasses';
|
||||
export * from './stepLabelClasses';
|
||||
6
backend/frontend/node_modules/@mui/material/StepLabel/package.json
generated
vendored
Normal file
6
backend/frontend/node_modules/@mui/material/StepLabel/package.json
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"sideEffects": false,
|
||||
"module": "./index.js",
|
||||
"main": "../node/StepLabel/index.js",
|
||||
"types": "./index.d.ts"
|
||||
}
|
||||
28
backend/frontend/node_modules/@mui/material/StepLabel/stepLabelClasses.d.ts
generated
vendored
Normal file
28
backend/frontend/node_modules/@mui/material/StepLabel/stepLabelClasses.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
export interface StepLabelClasses {
|
||||
/** 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 label element that wraps `children`. */
|
||||
label: string;
|
||||
/** State class applied to the label element if `active={true}`. */
|
||||
active: string;
|
||||
/** State class applied to the label element if `completed={true}`. */
|
||||
completed: string;
|
||||
/** State class applied to the root and label elements if `error={true}`. */
|
||||
error: string;
|
||||
/** State class applied to the root and label elements if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** Styles applied to the `icon` container element. */
|
||||
iconContainer: string;
|
||||
/** State class applied to the root and icon container and label if `alternativeLabel={true}`. */
|
||||
alternativeLabel: string;
|
||||
/** Styles applied to the container element which wraps label and `optional`. */
|
||||
labelContainer: string;
|
||||
}
|
||||
export type StepLabelClassKey = keyof StepLabelClasses;
|
||||
export declare function getStepLabelUtilityClass(slot: string): string;
|
||||
declare const stepLabelClasses: StepLabelClasses;
|
||||
export default stepLabelClasses;
|
||||
7
backend/frontend/node_modules/@mui/material/StepLabel/stepLabelClasses.js
generated
vendored
Normal file
7
backend/frontend/node_modules/@mui/material/StepLabel/stepLabelClasses.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getStepLabelUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiStepLabel', slot);
|
||||
}
|
||||
const stepLabelClasses = generateUtilityClasses('MuiStepLabel', ['root', 'horizontal', 'vertical', 'label', 'active', 'completed', 'error', 'disabled', 'iconContainer', 'alternativeLabel', 'labelContainer']);
|
||||
export default stepLabelClasses;
|
||||
Reference in New Issue
Block a user