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,90 @@
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from "../styles/index.js";
import { ExtendButtonBase, ExtendButtonBaseTypeMap } from "../ButtonBase/index.js";
import { OverrideProps } from "../OverridableComponent/index.js";
import { TableSortLabelClasses } from "./tableSortLabelClasses.js";
import { CreateSlotsAndSlotProps, SlotProps } from "../utils/types.js";
export interface TableSortLabelRootSlotPropsOverrides {}
export interface TableSortLabelIconSlotPropsOverrides {}
export interface TableSortLabelSlots {
/**
* The component that renders the root slot.
* @default span
*/
root?: React.ElementType;
/**
* The component that renders the icon slot.
* @default ArrowDownwardIcon
*/
icon?: React.ElementType;
}
export type TableSortLabelSlotsAndSlotProps = CreateSlotsAndSlotProps<TableSortLabelSlots, {
/**
* Props forwarded to the root slot.
*/
root: SlotProps<React.ElementType<React.HTMLAttributes<HTMLSpanElement>>, TableSortLabelRootSlotPropsOverrides, TableSortLabelOwnerState>;
/**
* Props forwarded to the icon slot.
*/
icon: SlotProps<React.ElementType<React.SVGAttributes<SVGSVGElement>>, TableSortLabelIconSlotPropsOverrides, TableSortLabelOwnerState>;
}>;
export interface TableSortLabelOwnerState extends TableSortLabelOwnProps {}
export interface TableSortLabelOwnProps {
/**
* If `true`, the label will have the active styling (should be true for the sorted column).
* @default false
*/
active?: boolean;
/**
* Label contents, the arrow will be appended automatically.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TableSortLabelClasses>;
/**
* The current sort direction.
* @default 'asc'
*/
direction?: 'asc' | 'desc';
/**
* Hide sort icon when active is false.
* @default false
*/
hideSortIcon?: boolean;
/**
* Sort icon to use.
* @default ArrowDownwardIcon
*/
IconComponent?: React.JSXElementConstructor<{
className: string;
}>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export type TableSortLabelTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'span'> = ExtendButtonBaseTypeMap<{
props: AdditionalProps & TableSortLabelOwnProps & TableSortLabelSlotsAndSlotProps;
defaultComponent: RootComponent;
}>;
/**
* A button based label for placing inside `TableCell` for column sorting.
*
* Demos:
*
* - [Table](https://mui.com/material-ui/react-table/)
*
* API:
*
* - [TableSortLabel API](https://mui.com/material-ui/api/table-sort-label/)
* - inherits [ButtonBase API](https://mui.com/material-ui/api/button-base/)
*/
declare const TableSortLabel: ExtendButtonBase<TableSortLabelTypeMap>;
export type TableSortLabelProps<RootComponent extends React.ElementType = TableSortLabelTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<TableSortLabelTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
component?: React.ElementType;
};
export default TableSortLabel;

View file

@ -0,0 +1,219 @@
"use strict";
'use client';
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
var _clsx = _interopRequireDefault(require("clsx"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var React = _interopRequireWildcard(require("react"));
var _ButtonBase = _interopRequireDefault(require("../ButtonBase"));
var _ArrowDownward = _interopRequireDefault(require("../internal/svg-icons/ArrowDownward"));
var _zeroStyled = require("../zero-styled");
var _memoTheme = _interopRequireDefault(require("../utils/memoTheme"));
var _DefaultPropsProvider = require("../DefaultPropsProvider");
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
var _tableSortLabelClasses = _interopRequireWildcard(require("./tableSortLabelClasses"));
var _useSlot = _interopRequireDefault(require("../utils/useSlot"));
var _jsxRuntime = require("react/jsx-runtime");
const useUtilityClasses = ownerState => {
const {
classes,
direction,
active
} = ownerState;
const slots = {
root: ['root', active && 'active', `direction${(0, _capitalize.default)(direction)}`],
icon: ['icon', `iconDirection${(0, _capitalize.default)(direction)}`]
};
return (0, _composeClasses.default)(slots, _tableSortLabelClasses.getTableSortLabelUtilityClass, classes);
};
const TableSortLabelRoot = (0, _zeroStyled.styled)(_ButtonBase.default, {
name: 'MuiTableSortLabel',
slot: 'Root',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.root, ownerState.active && styles.active];
}
})((0, _memoTheme.default)(({
theme
}) => ({
cursor: 'pointer',
display: 'inline-flex',
justifyContent: 'flex-start',
flexDirection: 'inherit',
alignItems: 'center',
'&:focus': {
color: (theme.vars || theme).palette.text.secondary
},
'&:hover': {
color: (theme.vars || theme).palette.text.secondary,
[`& .${_tableSortLabelClasses.default.icon}`]: {
opacity: 0.5
}
},
[`&.${_tableSortLabelClasses.default.active}`]: {
color: (theme.vars || theme).palette.text.primary,
[`& .${_tableSortLabelClasses.default.icon}`]: {
opacity: 1,
color: (theme.vars || theme).palette.text.secondary
}
}
})));
const TableSortLabelIcon = (0, _zeroStyled.styled)('span', {
name: 'MuiTableSortLabel',
slot: 'Icon',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.icon, styles[`iconDirection${(0, _capitalize.default)(ownerState.direction)}`]];
}
})((0, _memoTheme.default)(({
theme
}) => ({
fontSize: 18,
marginRight: 4,
marginLeft: 4,
opacity: 0,
transition: theme.transitions.create(['opacity', 'transform'], {
duration: theme.transitions.duration.shorter
}),
userSelect: 'none',
variants: [{
props: {
direction: 'desc'
},
style: {
transform: 'rotate(0deg)'
}
}, {
props: {
direction: 'asc'
},
style: {
transform: 'rotate(180deg)'
}
}]
})));
/**
* A button based label for placing inside `TableCell` for column sorting.
*/
const TableSortLabel = /*#__PURE__*/React.forwardRef(function TableSortLabel(inProps, ref) {
const props = (0, _DefaultPropsProvider.useDefaultProps)({
props: inProps,
name: 'MuiTableSortLabel'
});
const {
active = false,
children,
className,
direction = 'asc',
hideSortIcon = false,
IconComponent = _ArrowDownward.default,
slots = {},
slotProps = {},
...other
} = props;
const ownerState = {
...props,
active,
direction,
hideSortIcon,
IconComponent
};
const classes = useUtilityClasses(ownerState);
const externalForwardedProps = {
slots,
slotProps
};
const [RootSlot, rootProps] = (0, _useSlot.default)('root', {
elementType: TableSortLabelRoot,
externalForwardedProps,
ownerState,
className: (0, _clsx.default)(classes.root, className),
ref
});
const [IconSlot, iconProps] = (0, _useSlot.default)('icon', {
elementType: TableSortLabelIcon,
externalForwardedProps,
ownerState,
className: classes.icon
});
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(RootSlot, {
disableRipple: true,
component: "span",
...rootProps,
...other,
children: [children, hideSortIcon && !active ? null : /*#__PURE__*/(0, _jsxRuntime.jsx)(IconSlot, {
as: IconComponent,
...iconProps
})]
});
});
process.env.NODE_ENV !== "production" ? TableSortLabel.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`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* If `true`, the label will have the active styling (should be true for the sorted column).
* @default false
*/
active: _propTypes.default.bool,
/**
* Label contents, the arrow will be appended automatically.
*/
children: _propTypes.default.node,
/**
* Override or extend the styles applied to the component.
*/
classes: _propTypes.default.object,
/**
* @ignore
*/
className: _propTypes.default.string,
/**
* The current sort direction.
* @default 'asc'
*/
direction: _propTypes.default.oneOf(['asc', 'desc']),
/**
* Hide sort icon when active is false.
* @default false
*/
hideSortIcon: _propTypes.default.bool,
/**
* Sort icon to use.
* @default ArrowDownwardIcon
*/
IconComponent: _propTypes.default.elementType,
/**
* The props used for each slot inside.
* @default {}
*/
slotProps: _propTypes.default.shape({
icon: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]),
root: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object])
}),
/**
* The components used for each slot inside.
* @default {}
*/
slots: _propTypes.default.shape({
icon: _propTypes.default.elementType,
root: _propTypes.default.elementType
}),
/**
* 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;
var _default = exports.default = TableSortLabel;

4
node_modules/@mui/material/TableSortLabel/index.d.ts generated vendored Normal file
View file

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

35
node_modules/@mui/material/TableSortLabel/index.js generated vendored Normal file
View 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 = {
tableSortLabelClasses: true
};
Object.defineProperty(exports, "default", {
enumerable: true,
get: function () {
return _TableSortLabel.default;
}
});
Object.defineProperty(exports, "tableSortLabelClasses", {
enumerable: true,
get: function () {
return _tableSortLabelClasses.default;
}
});
var _TableSortLabel = _interopRequireDefault(require("./TableSortLabel"));
var _tableSortLabelClasses = _interopRequireWildcard(require("./tableSortLabelClasses"));
Object.keys(_tableSortLabelClasses).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
if (key in exports && exports[key] === _tableSortLabelClasses[key]) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function () {
return _tableSortLabelClasses[key];
}
});
});

View file

@ -0,0 +1,24 @@
export interface TableSortLabelClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `direction="desc"`. */
directionDesc: string;
/** Styles applied to the root element if `direction="asc"`. */
directionAsc: string;
/** State class applied to the root element if `active={true}`. */
active: string;
/** Styles applied to the icon component. */
icon: string;
/** Styles applied to the icon component if `direction="desc"`.
* @deprecated Combine the [.MuiTableSortLabel-icon](/material-ui/api/table-sort-label/#table-sort-label-classes-icon) and [.MuiTableSortLabel-directionDesc](/material-ui/api/table-sort-label/#table-sort-label-classes-direction-desc) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
*/
iconDirectionDesc: string;
/** Styles applied to the icon component if `direction="asc"`.
* @deprecated Combine the [.MuiTableSortLabel-icon](/material-ui/api/table-sort-label/#table-sort-label-classes-icon) and [.MuiTableSortLabel-directionAsc](/material-ui/api/table-sort-label/#table-sort-label-classes-direction-asc) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
*/
iconDirectionAsc: string;
}
export type TableSortLabelClassKey = keyof TableSortLabelClasses;
export declare function getTableSortLabelUtilityClass(slot: string): string;
declare const tableSortLabelClasses: TableSortLabelClasses;
export default tableSortLabelClasses;

View 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.getTableSortLabelUtilityClass = getTableSortLabelUtilityClass;
var _generateUtilityClasses = _interopRequireDefault(require("@mui/utils/generateUtilityClasses"));
var _generateUtilityClass = _interopRequireDefault(require("@mui/utils/generateUtilityClass"));
function getTableSortLabelUtilityClass(slot) {
return (0, _generateUtilityClass.default)('MuiTableSortLabel', slot);
}
const tableSortLabelClasses = (0, _generateUtilityClasses.default)('MuiTableSortLabel', ['root', 'active', 'icon', 'iconDirectionDesc', 'iconDirectionAsc', 'directionDesc', 'directionAsc']);
var _default = exports.default = tableSortLabelClasses;