@vitessce/biomarker-select 3.8.10 → 3.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1402 -1396
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -104,9 +104,11 @@ const CoordinationType = {
104
104
  OBS_SET_HIGHLIGHT: "obsSetHighlight",
105
105
  OBS_SET_EXPANSION: "obsSetExpansion",
106
106
  OBS_SET_COLOR: "obsSetColor",
107
+ FEATURE_COLOR: "featureColor",
107
108
  FEATURE_HIGHLIGHT: "featureHighlight",
108
109
  FEATURE_SELECTION: "featureSelection",
109
110
  FEATURE_FILTER: "featureFilter",
111
+ FEATURE_FILTER_MODE: "featureFilterMode",
110
112
  FEATURE_VALUE_COLORMAP: "featureValueColormap",
111
113
  FEATURE_VALUE_TRANSFORM: "featureValueTransform",
112
114
  FEATURE_VALUE_COLORMAP_RANGE: "featureValueColormapRange",
@@ -414,6 +416,8 @@ const COMPONENT_COORDINATION_TYPES = {
414
416
  CoordinationType.OBS_SET_FILTER,
415
417
  CoordinationType.OBS_SET_HIGHLIGHT,
416
418
  CoordinationType.OBS_SET_COLOR,
419
+ CoordinationType.FEATURE_COLOR,
420
+ CoordinationType.FEATURE_FILTER_MODE,
417
421
  CoordinationType.FEATURE_HIGHLIGHT,
418
422
  CoordinationType.FEATURE_SELECTION,
419
423
  CoordinationType.FEATURE_VALUE_COLORMAP,
@@ -628,6 +632,8 @@ const COMPONENT_COORDINATION_TYPES = {
628
632
  CoordinationType.SPATIAL_SPOT_STROKE_WIDTH,
629
633
  CoordinationType.SPATIAL_LAYER_COLOR,
630
634
  CoordinationType.OBS_COLOR_ENCODING,
635
+ CoordinationType.FEATURE_COLOR,
636
+ CoordinationType.FEATURE_FILTER_MODE,
631
637
  CoordinationType.FEATURE_VALUE_COLORMAP,
632
638
  CoordinationType.FEATURE_VALUE_COLORMAP_RANGE,
633
639
  CoordinationType.FEATURE_SELECTION,
@@ -8938,10 +8944,17 @@ const { tss } = createTss({
8938
8944
  "usePlugin": useMuiThemeStyleOverridesPlugin
8939
8945
  });
8940
8946
  const useStyles$3 = tss.create({});
8941
- function chainPropTypes(propType1, propType2) {
8942
- return function validate(...args) {
8943
- return propType1(...args) || propType2(...args);
8944
- };
8947
+ function createChainedFunction$1(...funcs) {
8948
+ return funcs.reduce((acc, func) => {
8949
+ if (func == null) {
8950
+ return acc;
8951
+ }
8952
+ return function chainedFunction(...args) {
8953
+ acc.apply(this, args);
8954
+ func.apply(this, args);
8955
+ };
8956
+ }, () => {
8957
+ });
8945
8958
  }
8946
8959
  function GlobalStyles(props) {
8947
8960
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GlobalStyles$1, {
@@ -8994,6 +9007,495 @@ const memoTheme = unstable_memoTheme;
8994
9007
  function useDefaultProps(params) {
8995
9008
  return useDefaultProps$1(params);
8996
9009
  }
9010
+ function getSvgIconUtilityClass(slot) {
9011
+ return generateUtilityClass("MuiSvgIcon", slot);
9012
+ }
9013
+ generateUtilityClasses("MuiSvgIcon", ["root", "colorPrimary", "colorSecondary", "colorAction", "colorError", "colorDisabled", "fontSizeInherit", "fontSizeSmall", "fontSizeMedium", "fontSizeLarge"]);
9014
+ const useUtilityClasses$1y = (ownerState) => {
9015
+ const {
9016
+ color: color2,
9017
+ fontSize,
9018
+ classes: classes2
9019
+ } = ownerState;
9020
+ const slots = {
9021
+ root: ["root", color2 !== "inherit" && `color${capitalize(color2)}`, `fontSize${capitalize(fontSize)}`]
9022
+ };
9023
+ return composeClasses(slots, getSvgIconUtilityClass, classes2);
9024
+ };
9025
+ const SvgIconRoot = styled("svg", {
9026
+ name: "MuiSvgIcon",
9027
+ slot: "Root",
9028
+ overridesResolver: (props, styles2) => {
9029
+ const {
9030
+ ownerState
9031
+ } = props;
9032
+ return [styles2.root, ownerState.color !== "inherit" && styles2[`color${capitalize(ownerState.color)}`], styles2[`fontSize${capitalize(ownerState.fontSize)}`]];
9033
+ }
9034
+ })(memoTheme(({
9035
+ theme
9036
+ }) => {
9037
+ var _a2, _b2, _c2, _d2, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n;
9038
+ return {
9039
+ userSelect: "none",
9040
+ width: "1em",
9041
+ height: "1em",
9042
+ display: "inline-block",
9043
+ flexShrink: 0,
9044
+ transition: (_d2 = (_a2 = theme.transitions) == null ? void 0 : _a2.create) == null ? void 0 : _d2.call(_a2, "fill", {
9045
+ duration: (_c2 = (_b2 = (theme.vars ?? theme).transitions) == null ? void 0 : _b2.duration) == null ? void 0 : _c2.shorter
9046
+ }),
9047
+ variants: [
9048
+ {
9049
+ props: (props) => !props.hasSvgAsChild,
9050
+ style: {
9051
+ // the <svg> will define the property that has `currentColor`
9052
+ // for example heroicons uses fill="none" and stroke="currentColor"
9053
+ fill: "currentColor"
9054
+ }
9055
+ },
9056
+ {
9057
+ props: {
9058
+ fontSize: "inherit"
9059
+ },
9060
+ style: {
9061
+ fontSize: "inherit"
9062
+ }
9063
+ },
9064
+ {
9065
+ props: {
9066
+ fontSize: "small"
9067
+ },
9068
+ style: {
9069
+ fontSize: ((_f = (_e = theme.typography) == null ? void 0 : _e.pxToRem) == null ? void 0 : _f.call(_e, 20)) || "1.25rem"
9070
+ }
9071
+ },
9072
+ {
9073
+ props: {
9074
+ fontSize: "medium"
9075
+ },
9076
+ style: {
9077
+ fontSize: ((_h = (_g = theme.typography) == null ? void 0 : _g.pxToRem) == null ? void 0 : _h.call(_g, 24)) || "1.5rem"
9078
+ }
9079
+ },
9080
+ {
9081
+ props: {
9082
+ fontSize: "large"
9083
+ },
9084
+ style: {
9085
+ fontSize: ((_j = (_i = theme.typography) == null ? void 0 : _i.pxToRem) == null ? void 0 : _j.call(_i, 35)) || "2.1875rem"
9086
+ }
9087
+ },
9088
+ // TODO v5 deprecate color prop, v6 remove for sx
9089
+ ...Object.entries((theme.vars ?? theme).palette).filter(([, value]) => value && value.main).map(([color2]) => {
9090
+ var _a3, _b3;
9091
+ return {
9092
+ props: {
9093
+ color: color2
9094
+ },
9095
+ style: {
9096
+ color: (_b3 = (_a3 = (theme.vars ?? theme).palette) == null ? void 0 : _a3[color2]) == null ? void 0 : _b3.main
9097
+ }
9098
+ };
9099
+ }),
9100
+ {
9101
+ props: {
9102
+ color: "action"
9103
+ },
9104
+ style: {
9105
+ color: (_l = (_k = (theme.vars ?? theme).palette) == null ? void 0 : _k.action) == null ? void 0 : _l.active
9106
+ }
9107
+ },
9108
+ {
9109
+ props: {
9110
+ color: "disabled"
9111
+ },
9112
+ style: {
9113
+ color: (_n = (_m = (theme.vars ?? theme).palette) == null ? void 0 : _m.action) == null ? void 0 : _n.disabled
9114
+ }
9115
+ },
9116
+ {
9117
+ props: {
9118
+ color: "inherit"
9119
+ },
9120
+ style: {
9121
+ color: void 0
9122
+ }
9123
+ }
9124
+ ]
9125
+ };
9126
+ }));
9127
+ const SvgIcon = /* @__PURE__ */ React.forwardRef(function SvgIcon2(inProps, ref) {
9128
+ const props = useDefaultProps({
9129
+ props: inProps,
9130
+ name: "MuiSvgIcon"
9131
+ });
9132
+ const {
9133
+ children,
9134
+ className,
9135
+ color: color2 = "inherit",
9136
+ component = "svg",
9137
+ fontSize = "medium",
9138
+ htmlColor,
9139
+ inheritViewBox = false,
9140
+ titleAccess,
9141
+ viewBox = "0 0 24 24",
9142
+ ...other
9143
+ } = props;
9144
+ const hasSvgAsChild = /* @__PURE__ */ React.isValidElement(children) && children.type === "svg";
9145
+ const ownerState = {
9146
+ ...props,
9147
+ color: color2,
9148
+ component,
9149
+ fontSize,
9150
+ instanceFontSize: inProps.fontSize,
9151
+ inheritViewBox,
9152
+ viewBox,
9153
+ hasSvgAsChild
9154
+ };
9155
+ const more = {};
9156
+ if (!inheritViewBox) {
9157
+ more.viewBox = viewBox;
9158
+ }
9159
+ const classes2 = useUtilityClasses$1y(ownerState);
9160
+ return /* @__PURE__ */ jsxRuntimeExports.jsxs(SvgIconRoot, {
9161
+ as: component,
9162
+ className: clsx$1(classes2.root, className),
9163
+ focusable: "false",
9164
+ color: htmlColor,
9165
+ "aria-hidden": titleAccess ? void 0 : true,
9166
+ role: titleAccess ? "img" : void 0,
9167
+ ref,
9168
+ ...more,
9169
+ ...other,
9170
+ ...hasSvgAsChild && children.props,
9171
+ ownerState,
9172
+ children: [hasSvgAsChild ? children.props.children : children, titleAccess ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", {
9173
+ children: titleAccess
9174
+ }) : null]
9175
+ });
9176
+ });
9177
+ SvgIcon.propTypes = {
9178
+ // ┌────────────────────────────── Warning ──────────────────────────────┐
9179
+ // │ These PropTypes are generated from the TypeScript type definitions. │
9180
+ // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
9181
+ // └─────────────────────────────────────────────────────────────────────┘
9182
+ /**
9183
+ * Node passed into the SVG element.
9184
+ */
9185
+ children: PropTypes.node,
9186
+ /**
9187
+ * Override or extend the styles applied to the component.
9188
+ */
9189
+ classes: PropTypes.object,
9190
+ /**
9191
+ * @ignore
9192
+ */
9193
+ className: PropTypes.string,
9194
+ /**
9195
+ * The color of the component.
9196
+ * It supports both default and custom theme colors, which can be added as shown in the
9197
+ * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
9198
+ * You can use the `htmlColor` prop to apply a color attribute to the SVG element.
9199
+ * @default 'inherit'
9200
+ */
9201
+ color: PropTypes.oneOfType([PropTypes.oneOf(["inherit", "action", "disabled", "primary", "secondary", "error", "info", "success", "warning"]), PropTypes.string]),
9202
+ /**
9203
+ * The component used for the root node.
9204
+ * Either a string to use a HTML element or a component.
9205
+ */
9206
+ component: PropTypes.elementType,
9207
+ /**
9208
+ * The fontSize applied to the icon. Defaults to 24px, but can be configure to inherit font size.
9209
+ * @default 'medium'
9210
+ */
9211
+ fontSize: PropTypes.oneOfType([PropTypes.oneOf(["inherit", "large", "medium", "small"]), PropTypes.string]),
9212
+ /**
9213
+ * Applies a color attribute to the SVG element.
9214
+ */
9215
+ htmlColor: PropTypes.string,
9216
+ /**
9217
+ * If `true`, the root node will inherit the custom `component`'s viewBox and the `viewBox`
9218
+ * prop will be ignored.
9219
+ * Useful when you want to reference a custom `component` and have `SvgIcon` pass that
9220
+ * `component`'s viewBox to the root node.
9221
+ * @default false
9222
+ */
9223
+ inheritViewBox: PropTypes.bool,
9224
+ /**
9225
+ * The shape-rendering attribute. The behavior of the different options is described on the
9226
+ * [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/shape-rendering).
9227
+ * If you are having issues with blurry icons you should investigate this prop.
9228
+ */
9229
+ shapeRendering: PropTypes.string,
9230
+ /**
9231
+ * The system prop that allows defining system overrides as well as additional CSS styles.
9232
+ */
9233
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
9234
+ /**
9235
+ * Provides a human-readable title for the element that contains it.
9236
+ * https://www.w3.org/TR/SVG-access/#Equivalent
9237
+ */
9238
+ titleAccess: PropTypes.string,
9239
+ /**
9240
+ * Allows you to redefine what the coordinates without units mean inside an SVG element.
9241
+ * For example, if the SVG element is 500 (width) by 200 (height),
9242
+ * and you pass viewBox="0 0 50 20",
9243
+ * this means that the coordinates inside the SVG will go from the top left corner (0,0)
9244
+ * to bottom right (50,20) and each unit will be worth 10px.
9245
+ * @default '0 0 24 24'
9246
+ */
9247
+ viewBox: PropTypes.string
9248
+ };
9249
+ SvgIcon.muiName = "SvgIcon";
9250
+ function createSvgIcon(path, displayName) {
9251
+ function Component(props, ref) {
9252
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(SvgIcon, {
9253
+ "data-testid": `${displayName}Icon`,
9254
+ ref,
9255
+ ...props,
9256
+ children: path
9257
+ });
9258
+ }
9259
+ {
9260
+ Component.displayName = `${displayName}Icon`;
9261
+ }
9262
+ Component.muiName = SvgIcon.muiName;
9263
+ return /* @__PURE__ */ React.memo(/* @__PURE__ */ React.forwardRef(Component));
9264
+ }
9265
+ function debounce$2(func, wait = 166) {
9266
+ let timeout2;
9267
+ function debounced(...args) {
9268
+ const later = () => {
9269
+ func.apply(this, args);
9270
+ };
9271
+ clearTimeout(timeout2);
9272
+ timeout2 = setTimeout(later, wait);
9273
+ }
9274
+ debounced.clear = () => {
9275
+ clearTimeout(timeout2);
9276
+ };
9277
+ return debounced;
9278
+ }
9279
+ function ownerDocument(node2) {
9280
+ return node2 && node2.ownerDocument || document;
9281
+ }
9282
+ function ownerWindow(node2) {
9283
+ const doc = ownerDocument(node2);
9284
+ return doc.defaultView || window;
9285
+ }
9286
+ function requirePropFactory(componentNameInError, Component) {
9287
+ const prevPropTypes = Component ? {
9288
+ ...Component.propTypes
9289
+ } : null;
9290
+ const requireProp = (requiredProp) => (props, propName, componentName, location, propFullName, ...args) => {
9291
+ const propFullNameSafe = propFullName || propName;
9292
+ const defaultTypeChecker = prevPropTypes == null ? void 0 : prevPropTypes[propFullNameSafe];
9293
+ if (defaultTypeChecker) {
9294
+ const typeCheckerResult = defaultTypeChecker(props, propName, componentName, location, propFullName, ...args);
9295
+ if (typeCheckerResult) {
9296
+ return typeCheckerResult;
9297
+ }
9298
+ }
9299
+ if (typeof props[propName] !== "undefined" && !props[requiredProp]) {
9300
+ return new Error(`The prop \`${propFullNameSafe}\` of \`${componentNameInError}\` can only be used together with the \`${requiredProp}\` prop.`);
9301
+ }
9302
+ return null;
9303
+ };
9304
+ return requireProp;
9305
+ }
9306
+ function setRef$1(ref, value) {
9307
+ if (typeof ref === "function") {
9308
+ ref(value);
9309
+ } else if (ref) {
9310
+ ref.current = value;
9311
+ }
9312
+ }
9313
+ let globalId$1 = 0;
9314
+ function useGlobalId(idOverride) {
9315
+ const [defaultId, setDefaultId] = React.useState(idOverride);
9316
+ const id = idOverride || defaultId;
9317
+ React.useEffect(() => {
9318
+ if (defaultId == null) {
9319
+ globalId$1 += 1;
9320
+ setDefaultId(`mui-${globalId$1}`);
9321
+ }
9322
+ }, [defaultId]);
9323
+ return id;
9324
+ }
9325
+ const safeReact = {
9326
+ ...React
9327
+ };
9328
+ const maybeReactUseId = safeReact.useId;
9329
+ function useId(idOverride) {
9330
+ if (maybeReactUseId !== void 0) {
9331
+ const reactId = maybeReactUseId();
9332
+ return idOverride ?? reactId;
9333
+ }
9334
+ return useGlobalId(idOverride);
9335
+ }
9336
+ function unsupportedProp(props, propName, componentName, location, propFullName) {
9337
+ const propFullNameSafe = propFullName || propName;
9338
+ if (typeof props[propName] !== "undefined") {
9339
+ return new Error(`The prop \`${propFullNameSafe}\` is not supported. Please remove it.`);
9340
+ }
9341
+ return null;
9342
+ }
9343
+ function useControlled(props) {
9344
+ const {
9345
+ controlled,
9346
+ default: defaultProp,
9347
+ name,
9348
+ state = "value"
9349
+ } = props;
9350
+ const {
9351
+ current: isControlled
9352
+ } = React.useRef(controlled !== void 0);
9353
+ const [valueState, setValue] = React.useState(defaultProp);
9354
+ const value = isControlled ? controlled : valueState;
9355
+ {
9356
+ React.useEffect(() => {
9357
+ if (isControlled !== (controlled !== void 0)) {
9358
+ console.error([`MUI: A component is changing the ${isControlled ? "" : "un"}controlled ${state} state of ${name} to be ${isControlled ? "un" : ""}controlled.`, "Elements should not switch from uncontrolled to controlled (or vice versa).", `Decide between using a controlled or uncontrolled ${name} element for the lifetime of the component.`, "The nature of the state is determined during the first render. It's considered controlled if the value is not `undefined`.", "More info: https://fb.me/react-controlled-components"].join("\n"));
9359
+ }
9360
+ }, [state, name, controlled]);
9361
+ const {
9362
+ current: defaultValue
9363
+ } = React.useRef(defaultProp);
9364
+ React.useEffect(() => {
9365
+ if (!isControlled && !Object.is(defaultValue, defaultProp)) {
9366
+ console.error([`MUI: A component is changing the default ${state} state of an uncontrolled ${name} after being initialized. To suppress this warning opt to use a controlled ${name}.`].join("\n"));
9367
+ }
9368
+ }, [JSON.stringify(defaultProp)]);
9369
+ }
9370
+ const setValueIfUncontrolled = React.useCallback((newValue) => {
9371
+ if (!isControlled) {
9372
+ setValue(newValue);
9373
+ }
9374
+ }, []);
9375
+ return [value, setValueIfUncontrolled];
9376
+ }
9377
+ function useEventCallback(fn2) {
9378
+ const ref = React.useRef(fn2);
9379
+ useEnhancedEffect$1(() => {
9380
+ ref.current = fn2;
9381
+ });
9382
+ return React.useRef((...args) => (
9383
+ // @ts-expect-error hide `this`
9384
+ (0, ref.current)(...args)
9385
+ )).current;
9386
+ }
9387
+ function useForkRef$1(...refs) {
9388
+ const cleanupRef = React.useRef(void 0);
9389
+ const refEffect = React.useCallback((instance) => {
9390
+ const cleanups = refs.map((ref) => {
9391
+ if (ref == null) {
9392
+ return null;
9393
+ }
9394
+ if (typeof ref === "function") {
9395
+ const refCallback = ref;
9396
+ const refCleanup = refCallback(instance);
9397
+ return typeof refCleanup === "function" ? refCleanup : () => {
9398
+ refCallback(null);
9399
+ };
9400
+ }
9401
+ ref.current = instance;
9402
+ return () => {
9403
+ ref.current = null;
9404
+ };
9405
+ });
9406
+ return () => {
9407
+ cleanups.forEach((refCleanup) => refCleanup == null ? void 0 : refCleanup());
9408
+ };
9409
+ }, refs);
9410
+ return React.useMemo(() => {
9411
+ if (refs.every((ref) => ref == null)) {
9412
+ return null;
9413
+ }
9414
+ return (value) => {
9415
+ if (cleanupRef.current) {
9416
+ cleanupRef.current();
9417
+ cleanupRef.current = void 0;
9418
+ }
9419
+ if (value != null) {
9420
+ cleanupRef.current = refEffect(value);
9421
+ }
9422
+ };
9423
+ }, refs);
9424
+ }
9425
+ function isEventHandler(key, value) {
9426
+ const thirdCharCode = key.charCodeAt(2);
9427
+ return key[0] === "o" && key[1] === "n" && thirdCharCode >= 65 && thirdCharCode <= 90 && typeof value === "function";
9428
+ }
9429
+ function mergeSlotProps$1(externalSlotProps, defaultSlotProps) {
9430
+ if (!externalSlotProps) {
9431
+ return defaultSlotProps;
9432
+ }
9433
+ function extractHandlers(externalSlotPropsValue, defaultSlotPropsValue) {
9434
+ const handlers2 = {};
9435
+ Object.keys(defaultSlotPropsValue).forEach((key) => {
9436
+ if (isEventHandler(key, defaultSlotPropsValue[key]) && typeof externalSlotPropsValue[key] === "function") {
9437
+ handlers2[key] = (...args) => {
9438
+ externalSlotPropsValue[key](...args);
9439
+ defaultSlotPropsValue[key](...args);
9440
+ };
9441
+ }
9442
+ });
9443
+ return handlers2;
9444
+ }
9445
+ if (typeof externalSlotProps === "function" || typeof defaultSlotProps === "function") {
9446
+ return (ownerState) => {
9447
+ const defaultSlotPropsValue = typeof defaultSlotProps === "function" ? defaultSlotProps(ownerState) : defaultSlotProps;
9448
+ const externalSlotPropsValue = typeof externalSlotProps === "function" ? externalSlotProps({
9449
+ ...ownerState,
9450
+ ...defaultSlotPropsValue
9451
+ }) : externalSlotProps;
9452
+ const className2 = clsx$1(ownerState == null ? void 0 : ownerState.className, defaultSlotPropsValue == null ? void 0 : defaultSlotPropsValue.className, externalSlotPropsValue == null ? void 0 : externalSlotPropsValue.className);
9453
+ const handlers2 = extractHandlers(externalSlotPropsValue, defaultSlotPropsValue);
9454
+ return {
9455
+ ...defaultSlotPropsValue,
9456
+ ...externalSlotPropsValue,
9457
+ ...handlers2,
9458
+ ...!!className2 && {
9459
+ className: className2
9460
+ },
9461
+ ...(defaultSlotPropsValue == null ? void 0 : defaultSlotPropsValue.style) && (externalSlotPropsValue == null ? void 0 : externalSlotPropsValue.style) && {
9462
+ style: {
9463
+ ...defaultSlotPropsValue.style,
9464
+ ...externalSlotPropsValue.style
9465
+ }
9466
+ },
9467
+ ...(defaultSlotPropsValue == null ? void 0 : defaultSlotPropsValue.sx) && (externalSlotPropsValue == null ? void 0 : externalSlotPropsValue.sx) && {
9468
+ sx: [...Array.isArray(defaultSlotPropsValue.sx) ? defaultSlotPropsValue.sx : [defaultSlotPropsValue.sx], ...Array.isArray(externalSlotPropsValue.sx) ? externalSlotPropsValue.sx : [externalSlotPropsValue.sx]]
9469
+ }
9470
+ };
9471
+ };
9472
+ }
9473
+ const typedDefaultSlotProps = defaultSlotProps;
9474
+ const handlers = extractHandlers(externalSlotProps, typedDefaultSlotProps);
9475
+ const className = clsx$1(typedDefaultSlotProps == null ? void 0 : typedDefaultSlotProps.className, externalSlotProps == null ? void 0 : externalSlotProps.className);
9476
+ return {
9477
+ ...defaultSlotProps,
9478
+ ...externalSlotProps,
9479
+ ...handlers,
9480
+ ...!!className && {
9481
+ className
9482
+ },
9483
+ ...(typedDefaultSlotProps == null ? void 0 : typedDefaultSlotProps.style) && (externalSlotProps == null ? void 0 : externalSlotProps.style) && {
9484
+ style: {
9485
+ ...typedDefaultSlotProps.style,
9486
+ ...externalSlotProps.style
9487
+ }
9488
+ },
9489
+ ...(typedDefaultSlotProps == null ? void 0 : typedDefaultSlotProps.sx) && (externalSlotProps == null ? void 0 : externalSlotProps.sx) && {
9490
+ sx: [...Array.isArray(typedDefaultSlotProps.sx) ? typedDefaultSlotProps.sx : [typedDefaultSlotProps.sx], ...Array.isArray(externalSlotProps.sx) ? externalSlotProps.sx : [externalSlotProps.sx]]
9491
+ }
9492
+ };
9493
+ }
9494
+ function chainPropTypes(propType1, propType2) {
9495
+ return function validate(...args) {
9496
+ return propType1(...args) || propType2(...args);
9497
+ };
9498
+ }
8997
9499
  function _extends$2() {
8998
9500
  return _extends$2 = Object.assign ? Object.assign.bind() : function(n) {
8999
9501
  for (var e = 1; e < arguments.length; e++) {
@@ -9778,502 +10280,6 @@ function getTransitionProps(props, options) {
9778
10280
  delay: style2.transitionDelay
9779
10281
  };
9780
10282
  }
9781
- function createChainedFunction$1(...funcs) {
9782
- return funcs.reduce((acc, func) => {
9783
- if (func == null) {
9784
- return acc;
9785
- }
9786
- return function chainedFunction(...args) {
9787
- acc.apply(this, args);
9788
- func.apply(this, args);
9789
- };
9790
- }, () => {
9791
- });
9792
- }
9793
- function getSvgIconUtilityClass(slot) {
9794
- return generateUtilityClass("MuiSvgIcon", slot);
9795
- }
9796
- generateUtilityClasses("MuiSvgIcon", ["root", "colorPrimary", "colorSecondary", "colorAction", "colorError", "colorDisabled", "fontSizeInherit", "fontSizeSmall", "fontSizeMedium", "fontSizeLarge"]);
9797
- const useUtilityClasses$1y = (ownerState) => {
9798
- const {
9799
- color: color2,
9800
- fontSize,
9801
- classes: classes2
9802
- } = ownerState;
9803
- const slots = {
9804
- root: ["root", color2 !== "inherit" && `color${capitalize(color2)}`, `fontSize${capitalize(fontSize)}`]
9805
- };
9806
- return composeClasses(slots, getSvgIconUtilityClass, classes2);
9807
- };
9808
- const SvgIconRoot = styled("svg", {
9809
- name: "MuiSvgIcon",
9810
- slot: "Root",
9811
- overridesResolver: (props, styles2) => {
9812
- const {
9813
- ownerState
9814
- } = props;
9815
- return [styles2.root, ownerState.color !== "inherit" && styles2[`color${capitalize(ownerState.color)}`], styles2[`fontSize${capitalize(ownerState.fontSize)}`]];
9816
- }
9817
- })(memoTheme(({
9818
- theme
9819
- }) => {
9820
- var _a2, _b2, _c2, _d2, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n;
9821
- return {
9822
- userSelect: "none",
9823
- width: "1em",
9824
- height: "1em",
9825
- display: "inline-block",
9826
- flexShrink: 0,
9827
- transition: (_d2 = (_a2 = theme.transitions) == null ? void 0 : _a2.create) == null ? void 0 : _d2.call(_a2, "fill", {
9828
- duration: (_c2 = (_b2 = (theme.vars ?? theme).transitions) == null ? void 0 : _b2.duration) == null ? void 0 : _c2.shorter
9829
- }),
9830
- variants: [
9831
- {
9832
- props: (props) => !props.hasSvgAsChild,
9833
- style: {
9834
- // the <svg> will define the property that has `currentColor`
9835
- // for example heroicons uses fill="none" and stroke="currentColor"
9836
- fill: "currentColor"
9837
- }
9838
- },
9839
- {
9840
- props: {
9841
- fontSize: "inherit"
9842
- },
9843
- style: {
9844
- fontSize: "inherit"
9845
- }
9846
- },
9847
- {
9848
- props: {
9849
- fontSize: "small"
9850
- },
9851
- style: {
9852
- fontSize: ((_f = (_e = theme.typography) == null ? void 0 : _e.pxToRem) == null ? void 0 : _f.call(_e, 20)) || "1.25rem"
9853
- }
9854
- },
9855
- {
9856
- props: {
9857
- fontSize: "medium"
9858
- },
9859
- style: {
9860
- fontSize: ((_h = (_g = theme.typography) == null ? void 0 : _g.pxToRem) == null ? void 0 : _h.call(_g, 24)) || "1.5rem"
9861
- }
9862
- },
9863
- {
9864
- props: {
9865
- fontSize: "large"
9866
- },
9867
- style: {
9868
- fontSize: ((_j = (_i = theme.typography) == null ? void 0 : _i.pxToRem) == null ? void 0 : _j.call(_i, 35)) || "2.1875rem"
9869
- }
9870
- },
9871
- // TODO v5 deprecate color prop, v6 remove for sx
9872
- ...Object.entries((theme.vars ?? theme).palette).filter(([, value]) => value && value.main).map(([color2]) => {
9873
- var _a3, _b3;
9874
- return {
9875
- props: {
9876
- color: color2
9877
- },
9878
- style: {
9879
- color: (_b3 = (_a3 = (theme.vars ?? theme).palette) == null ? void 0 : _a3[color2]) == null ? void 0 : _b3.main
9880
- }
9881
- };
9882
- }),
9883
- {
9884
- props: {
9885
- color: "action"
9886
- },
9887
- style: {
9888
- color: (_l = (_k = (theme.vars ?? theme).palette) == null ? void 0 : _k.action) == null ? void 0 : _l.active
9889
- }
9890
- },
9891
- {
9892
- props: {
9893
- color: "disabled"
9894
- },
9895
- style: {
9896
- color: (_n = (_m = (theme.vars ?? theme).palette) == null ? void 0 : _m.action) == null ? void 0 : _n.disabled
9897
- }
9898
- },
9899
- {
9900
- props: {
9901
- color: "inherit"
9902
- },
9903
- style: {
9904
- color: void 0
9905
- }
9906
- }
9907
- ]
9908
- };
9909
- }));
9910
- const SvgIcon = /* @__PURE__ */ React.forwardRef(function SvgIcon2(inProps, ref) {
9911
- const props = useDefaultProps({
9912
- props: inProps,
9913
- name: "MuiSvgIcon"
9914
- });
9915
- const {
9916
- children,
9917
- className,
9918
- color: color2 = "inherit",
9919
- component = "svg",
9920
- fontSize = "medium",
9921
- htmlColor,
9922
- inheritViewBox = false,
9923
- titleAccess,
9924
- viewBox = "0 0 24 24",
9925
- ...other
9926
- } = props;
9927
- const hasSvgAsChild = /* @__PURE__ */ React.isValidElement(children) && children.type === "svg";
9928
- const ownerState = {
9929
- ...props,
9930
- color: color2,
9931
- component,
9932
- fontSize,
9933
- instanceFontSize: inProps.fontSize,
9934
- inheritViewBox,
9935
- viewBox,
9936
- hasSvgAsChild
9937
- };
9938
- const more = {};
9939
- if (!inheritViewBox) {
9940
- more.viewBox = viewBox;
9941
- }
9942
- const classes2 = useUtilityClasses$1y(ownerState);
9943
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(SvgIconRoot, {
9944
- as: component,
9945
- className: clsx$1(classes2.root, className),
9946
- focusable: "false",
9947
- color: htmlColor,
9948
- "aria-hidden": titleAccess ? void 0 : true,
9949
- role: titleAccess ? "img" : void 0,
9950
- ref,
9951
- ...more,
9952
- ...other,
9953
- ...hasSvgAsChild && children.props,
9954
- ownerState,
9955
- children: [hasSvgAsChild ? children.props.children : children, titleAccess ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", {
9956
- children: titleAccess
9957
- }) : null]
9958
- });
9959
- });
9960
- SvgIcon.propTypes = {
9961
- // ┌────────────────────────────── Warning ──────────────────────────────┐
9962
- // │ These PropTypes are generated from the TypeScript type definitions. │
9963
- // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
9964
- // └─────────────────────────────────────────────────────────────────────┘
9965
- /**
9966
- * Node passed into the SVG element.
9967
- */
9968
- children: PropTypes.node,
9969
- /**
9970
- * Override or extend the styles applied to the component.
9971
- */
9972
- classes: PropTypes.object,
9973
- /**
9974
- * @ignore
9975
- */
9976
- className: PropTypes.string,
9977
- /**
9978
- * The color of the component.
9979
- * It supports both default and custom theme colors, which can be added as shown in the
9980
- * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
9981
- * You can use the `htmlColor` prop to apply a color attribute to the SVG element.
9982
- * @default 'inherit'
9983
- */
9984
- color: PropTypes.oneOfType([PropTypes.oneOf(["inherit", "action", "disabled", "primary", "secondary", "error", "info", "success", "warning"]), PropTypes.string]),
9985
- /**
9986
- * The component used for the root node.
9987
- * Either a string to use a HTML element or a component.
9988
- */
9989
- component: PropTypes.elementType,
9990
- /**
9991
- * The fontSize applied to the icon. Defaults to 24px, but can be configure to inherit font size.
9992
- * @default 'medium'
9993
- */
9994
- fontSize: PropTypes.oneOfType([PropTypes.oneOf(["inherit", "large", "medium", "small"]), PropTypes.string]),
9995
- /**
9996
- * Applies a color attribute to the SVG element.
9997
- */
9998
- htmlColor: PropTypes.string,
9999
- /**
10000
- * If `true`, the root node will inherit the custom `component`'s viewBox and the `viewBox`
10001
- * prop will be ignored.
10002
- * Useful when you want to reference a custom `component` and have `SvgIcon` pass that
10003
- * `component`'s viewBox to the root node.
10004
- * @default false
10005
- */
10006
- inheritViewBox: PropTypes.bool,
10007
- /**
10008
- * The shape-rendering attribute. The behavior of the different options is described on the
10009
- * [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/shape-rendering).
10010
- * If you are having issues with blurry icons you should investigate this prop.
10011
- */
10012
- shapeRendering: PropTypes.string,
10013
- /**
10014
- * The system prop that allows defining system overrides as well as additional CSS styles.
10015
- */
10016
- sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
10017
- /**
10018
- * Provides a human-readable title for the element that contains it.
10019
- * https://www.w3.org/TR/SVG-access/#Equivalent
10020
- */
10021
- titleAccess: PropTypes.string,
10022
- /**
10023
- * Allows you to redefine what the coordinates without units mean inside an SVG element.
10024
- * For example, if the SVG element is 500 (width) by 200 (height),
10025
- * and you pass viewBox="0 0 50 20",
10026
- * this means that the coordinates inside the SVG will go from the top left corner (0,0)
10027
- * to bottom right (50,20) and each unit will be worth 10px.
10028
- * @default '0 0 24 24'
10029
- */
10030
- viewBox: PropTypes.string
10031
- };
10032
- SvgIcon.muiName = "SvgIcon";
10033
- function createSvgIcon(path, displayName) {
10034
- function Component(props, ref) {
10035
- return /* @__PURE__ */ jsxRuntimeExports.jsx(SvgIcon, {
10036
- "data-testid": `${displayName}Icon`,
10037
- ref,
10038
- ...props,
10039
- children: path
10040
- });
10041
- }
10042
- {
10043
- Component.displayName = `${displayName}Icon`;
10044
- }
10045
- Component.muiName = SvgIcon.muiName;
10046
- return /* @__PURE__ */ React.memo(/* @__PURE__ */ React.forwardRef(Component));
10047
- }
10048
- function debounce$2(func, wait = 166) {
10049
- let timeout2;
10050
- function debounced(...args) {
10051
- const later = () => {
10052
- func.apply(this, args);
10053
- };
10054
- clearTimeout(timeout2);
10055
- timeout2 = setTimeout(later, wait);
10056
- }
10057
- debounced.clear = () => {
10058
- clearTimeout(timeout2);
10059
- };
10060
- return debounced;
10061
- }
10062
- function ownerDocument(node2) {
10063
- return node2 && node2.ownerDocument || document;
10064
- }
10065
- function ownerWindow(node2) {
10066
- const doc = ownerDocument(node2);
10067
- return doc.defaultView || window;
10068
- }
10069
- function requirePropFactory(componentNameInError, Component) {
10070
- const prevPropTypes = Component ? {
10071
- ...Component.propTypes
10072
- } : null;
10073
- const requireProp = (requiredProp) => (props, propName, componentName, location, propFullName, ...args) => {
10074
- const propFullNameSafe = propFullName || propName;
10075
- const defaultTypeChecker = prevPropTypes == null ? void 0 : prevPropTypes[propFullNameSafe];
10076
- if (defaultTypeChecker) {
10077
- const typeCheckerResult = defaultTypeChecker(props, propName, componentName, location, propFullName, ...args);
10078
- if (typeCheckerResult) {
10079
- return typeCheckerResult;
10080
- }
10081
- }
10082
- if (typeof props[propName] !== "undefined" && !props[requiredProp]) {
10083
- return new Error(`The prop \`${propFullNameSafe}\` of \`${componentNameInError}\` can only be used together with the \`${requiredProp}\` prop.`);
10084
- }
10085
- return null;
10086
- };
10087
- return requireProp;
10088
- }
10089
- function setRef$1(ref, value) {
10090
- if (typeof ref === "function") {
10091
- ref(value);
10092
- } else if (ref) {
10093
- ref.current = value;
10094
- }
10095
- }
10096
- let globalId$1 = 0;
10097
- function useGlobalId(idOverride) {
10098
- const [defaultId, setDefaultId] = React.useState(idOverride);
10099
- const id = idOverride || defaultId;
10100
- React.useEffect(() => {
10101
- if (defaultId == null) {
10102
- globalId$1 += 1;
10103
- setDefaultId(`mui-${globalId$1}`);
10104
- }
10105
- }, [defaultId]);
10106
- return id;
10107
- }
10108
- const safeReact = {
10109
- ...React
10110
- };
10111
- const maybeReactUseId = safeReact.useId;
10112
- function useId(idOverride) {
10113
- if (maybeReactUseId !== void 0) {
10114
- const reactId = maybeReactUseId();
10115
- return idOverride ?? reactId;
10116
- }
10117
- return useGlobalId(idOverride);
10118
- }
10119
- function unsupportedProp(props, propName, componentName, location, propFullName) {
10120
- const propFullNameSafe = propFullName || propName;
10121
- if (typeof props[propName] !== "undefined") {
10122
- return new Error(`The prop \`${propFullNameSafe}\` is not supported. Please remove it.`);
10123
- }
10124
- return null;
10125
- }
10126
- function useControlled(props) {
10127
- const {
10128
- controlled,
10129
- default: defaultProp,
10130
- name,
10131
- state = "value"
10132
- } = props;
10133
- const {
10134
- current: isControlled
10135
- } = React.useRef(controlled !== void 0);
10136
- const [valueState, setValue] = React.useState(defaultProp);
10137
- const value = isControlled ? controlled : valueState;
10138
- {
10139
- React.useEffect(() => {
10140
- if (isControlled !== (controlled !== void 0)) {
10141
- console.error([`MUI: A component is changing the ${isControlled ? "" : "un"}controlled ${state} state of ${name} to be ${isControlled ? "un" : ""}controlled.`, "Elements should not switch from uncontrolled to controlled (or vice versa).", `Decide between using a controlled or uncontrolled ${name} element for the lifetime of the component.`, "The nature of the state is determined during the first render. It's considered controlled if the value is not `undefined`.", "More info: https://fb.me/react-controlled-components"].join("\n"));
10142
- }
10143
- }, [state, name, controlled]);
10144
- const {
10145
- current: defaultValue
10146
- } = React.useRef(defaultProp);
10147
- React.useEffect(() => {
10148
- if (!isControlled && !Object.is(defaultValue, defaultProp)) {
10149
- console.error([`MUI: A component is changing the default ${state} state of an uncontrolled ${name} after being initialized. To suppress this warning opt to use a controlled ${name}.`].join("\n"));
10150
- }
10151
- }, [JSON.stringify(defaultProp)]);
10152
- }
10153
- const setValueIfUncontrolled = React.useCallback((newValue) => {
10154
- if (!isControlled) {
10155
- setValue(newValue);
10156
- }
10157
- }, []);
10158
- return [value, setValueIfUncontrolled];
10159
- }
10160
- function useEventCallback(fn2) {
10161
- const ref = React.useRef(fn2);
10162
- useEnhancedEffect$1(() => {
10163
- ref.current = fn2;
10164
- });
10165
- return React.useRef((...args) => (
10166
- // @ts-expect-error hide `this`
10167
- (0, ref.current)(...args)
10168
- )).current;
10169
- }
10170
- function useForkRef$1(...refs) {
10171
- const cleanupRef = React.useRef(void 0);
10172
- const refEffect = React.useCallback((instance) => {
10173
- const cleanups = refs.map((ref) => {
10174
- if (ref == null) {
10175
- return null;
10176
- }
10177
- if (typeof ref === "function") {
10178
- const refCallback = ref;
10179
- const refCleanup = refCallback(instance);
10180
- return typeof refCleanup === "function" ? refCleanup : () => {
10181
- refCallback(null);
10182
- };
10183
- }
10184
- ref.current = instance;
10185
- return () => {
10186
- ref.current = null;
10187
- };
10188
- });
10189
- return () => {
10190
- cleanups.forEach((refCleanup) => refCleanup == null ? void 0 : refCleanup());
10191
- };
10192
- }, refs);
10193
- return React.useMemo(() => {
10194
- if (refs.every((ref) => ref == null)) {
10195
- return null;
10196
- }
10197
- return (value) => {
10198
- if (cleanupRef.current) {
10199
- cleanupRef.current();
10200
- cleanupRef.current = void 0;
10201
- }
10202
- if (value != null) {
10203
- cleanupRef.current = refEffect(value);
10204
- }
10205
- };
10206
- }, refs);
10207
- }
10208
- function isEventHandler(key, value) {
10209
- const thirdCharCode = key.charCodeAt(2);
10210
- return key[0] === "o" && key[1] === "n" && thirdCharCode >= 65 && thirdCharCode <= 90 && typeof value === "function";
10211
- }
10212
- function mergeSlotProps$1(externalSlotProps, defaultSlotProps) {
10213
- if (!externalSlotProps) {
10214
- return defaultSlotProps;
10215
- }
10216
- function extractHandlers(externalSlotPropsValue, defaultSlotPropsValue) {
10217
- const handlers2 = {};
10218
- Object.keys(defaultSlotPropsValue).forEach((key) => {
10219
- if (isEventHandler(key, defaultSlotPropsValue[key]) && typeof externalSlotPropsValue[key] === "function") {
10220
- handlers2[key] = (...args) => {
10221
- externalSlotPropsValue[key](...args);
10222
- defaultSlotPropsValue[key](...args);
10223
- };
10224
- }
10225
- });
10226
- return handlers2;
10227
- }
10228
- if (typeof externalSlotProps === "function" || typeof defaultSlotProps === "function") {
10229
- return (ownerState) => {
10230
- const defaultSlotPropsValue = typeof defaultSlotProps === "function" ? defaultSlotProps(ownerState) : defaultSlotProps;
10231
- const externalSlotPropsValue = typeof externalSlotProps === "function" ? externalSlotProps({
10232
- ...ownerState,
10233
- ...defaultSlotPropsValue
10234
- }) : externalSlotProps;
10235
- const className2 = clsx$1(ownerState == null ? void 0 : ownerState.className, defaultSlotPropsValue == null ? void 0 : defaultSlotPropsValue.className, externalSlotPropsValue == null ? void 0 : externalSlotPropsValue.className);
10236
- const handlers2 = extractHandlers(externalSlotPropsValue, defaultSlotPropsValue);
10237
- return {
10238
- ...defaultSlotPropsValue,
10239
- ...externalSlotPropsValue,
10240
- ...handlers2,
10241
- ...!!className2 && {
10242
- className: className2
10243
- },
10244
- ...(defaultSlotPropsValue == null ? void 0 : defaultSlotPropsValue.style) && (externalSlotPropsValue == null ? void 0 : externalSlotPropsValue.style) && {
10245
- style: {
10246
- ...defaultSlotPropsValue.style,
10247
- ...externalSlotPropsValue.style
10248
- }
10249
- },
10250
- ...(defaultSlotPropsValue == null ? void 0 : defaultSlotPropsValue.sx) && (externalSlotPropsValue == null ? void 0 : externalSlotPropsValue.sx) && {
10251
- sx: [...Array.isArray(defaultSlotPropsValue.sx) ? defaultSlotPropsValue.sx : [defaultSlotPropsValue.sx], ...Array.isArray(externalSlotPropsValue.sx) ? externalSlotPropsValue.sx : [externalSlotPropsValue.sx]]
10252
- }
10253
- };
10254
- };
10255
- }
10256
- const typedDefaultSlotProps = defaultSlotProps;
10257
- const handlers = extractHandlers(externalSlotProps, typedDefaultSlotProps);
10258
- const className = clsx$1(typedDefaultSlotProps == null ? void 0 : typedDefaultSlotProps.className, externalSlotProps == null ? void 0 : externalSlotProps.className);
10259
- return {
10260
- ...defaultSlotProps,
10261
- ...externalSlotProps,
10262
- ...handlers,
10263
- ...!!className && {
10264
- className
10265
- },
10266
- ...(typedDefaultSlotProps == null ? void 0 : typedDefaultSlotProps.style) && (externalSlotProps == null ? void 0 : externalSlotProps.style) && {
10267
- style: {
10268
- ...typedDefaultSlotProps.style,
10269
- ...externalSlotProps.style
10270
- }
10271
- },
10272
- ...(typedDefaultSlotProps == null ? void 0 : typedDefaultSlotProps.sx) && (externalSlotProps == null ? void 0 : externalSlotProps.sx) && {
10273
- sx: [...Array.isArray(typedDefaultSlotProps.sx) ? typedDefaultSlotProps.sx : [typedDefaultSlotProps.sx], ...Array.isArray(externalSlotProps.sx) ? externalSlotProps.sx : [externalSlotProps.sx]]
10274
- }
10275
- };
10276
- }
10277
10283
  function getCollapseUtilityClass(slot) {
10278
10284
  return generateUtilityClass("MuiCollapse", slot);
10279
10285
  }
@@ -22506,6 +22512,437 @@ InputLabel.propTypes = {
22506
22512
  */
22507
22513
  variant: PropTypes.oneOf(["filled", "outlined", "standard"])
22508
22514
  };
22515
+ function getLinearProgressUtilityClass(slot) {
22516
+ return generateUtilityClass("MuiLinearProgress", slot);
22517
+ }
22518
+ generateUtilityClasses("MuiLinearProgress", ["root", "colorPrimary", "colorSecondary", "determinate", "indeterminate", "buffer", "query", "dashed", "dashedColorPrimary", "dashedColorSecondary", "bar", "bar1", "bar2", "barColorPrimary", "barColorSecondary", "bar1Indeterminate", "bar1Determinate", "bar1Buffer", "bar2Indeterminate", "bar2Buffer"]);
22519
+ const TRANSITION_DURATION = 4;
22520
+ const indeterminate1Keyframe = keyframes`
22521
+ 0% {
22522
+ left: -35%;
22523
+ right: 100%;
22524
+ }
22525
+
22526
+ 60% {
22527
+ left: 100%;
22528
+ right: -90%;
22529
+ }
22530
+
22531
+ 100% {
22532
+ left: 100%;
22533
+ right: -90%;
22534
+ }
22535
+ `;
22536
+ const indeterminate1Animation = typeof indeterminate1Keyframe !== "string" ? css`
22537
+ animation: ${indeterminate1Keyframe} 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
22538
+ ` : null;
22539
+ const indeterminate2Keyframe = keyframes`
22540
+ 0% {
22541
+ left: -200%;
22542
+ right: 100%;
22543
+ }
22544
+
22545
+ 60% {
22546
+ left: 107%;
22547
+ right: -8%;
22548
+ }
22549
+
22550
+ 100% {
22551
+ left: 107%;
22552
+ right: -8%;
22553
+ }
22554
+ `;
22555
+ const indeterminate2Animation = typeof indeterminate2Keyframe !== "string" ? css`
22556
+ animation: ${indeterminate2Keyframe} 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite;
22557
+ ` : null;
22558
+ const bufferKeyframe = keyframes`
22559
+ 0% {
22560
+ opacity: 1;
22561
+ background-position: 0 -23px;
22562
+ }
22563
+
22564
+ 60% {
22565
+ opacity: 0;
22566
+ background-position: 0 -23px;
22567
+ }
22568
+
22569
+ 100% {
22570
+ opacity: 1;
22571
+ background-position: -200px -23px;
22572
+ }
22573
+ `;
22574
+ const bufferAnimation = typeof bufferKeyframe !== "string" ? css`
22575
+ animation: ${bufferKeyframe} 3s infinite linear;
22576
+ ` : null;
22577
+ const useUtilityClasses$19 = (ownerState) => {
22578
+ const {
22579
+ classes: classes2,
22580
+ variant,
22581
+ color: color2
22582
+ } = ownerState;
22583
+ const slots = {
22584
+ root: ["root", `color${capitalize(color2)}`, variant],
22585
+ dashed: ["dashed", `dashedColor${capitalize(color2)}`],
22586
+ bar1: ["bar", "bar1", `barColor${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar1Indeterminate", variant === "determinate" && "bar1Determinate", variant === "buffer" && "bar1Buffer"],
22587
+ bar2: ["bar", "bar2", variant !== "buffer" && `barColor${capitalize(color2)}`, variant === "buffer" && `color${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar2Indeterminate", variant === "buffer" && "bar2Buffer"]
22588
+ };
22589
+ return composeClasses(slots, getLinearProgressUtilityClass, classes2);
22590
+ };
22591
+ const getColorShade = (theme, color2) => {
22592
+ if (theme.vars) {
22593
+ return theme.vars.palette.LinearProgress[`${color2}Bg`];
22594
+ }
22595
+ return theme.palette.mode === "light" ? lighten(theme.palette[color2].main, 0.62) : darken(theme.palette[color2].main, 0.5);
22596
+ };
22597
+ const LinearProgressRoot = styled("span", {
22598
+ name: "MuiLinearProgress",
22599
+ slot: "Root",
22600
+ overridesResolver: (props, styles2) => {
22601
+ const {
22602
+ ownerState
22603
+ } = props;
22604
+ return [styles2.root, styles2[`color${capitalize(ownerState.color)}`], styles2[ownerState.variant]];
22605
+ }
22606
+ })(memoTheme(({
22607
+ theme
22608
+ }) => ({
22609
+ position: "relative",
22610
+ overflow: "hidden",
22611
+ display: "block",
22612
+ height: 4,
22613
+ // Fix Safari's bug during composition of different paint.
22614
+ zIndex: 0,
22615
+ "@media print": {
22616
+ colorAdjust: "exact"
22617
+ },
22618
+ variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
22619
+ props: {
22620
+ color: color2
22621
+ },
22622
+ style: {
22623
+ backgroundColor: getColorShade(theme, color2)
22624
+ }
22625
+ })), {
22626
+ props: ({
22627
+ ownerState
22628
+ }) => ownerState.color === "inherit" && ownerState.variant !== "buffer",
22629
+ style: {
22630
+ "&::before": {
22631
+ content: '""',
22632
+ position: "absolute",
22633
+ left: 0,
22634
+ top: 0,
22635
+ right: 0,
22636
+ bottom: 0,
22637
+ backgroundColor: "currentColor",
22638
+ opacity: 0.3
22639
+ }
22640
+ }
22641
+ }, {
22642
+ props: {
22643
+ variant: "buffer"
22644
+ },
22645
+ style: {
22646
+ backgroundColor: "transparent"
22647
+ }
22648
+ }, {
22649
+ props: {
22650
+ variant: "query"
22651
+ },
22652
+ style: {
22653
+ transform: "rotate(180deg)"
22654
+ }
22655
+ }]
22656
+ })));
22657
+ const LinearProgressDashed = styled("span", {
22658
+ name: "MuiLinearProgress",
22659
+ slot: "Dashed",
22660
+ overridesResolver: (props, styles2) => {
22661
+ const {
22662
+ ownerState
22663
+ } = props;
22664
+ return [styles2.dashed, styles2[`dashedColor${capitalize(ownerState.color)}`]];
22665
+ }
22666
+ })(memoTheme(({
22667
+ theme
22668
+ }) => ({
22669
+ position: "absolute",
22670
+ marginTop: 0,
22671
+ height: "100%",
22672
+ width: "100%",
22673
+ backgroundSize: "10px 10px",
22674
+ backgroundPosition: "0 -23px",
22675
+ variants: [{
22676
+ props: {
22677
+ color: "inherit"
22678
+ },
22679
+ style: {
22680
+ opacity: 0.3,
22681
+ backgroundImage: `radial-gradient(currentColor 0%, currentColor 16%, transparent 42%)`
22682
+ }
22683
+ }, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => {
22684
+ const backgroundColor2 = getColorShade(theme, color2);
22685
+ return {
22686
+ props: {
22687
+ color: color2
22688
+ },
22689
+ style: {
22690
+ backgroundImage: `radial-gradient(${backgroundColor2} 0%, ${backgroundColor2} 16%, transparent 42%)`
22691
+ }
22692
+ };
22693
+ })]
22694
+ })), bufferAnimation || {
22695
+ // At runtime for Pigment CSS, `bufferAnimation` will be null and the generated keyframe will be used.
22696
+ animation: `${bufferKeyframe} 3s infinite linear`
22697
+ });
22698
+ const LinearProgressBar1 = styled("span", {
22699
+ name: "MuiLinearProgress",
22700
+ slot: "Bar1",
22701
+ overridesResolver: (props, styles2) => {
22702
+ const {
22703
+ ownerState
22704
+ } = props;
22705
+ return [styles2.bar, styles2.bar1, styles2[`barColor${capitalize(ownerState.color)}`], (ownerState.variant === "indeterminate" || ownerState.variant === "query") && styles2.bar1Indeterminate, ownerState.variant === "determinate" && styles2.bar1Determinate, ownerState.variant === "buffer" && styles2.bar1Buffer];
22706
+ }
22707
+ })(memoTheme(({
22708
+ theme
22709
+ }) => ({
22710
+ width: "100%",
22711
+ position: "absolute",
22712
+ left: 0,
22713
+ bottom: 0,
22714
+ top: 0,
22715
+ transition: "transform 0.2s linear",
22716
+ transformOrigin: "left",
22717
+ variants: [{
22718
+ props: {
22719
+ color: "inherit"
22720
+ },
22721
+ style: {
22722
+ backgroundColor: "currentColor"
22723
+ }
22724
+ }, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
22725
+ props: {
22726
+ color: color2
22727
+ },
22728
+ style: {
22729
+ backgroundColor: (theme.vars || theme).palette[color2].main
22730
+ }
22731
+ })), {
22732
+ props: {
22733
+ variant: "determinate"
22734
+ },
22735
+ style: {
22736
+ transition: `transform .${TRANSITION_DURATION}s linear`
22737
+ }
22738
+ }, {
22739
+ props: {
22740
+ variant: "buffer"
22741
+ },
22742
+ style: {
22743
+ zIndex: 1,
22744
+ transition: `transform .${TRANSITION_DURATION}s linear`
22745
+ }
22746
+ }, {
22747
+ props: ({
22748
+ ownerState
22749
+ }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
22750
+ style: {
22751
+ width: "auto"
22752
+ }
22753
+ }, {
22754
+ props: ({
22755
+ ownerState
22756
+ }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
22757
+ style: indeterminate1Animation || {
22758
+ animation: `${indeterminate1Keyframe} 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite`
22759
+ }
22760
+ }]
22761
+ })));
22762
+ const LinearProgressBar2 = styled("span", {
22763
+ name: "MuiLinearProgress",
22764
+ slot: "Bar2",
22765
+ overridesResolver: (props, styles2) => {
22766
+ const {
22767
+ ownerState
22768
+ } = props;
22769
+ return [styles2.bar, styles2.bar2, styles2[`barColor${capitalize(ownerState.color)}`], (ownerState.variant === "indeterminate" || ownerState.variant === "query") && styles2.bar2Indeterminate, ownerState.variant === "buffer" && styles2.bar2Buffer];
22770
+ }
22771
+ })(memoTheme(({
22772
+ theme
22773
+ }) => ({
22774
+ width: "100%",
22775
+ position: "absolute",
22776
+ left: 0,
22777
+ bottom: 0,
22778
+ top: 0,
22779
+ transition: "transform 0.2s linear",
22780
+ transformOrigin: "left",
22781
+ variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
22782
+ props: {
22783
+ color: color2
22784
+ },
22785
+ style: {
22786
+ "--LinearProgressBar2-barColor": (theme.vars || theme).palette[color2].main
22787
+ }
22788
+ })), {
22789
+ props: ({
22790
+ ownerState
22791
+ }) => ownerState.variant !== "buffer" && ownerState.color !== "inherit",
22792
+ style: {
22793
+ backgroundColor: "var(--LinearProgressBar2-barColor, currentColor)"
22794
+ }
22795
+ }, {
22796
+ props: ({
22797
+ ownerState
22798
+ }) => ownerState.variant !== "buffer" && ownerState.color === "inherit",
22799
+ style: {
22800
+ backgroundColor: "currentColor"
22801
+ }
22802
+ }, {
22803
+ props: {
22804
+ color: "inherit"
22805
+ },
22806
+ style: {
22807
+ opacity: 0.3
22808
+ }
22809
+ }, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
22810
+ props: {
22811
+ color: color2,
22812
+ variant: "buffer"
22813
+ },
22814
+ style: {
22815
+ backgroundColor: getColorShade(theme, color2),
22816
+ transition: `transform .${TRANSITION_DURATION}s linear`
22817
+ }
22818
+ })), {
22819
+ props: ({
22820
+ ownerState
22821
+ }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
22822
+ style: {
22823
+ width: "auto"
22824
+ }
22825
+ }, {
22826
+ props: ({
22827
+ ownerState
22828
+ }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
22829
+ style: indeterminate2Animation || {
22830
+ animation: `${indeterminate2Keyframe} 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite`
22831
+ }
22832
+ }]
22833
+ })));
22834
+ const LinearProgress = /* @__PURE__ */ React.forwardRef(function LinearProgress2(inProps, ref) {
22835
+ const props = useDefaultProps({
22836
+ props: inProps,
22837
+ name: "MuiLinearProgress"
22838
+ });
22839
+ const {
22840
+ className,
22841
+ color: color2 = "primary",
22842
+ value,
22843
+ valueBuffer,
22844
+ variant = "indeterminate",
22845
+ ...other
22846
+ } = props;
22847
+ const ownerState = {
22848
+ ...props,
22849
+ color: color2,
22850
+ variant
22851
+ };
22852
+ const classes2 = useUtilityClasses$19(ownerState);
22853
+ const isRtl = useRtl();
22854
+ const rootProps = {};
22855
+ const inlineStyles = {
22856
+ bar1: {},
22857
+ bar2: {}
22858
+ };
22859
+ if (variant === "determinate" || variant === "buffer") {
22860
+ if (value !== void 0) {
22861
+ rootProps["aria-valuenow"] = Math.round(value);
22862
+ rootProps["aria-valuemin"] = 0;
22863
+ rootProps["aria-valuemax"] = 100;
22864
+ let transform = value - 100;
22865
+ if (isRtl) {
22866
+ transform = -transform;
22867
+ }
22868
+ inlineStyles.bar1.transform = `translateX(${transform}%)`;
22869
+ } else {
22870
+ console.error("MUI: You need to provide a value prop when using the determinate or buffer variant of LinearProgress .");
22871
+ }
22872
+ }
22873
+ if (variant === "buffer") {
22874
+ if (valueBuffer !== void 0) {
22875
+ let transform = (valueBuffer || 0) - 100;
22876
+ if (isRtl) {
22877
+ transform = -transform;
22878
+ }
22879
+ inlineStyles.bar2.transform = `translateX(${transform}%)`;
22880
+ } else {
22881
+ console.error("MUI: You need to provide a valueBuffer prop when using the buffer variant of LinearProgress.");
22882
+ }
22883
+ }
22884
+ return /* @__PURE__ */ jsxRuntimeExports.jsxs(LinearProgressRoot, {
22885
+ className: clsx$1(classes2.root, className),
22886
+ ownerState,
22887
+ role: "progressbar",
22888
+ ...rootProps,
22889
+ ref,
22890
+ ...other,
22891
+ children: [variant === "buffer" ? /* @__PURE__ */ jsxRuntimeExports.jsx(LinearProgressDashed, {
22892
+ className: classes2.dashed,
22893
+ ownerState
22894
+ }) : null, /* @__PURE__ */ jsxRuntimeExports.jsx(LinearProgressBar1, {
22895
+ className: classes2.bar1,
22896
+ ownerState,
22897
+ style: inlineStyles.bar1
22898
+ }), variant === "determinate" ? null : /* @__PURE__ */ jsxRuntimeExports.jsx(LinearProgressBar2, {
22899
+ className: classes2.bar2,
22900
+ ownerState,
22901
+ style: inlineStyles.bar2
22902
+ })]
22903
+ });
22904
+ });
22905
+ LinearProgress.propTypes = {
22906
+ // ┌────────────────────────────── Warning ──────────────────────────────┐
22907
+ // │ These PropTypes are generated from the TypeScript type definitions. │
22908
+ // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
22909
+ // └─────────────────────────────────────────────────────────────────────┘
22910
+ /**
22911
+ * Override or extend the styles applied to the component.
22912
+ */
22913
+ classes: PropTypes.object,
22914
+ /**
22915
+ * @ignore
22916
+ */
22917
+ className: PropTypes.string,
22918
+ /**
22919
+ * The color of the component.
22920
+ * It supports both default and custom theme colors, which can be added as shown in the
22921
+ * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
22922
+ * @default 'primary'
22923
+ */
22924
+ color: PropTypes.oneOfType([PropTypes.oneOf(["inherit", "primary", "secondary"]), PropTypes.string]),
22925
+ /**
22926
+ * The system prop that allows defining system overrides as well as additional CSS styles.
22927
+ */
22928
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
22929
+ /**
22930
+ * The value of the progress indicator for the determinate and buffer variants.
22931
+ * Value between 0 and 100.
22932
+ */
22933
+ value: PropTypes.number,
22934
+ /**
22935
+ * The value for the buffer variant.
22936
+ * Value between 0 and 100.
22937
+ */
22938
+ valueBuffer: PropTypes.number,
22939
+ /**
22940
+ * The variant to use.
22941
+ * Use indeterminate or query when there is no progress value.
22942
+ * @default 'indeterminate'
22943
+ */
22944
+ variant: PropTypes.oneOf(["buffer", "determinate", "indeterminate", "query"])
22945
+ };
22509
22946
  const ListContext = /* @__PURE__ */ React.createContext({});
22510
22947
  {
22511
22948
  ListContext.displayName = "ListContext";
@@ -22514,7 +22951,7 @@ function getListUtilityClass(slot) {
22514
22951
  return generateUtilityClass("MuiList", slot);
22515
22952
  }
22516
22953
  generateUtilityClasses("MuiList", ["root", "padding", "dense", "subheader"]);
22517
- const useUtilityClasses$19 = (ownerState) => {
22954
+ const useUtilityClasses$18 = (ownerState) => {
22518
22955
  const {
22519
22956
  classes: classes2,
22520
22957
  disablePadding,
@@ -22580,7 +23017,7 @@ const List = /* @__PURE__ */ React.forwardRef(function List2(inProps, ref) {
22580
23017
  dense,
22581
23018
  disablePadding
22582
23019
  };
22583
- const classes2 = useUtilityClasses$19(ownerState);
23020
+ const classes2 = useUtilityClasses$18(ownerState);
22584
23021
  return /* @__PURE__ */ jsxRuntimeExports.jsx(ListContext.Provider, {
22585
23022
  value: context,
22586
23023
  children: /* @__PURE__ */ jsxRuntimeExports.jsxs(ListRoot, {
@@ -22640,7 +23077,7 @@ function getListItemTextUtilityClass(slot) {
22640
23077
  return generateUtilityClass("MuiListItemText", slot);
22641
23078
  }
22642
23079
  const listItemTextClasses = generateUtilityClasses("MuiListItemText", ["root", "multiline", "dense", "inset", "primary", "secondary"]);
22643
- const useUtilityClasses$18 = (ownerState) => {
23080
+ const useUtilityClasses$17 = (ownerState) => {
22644
23081
  const {
22645
23082
  classes: classes2,
22646
23083
  inset,
@@ -22727,7 +23164,7 @@ const ListItemText = /* @__PURE__ */ React.forwardRef(function ListItemText2(inP
22727
23164
  secondary: !!secondary,
22728
23165
  dense
22729
23166
  };
22730
- const classes2 = useUtilityClasses$18(ownerState);
23167
+ const classes2 = useUtilityClasses$17(ownerState);
22731
23168
  const externalForwardedProps = {
22732
23169
  slots,
22733
23170
  slotProps: {
@@ -22853,77 +23290,161 @@ ListItemText.propTypes = {
22853
23290
  */
22854
23291
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
22855
23292
  };
22856
- function getScrollbarSize$1(win = window) {
22857
- const documentWidth = win.document.documentElement.clientWidth;
22858
- return win.innerWidth - documentWidth;
22859
- }
22860
- function nextItem(list, item, disableListWrap) {
22861
- if (list === item) {
22862
- return list.firstChild;
22863
- }
22864
- if (item && item.nextElementSibling) {
22865
- return item.nextElementSibling;
22866
- }
22867
- return disableListWrap ? null : list.firstChild;
22868
- }
22869
- function previousItem(list, item, disableListWrap) {
22870
- if (list === item) {
22871
- return disableListWrap ? list.firstChild : list.lastChild;
22872
- }
22873
- if (item && item.previousElementSibling) {
22874
- return item.previousElementSibling;
22875
- }
22876
- return disableListWrap ? null : list.lastChild;
22877
- }
22878
- function textCriteriaMatches(nextFocus, textCriteria) {
22879
- if (textCriteria === void 0) {
22880
- return true;
22881
- }
22882
- let text = nextFocus.innerText;
22883
- if (text === void 0) {
22884
- text = nextFocus.textContent;
22885
- }
22886
- text = text.trim().toLowerCase();
22887
- if (text.length === 0) {
22888
- return false;
22889
- }
22890
- if (textCriteria.repeating) {
22891
- return text[0] === textCriteria.keys[0];
22892
- }
22893
- return text.startsWith(textCriteria.keys.join(""));
22894
- }
22895
- function moveFocus(list, currentFocus, disableListWrap, disabledItemsFocusable, traversalFunction, textCriteria) {
22896
- let wrappedOnce = false;
22897
- let nextFocus = traversalFunction(list, currentFocus, currentFocus ? disableListWrap : false);
22898
- while (nextFocus) {
22899
- if (nextFocus === list.firstChild) {
22900
- if (wrappedOnce) {
22901
- return false;
22902
- }
22903
- wrappedOnce = true;
22904
- }
22905
- const nextFocusDisabled = disabledItemsFocusable ? false : nextFocus.disabled || nextFocus.getAttribute("aria-disabled") === "true";
22906
- if (!nextFocus.hasAttribute("tabindex") || !textCriteriaMatches(nextFocus, textCriteria) || nextFocusDisabled) {
22907
- nextFocus = traversalFunction(list, nextFocus, disableListWrap);
22908
- } else {
22909
- nextFocus.focus();
22910
- return true;
22911
- }
22912
- }
22913
- return false;
23293
+ function getListItemIconUtilityClass(slot) {
23294
+ return generateUtilityClass("MuiListItemIcon", slot);
22914
23295
  }
22915
- const MenuList = /* @__PURE__ */ React.forwardRef(function MenuList2(props, ref) {
23296
+ const listItemIconClasses = generateUtilityClasses("MuiListItemIcon", ["root", "alignItemsFlexStart"]);
23297
+ const useUtilityClasses$16 = (ownerState) => {
22916
23298
  const {
22917
- // private
22918
- // eslint-disable-next-line react/prop-types
22919
- actions,
22920
- autoFocus = false,
22921
- autoFocusItem = false,
22922
- children,
22923
- className,
22924
- disabledItemsFocusable = false,
22925
- disableListWrap = false,
22926
- onKeyDown,
23299
+ alignItems,
23300
+ classes: classes2
23301
+ } = ownerState;
23302
+ const slots = {
23303
+ root: ["root", alignItems === "flex-start" && "alignItemsFlexStart"]
23304
+ };
23305
+ return composeClasses(slots, getListItemIconUtilityClass, classes2);
23306
+ };
23307
+ const ListItemIconRoot = styled("div", {
23308
+ name: "MuiListItemIcon",
23309
+ slot: "Root",
23310
+ overridesResolver: (props, styles2) => {
23311
+ const {
23312
+ ownerState
23313
+ } = props;
23314
+ return [styles2.root, ownerState.alignItems === "flex-start" && styles2.alignItemsFlexStart];
23315
+ }
23316
+ })(memoTheme(({
23317
+ theme
23318
+ }) => ({
23319
+ minWidth: 56,
23320
+ color: (theme.vars || theme).palette.action.active,
23321
+ flexShrink: 0,
23322
+ display: "inline-flex",
23323
+ variants: [{
23324
+ props: {
23325
+ alignItems: "flex-start"
23326
+ },
23327
+ style: {
23328
+ marginTop: 8
23329
+ }
23330
+ }]
23331
+ })));
23332
+ const ListItemIcon = /* @__PURE__ */ React.forwardRef(function ListItemIcon2(inProps, ref) {
23333
+ const props = useDefaultProps({
23334
+ props: inProps,
23335
+ name: "MuiListItemIcon"
23336
+ });
23337
+ const {
23338
+ className,
23339
+ ...other
23340
+ } = props;
23341
+ const context = React.useContext(ListContext);
23342
+ const ownerState = {
23343
+ ...props,
23344
+ alignItems: context.alignItems
23345
+ };
23346
+ const classes2 = useUtilityClasses$16(ownerState);
23347
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(ListItemIconRoot, {
23348
+ className: clsx$1(classes2.root, className),
23349
+ ownerState,
23350
+ ref,
23351
+ ...other
23352
+ });
23353
+ });
23354
+ ListItemIcon.propTypes = {
23355
+ // ┌────────────────────────────── Warning ──────────────────────────────┐
23356
+ // │ These PropTypes are generated from the TypeScript type definitions. │
23357
+ // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
23358
+ // └─────────────────────────────────────────────────────────────────────┘
23359
+ /**
23360
+ * The content of the component, normally `Icon`, `SvgIcon`,
23361
+ * or a `@mui/icons-material` SVG icon element.
23362
+ */
23363
+ children: PropTypes.node,
23364
+ /**
23365
+ * Override or extend the styles applied to the component.
23366
+ */
23367
+ classes: PropTypes.object,
23368
+ /**
23369
+ * @ignore
23370
+ */
23371
+ className: PropTypes.string,
23372
+ /**
23373
+ * The system prop that allows defining system overrides as well as additional CSS styles.
23374
+ */
23375
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
23376
+ };
23377
+ function getScrollbarSize$1(win = window) {
23378
+ const documentWidth = win.document.documentElement.clientWidth;
23379
+ return win.innerWidth - documentWidth;
23380
+ }
23381
+ function nextItem(list, item, disableListWrap) {
23382
+ if (list === item) {
23383
+ return list.firstChild;
23384
+ }
23385
+ if (item && item.nextElementSibling) {
23386
+ return item.nextElementSibling;
23387
+ }
23388
+ return disableListWrap ? null : list.firstChild;
23389
+ }
23390
+ function previousItem(list, item, disableListWrap) {
23391
+ if (list === item) {
23392
+ return disableListWrap ? list.firstChild : list.lastChild;
23393
+ }
23394
+ if (item && item.previousElementSibling) {
23395
+ return item.previousElementSibling;
23396
+ }
23397
+ return disableListWrap ? null : list.lastChild;
23398
+ }
23399
+ function textCriteriaMatches(nextFocus, textCriteria) {
23400
+ if (textCriteria === void 0) {
23401
+ return true;
23402
+ }
23403
+ let text = nextFocus.innerText;
23404
+ if (text === void 0) {
23405
+ text = nextFocus.textContent;
23406
+ }
23407
+ text = text.trim().toLowerCase();
23408
+ if (text.length === 0) {
23409
+ return false;
23410
+ }
23411
+ if (textCriteria.repeating) {
23412
+ return text[0] === textCriteria.keys[0];
23413
+ }
23414
+ return text.startsWith(textCriteria.keys.join(""));
23415
+ }
23416
+ function moveFocus(list, currentFocus, disableListWrap, disabledItemsFocusable, traversalFunction, textCriteria) {
23417
+ let wrappedOnce = false;
23418
+ let nextFocus = traversalFunction(list, currentFocus, currentFocus ? disableListWrap : false);
23419
+ while (nextFocus) {
23420
+ if (nextFocus === list.firstChild) {
23421
+ if (wrappedOnce) {
23422
+ return false;
23423
+ }
23424
+ wrappedOnce = true;
23425
+ }
23426
+ const nextFocusDisabled = disabledItemsFocusable ? false : nextFocus.disabled || nextFocus.getAttribute("aria-disabled") === "true";
23427
+ if (!nextFocus.hasAttribute("tabindex") || !textCriteriaMatches(nextFocus, textCriteria) || nextFocusDisabled) {
23428
+ nextFocus = traversalFunction(list, nextFocus, disableListWrap);
23429
+ } else {
23430
+ nextFocus.focus();
23431
+ return true;
23432
+ }
23433
+ }
23434
+ return false;
23435
+ }
23436
+ const MenuList = /* @__PURE__ */ React.forwardRef(function MenuList2(props, ref) {
23437
+ const {
23438
+ // private
23439
+ // eslint-disable-next-line react/prop-types
23440
+ actions,
23441
+ autoFocus = false,
23442
+ autoFocusItem = false,
23443
+ children,
23444
+ className,
23445
+ disabledItemsFocusable = false,
23446
+ disableListWrap = false,
23447
+ onKeyDown,
22927
23448
  variant = "selectedMenu",
22928
23449
  ...other
22929
23450
  } = props;
@@ -23104,7 +23625,7 @@ function getDividerUtilityClass(slot) {
23104
23625
  return generateUtilityClass("MuiDivider", slot);
23105
23626
  }
23106
23627
  const dividerClasses = generateUtilityClasses("MuiDivider", ["root", "absolute", "fullWidth", "inset", "middle", "flexItem", "light", "vertical", "withChildren", "withChildrenVertical", "textAlignRight", "textAlignLeft", "wrapper", "wrapperVertical"]);
23107
- const useUtilityClasses$17 = (ownerState) => {
23628
+ const useUtilityClasses$15 = (ownerState) => {
23108
23629
  const {
23109
23630
  absolute,
23110
23631
  children,
@@ -23318,7 +23839,7 @@ const Divider$1 = /* @__PURE__ */ React.forwardRef(function Divider2(inProps, re
23318
23839
  textAlign,
23319
23840
  variant
23320
23841
  };
23321
- const classes2 = useUtilityClasses$17(ownerState);
23842
+ const classes2 = useUtilityClasses$15(ownerState);
23322
23843
  return /* @__PURE__ */ jsxRuntimeExports.jsx(DividerRoot, {
23323
23844
  as: component,
23324
23845
  className: clsx$1(classes2.root, className),
@@ -23400,90 +23921,6 @@ Divider$1.propTypes = {
23400
23921
  */
23401
23922
  variant: PropTypes.oneOfType([PropTypes.oneOf(["fullWidth", "inset", "middle"]), PropTypes.string])
23402
23923
  };
23403
- function getListItemIconUtilityClass(slot) {
23404
- return generateUtilityClass("MuiListItemIcon", slot);
23405
- }
23406
- const listItemIconClasses = generateUtilityClasses("MuiListItemIcon", ["root", "alignItemsFlexStart"]);
23407
- const useUtilityClasses$16 = (ownerState) => {
23408
- const {
23409
- alignItems,
23410
- classes: classes2
23411
- } = ownerState;
23412
- const slots = {
23413
- root: ["root", alignItems === "flex-start" && "alignItemsFlexStart"]
23414
- };
23415
- return composeClasses(slots, getListItemIconUtilityClass, classes2);
23416
- };
23417
- const ListItemIconRoot = styled("div", {
23418
- name: "MuiListItemIcon",
23419
- slot: "Root",
23420
- overridesResolver: (props, styles2) => {
23421
- const {
23422
- ownerState
23423
- } = props;
23424
- return [styles2.root, ownerState.alignItems === "flex-start" && styles2.alignItemsFlexStart];
23425
- }
23426
- })(memoTheme(({
23427
- theme
23428
- }) => ({
23429
- minWidth: 56,
23430
- color: (theme.vars || theme).palette.action.active,
23431
- flexShrink: 0,
23432
- display: "inline-flex",
23433
- variants: [{
23434
- props: {
23435
- alignItems: "flex-start"
23436
- },
23437
- style: {
23438
- marginTop: 8
23439
- }
23440
- }]
23441
- })));
23442
- const ListItemIcon = /* @__PURE__ */ React.forwardRef(function ListItemIcon2(inProps, ref) {
23443
- const props = useDefaultProps({
23444
- props: inProps,
23445
- name: "MuiListItemIcon"
23446
- });
23447
- const {
23448
- className,
23449
- ...other
23450
- } = props;
23451
- const context = React.useContext(ListContext);
23452
- const ownerState = {
23453
- ...props,
23454
- alignItems: context.alignItems
23455
- };
23456
- const classes2 = useUtilityClasses$16(ownerState);
23457
- return /* @__PURE__ */ jsxRuntimeExports.jsx(ListItemIconRoot, {
23458
- className: clsx$1(classes2.root, className),
23459
- ownerState,
23460
- ref,
23461
- ...other
23462
- });
23463
- });
23464
- ListItemIcon.propTypes = {
23465
- // ┌────────────────────────────── Warning ──────────────────────────────┐
23466
- // │ These PropTypes are generated from the TypeScript type definitions. │
23467
- // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
23468
- // └─────────────────────────────────────────────────────────────────────┘
23469
- /**
23470
- * The content of the component, normally `Icon`, `SvgIcon`,
23471
- * or a `@mui/icons-material` SVG icon element.
23472
- */
23473
- children: PropTypes.node,
23474
- /**
23475
- * Override or extend the styles applied to the component.
23476
- */
23477
- classes: PropTypes.object,
23478
- /**
23479
- * @ignore
23480
- */
23481
- className: PropTypes.string,
23482
- /**
23483
- * The system prop that allows defining system overrides as well as additional CSS styles.
23484
- */
23485
- sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
23486
- };
23487
23924
  function getMenuItemUtilityClass(slot) {
23488
23925
  return generateUtilityClass("MuiMenuItem", slot);
23489
23926
  }
@@ -23494,7 +23931,7 @@ const overridesResolver$1 = (props, styles2) => {
23494
23931
  } = props;
23495
23932
  return [styles2.root, ownerState.dense && styles2.dense, ownerState.divider && styles2.divider, !ownerState.disableGutters && styles2.gutters];
23496
23933
  };
23497
- const useUtilityClasses$15 = (ownerState) => {
23934
+ const useUtilityClasses$14 = (ownerState) => {
23498
23935
  const {
23499
23936
  disabled,
23500
23937
  dense,
@@ -23654,7 +24091,7 @@ const MenuItem = /* @__PURE__ */ React.forwardRef(function MenuItem2(inProps, re
23654
24091
  divider,
23655
24092
  disableGutters
23656
24093
  };
23657
- const classes2 = useUtilityClasses$15(props);
24094
+ const classes2 = useUtilityClasses$14(props);
23658
24095
  const handleRef = useForkRef$1(menuItemRef, ref);
23659
24096
  let tabIndex;
23660
24097
  if (!props.disabled) {
@@ -23754,7 +24191,7 @@ function getNativeSelectUtilityClasses(slot) {
23754
24191
  return generateUtilityClass("MuiNativeSelect", slot);
23755
24192
  }
23756
24193
  const nativeSelectClasses = generateUtilityClasses("MuiNativeSelect", ["root", "select", "multiple", "filled", "outlined", "standard", "disabled", "icon", "iconOpen", "iconFilled", "iconOutlined", "iconStandard", "nativeInput", "error"]);
23757
- const useUtilityClasses$14 = (ownerState) => {
24194
+ const useUtilityClasses$13 = (ownerState) => {
23758
24195
  const {
23759
24196
  classes: classes2,
23760
24197
  variant,
@@ -23909,7 +24346,7 @@ const NativeSelectInput = /* @__PURE__ */ React.forwardRef(function NativeSelect
23909
24346
  variant,
23910
24347
  error
23911
24348
  };
23912
- const classes2 = useUtilityClasses$14(ownerState);
24349
+ const classes2 = useUtilityClasses$13(ownerState);
23913
24350
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(React.Fragment, {
23914
24351
  children: [/* @__PURE__ */ jsxRuntimeExports.jsx(NativeSelectSelect, {
23915
24352
  ownerState,
@@ -23979,7 +24416,7 @@ NativeSelectInput.propTypes = {
23979
24416
  */
23980
24417
  variant: PropTypes.oneOf(["standard", "outlined", "filled"])
23981
24418
  };
23982
- const useUtilityClasses$13 = (ownerState) => {
24419
+ const useUtilityClasses$12 = (ownerState) => {
23983
24420
  const {
23984
24421
  classes: classes2,
23985
24422
  disableUnderline
@@ -24112,7 +24549,7 @@ const Input = /* @__PURE__ */ React.forwardRef(function Input2(inProps, ref) {
24112
24549
  type = "text",
24113
24550
  ...other
24114
24551
  } = props;
24115
- const classes2 = useUtilityClasses$13(props);
24552
+ const classes2 = useUtilityClasses$12(props);
24116
24553
  const ownerState = {
24117
24554
  disableUnderline
24118
24555
  };
@@ -24325,7 +24762,7 @@ Input.propTypes = {
24325
24762
  value: PropTypes.any
24326
24763
  };
24327
24764
  Input.muiName = "Input";
24328
- const useUtilityClasses$12 = (ownerState) => {
24765
+ const useUtilityClasses$11 = (ownerState) => {
24329
24766
  const {
24330
24767
  classes: classes2
24331
24768
  } = ownerState;
@@ -24360,7 +24797,7 @@ const NativeSelect = /* @__PURE__ */ React.forwardRef(function NativeSelect2(inP
24360
24797
  ...props,
24361
24798
  classes: classesProp
24362
24799
  };
24363
- const classes2 = useUtilityClasses$12(ownerState);
24800
+ const classes2 = useUtilityClasses$11(ownerState);
24364
24801
  const {
24365
24802
  root: root2,
24366
24803
  ...otherClasses
@@ -24529,7 +24966,7 @@ function getRadioUtilityClass(slot) {
24529
24966
  return generateUtilityClass("MuiRadio", slot);
24530
24967
  }
24531
24968
  const radioClasses = generateUtilityClasses("MuiRadio", ["root", "checked", "disabled", "colorPrimary", "colorSecondary", "sizeSmall"]);
24532
- const useUtilityClasses$11 = (ownerState) => {
24969
+ const useUtilityClasses$10 = (ownerState) => {
24533
24970
  const {
24534
24971
  classes: classes2,
24535
24972
  color: color2,
@@ -24653,7 +25090,7 @@ const Radio = /* @__PURE__ */ React.forwardRef(function Radio2(inProps, ref) {
24653
25090
  color: color2,
24654
25091
  size: size2
24655
25092
  };
24656
- const classes2 = useUtilityClasses$11(ownerState);
25093
+ const classes2 = useUtilityClasses$10(ownerState);
24657
25094
  const radioGroup = useRadioGroup();
24658
25095
  let checked = checkedProp;
24659
25096
  const onChange = createChainedFunction$1(onChangeProp, radioGroup && radioGroup.onChange);
@@ -24818,7 +25255,7 @@ function getRadioGroupUtilityClass(slot) {
24818
25255
  return generateUtilityClass("MuiRadioGroup", slot);
24819
25256
  }
24820
25257
  generateUtilityClasses("MuiRadioGroup", ["root", "row", "error"]);
24821
- const useUtilityClasses$10 = (props) => {
25258
+ const useUtilityClasses$$ = (props) => {
24822
25259
  const {
24823
25260
  classes: classes2,
24824
25261
  row,
@@ -24843,7 +25280,7 @@ const RadioGroup = /* @__PURE__ */ React.forwardRef(function RadioGroup2(props,
24843
25280
  ...other
24844
25281
  } = props;
24845
25282
  const rootRef = React.useRef(null);
24846
- const classes2 = useUtilityClasses$10(props);
25283
+ const classes2 = useUtilityClasses$$(props);
24847
25284
  const [value, setValueState] = useControlled({
24848
25285
  controlled: valueProp,
24849
25286
  default: defaultValue,
@@ -25605,7 +26042,7 @@ function getBackdropUtilityClass(slot) {
25605
26042
  return generateUtilityClass("MuiBackdrop", slot);
25606
26043
  }
25607
26044
  generateUtilityClasses("MuiBackdrop", ["root", "invisible"]);
25608
- const useUtilityClasses$$ = (ownerState) => {
26045
+ const useUtilityClasses$_ = (ownerState) => {
25609
26046
  const {
25610
26047
  classes: classes2,
25611
26048
  invisible
@@ -25668,7 +26105,7 @@ const Backdrop = /* @__PURE__ */ React.forwardRef(function Backdrop2(inProps, re
25668
26105
  component,
25669
26106
  invisible
25670
26107
  };
25671
- const classes2 = useUtilityClasses$$(ownerState);
26108
+ const classes2 = useUtilityClasses$_(ownerState);
25672
26109
  const backwardCompatibleSlots = {
25673
26110
  transition: TransitionComponentProp,
25674
26111
  root: components.Root,
@@ -25967,7 +26404,7 @@ function getModalUtilityClass(slot) {
25967
26404
  return generateUtilityClass("MuiModal", slot);
25968
26405
  }
25969
26406
  generateUtilityClasses("MuiModal", ["root", "hidden", "backdrop"]);
25970
- const useUtilityClasses$_ = (ownerState) => {
26407
+ const useUtilityClasses$Z = (ownerState) => {
25971
26408
  const {
25972
26409
  open,
25973
26410
  exited,
@@ -26074,7 +26511,7 @@ const Modal = /* @__PURE__ */ React.forwardRef(function Modal2(inProps, ref) {
26074
26511
  ...propsWithDefaults,
26075
26512
  exited
26076
26513
  };
26077
- const classes2 = useUtilityClasses$_(ownerState);
26514
+ const classes2 = useUtilityClasses$Z(ownerState);
26078
26515
  const childProps = {};
26079
26516
  if (children.props.tabIndex === void 0) {
26080
26517
  childProps.tabIndex = "-1";
@@ -26354,7 +26791,7 @@ function getTransformOriginValue(transformOrigin2) {
26354
26791
  function resolveAnchorEl(anchorEl) {
26355
26792
  return typeof anchorEl === "function" ? anchorEl() : anchorEl;
26356
26793
  }
26357
- const useUtilityClasses$Z = (ownerState) => {
26794
+ const useUtilityClasses$Y = (ownerState) => {
26358
26795
  const {
26359
26796
  classes: classes2
26360
26797
  } = ownerState;
@@ -26432,7 +26869,7 @@ const Popover = /* @__PURE__ */ React.forwardRef(function Popover2(inProps, ref)
26432
26869
  transitionDuration: transitionDurationProp,
26433
26870
  TransitionProps
26434
26871
  };
26435
- const classes2 = useUtilityClasses$Z(ownerState);
26872
+ const classes2 = useUtilityClasses$Y(ownerState);
26436
26873
  const getAnchorOffset = React.useCallback(() => {
26437
26874
  if (anchorReference === "anchorPosition") {
26438
26875
  {
@@ -26871,7 +27308,7 @@ const LTR_ORIGIN = {
26871
27308
  vertical: "top",
26872
27309
  horizontal: "left"
26873
27310
  };
26874
- const useUtilityClasses$Y = (ownerState) => {
27311
+ const useUtilityClasses$X = (ownerState) => {
26875
27312
  const {
26876
27313
  classes: classes2
26877
27314
  } = ownerState;
@@ -26942,7 +27379,7 @@ const Menu = /* @__PURE__ */ React.forwardRef(function Menu2(inProps, ref) {
26942
27379
  TransitionProps,
26943
27380
  variant
26944
27381
  };
26945
- const classes2 = useUtilityClasses$Y(ownerState);
27382
+ const classes2 = useUtilityClasses$X(ownerState);
26946
27383
  const autoFocusItem = autoFocus && !disableAutoFocusItem && open;
26947
27384
  const menuListActionsRef = React.useRef(null);
26948
27385
  const handleEntering = (element, isAppearing) => {
@@ -27247,7 +27684,7 @@ function areEqualValues(a, b) {
27247
27684
  function isEmpty(display) {
27248
27685
  return display == null || typeof display === "string" && !display.trim();
27249
27686
  }
27250
- const useUtilityClasses$X = (ownerState) => {
27687
+ const useUtilityClasses$W = (ownerState) => {
27251
27688
  const {
27252
27689
  classes: classes2,
27253
27690
  variant,
@@ -27567,7 +28004,7 @@ const SelectInput = /* @__PURE__ */ React.forwardRef(function SelectInput2(props
27567
28004
  open,
27568
28005
  error
27569
28006
  };
27570
- const classes2 = useUtilityClasses$X(ownerState);
28007
+ const classes2 = useUtilityClasses$W(ownerState);
27571
28008
  const paperProps = {
27572
28009
  ...MenuProps.PaperProps,
27573
28010
  ...(_a2 = MenuProps.slotProps) == null ? void 0 : _a2.paper
@@ -27806,7 +28243,7 @@ SelectInput.propTypes = {
27806
28243
  */
27807
28244
  variant: PropTypes.oneOf(["standard", "outlined", "filled"])
27808
28245
  };
27809
- const useUtilityClasses$W = (ownerState) => {
28246
+ const useUtilityClasses$V = (ownerState) => {
27810
28247
  const {
27811
28248
  classes: classes2,
27812
28249
  disableUnderline,
@@ -28088,7 +28525,7 @@ const FilledInput = /* @__PURE__ */ React.forwardRef(function FilledInput2(inPro
28088
28525
  multiline,
28089
28526
  type
28090
28527
  };
28091
- const classes2 = useUtilityClasses$W(props);
28528
+ const classes2 = useUtilityClasses$V(props);
28092
28529
  const filledInputComponentsProps = {
28093
28530
  root: {
28094
28531
  ownerState
@@ -28452,7 +28889,7 @@ NotchedOutline.propTypes = {
28452
28889
  */
28453
28890
  style: PropTypes.object
28454
28891
  };
28455
- const useUtilityClasses$V = (ownerState) => {
28892
+ const useUtilityClasses$U = (ownerState) => {
28456
28893
  const {
28457
28894
  classes: classes2
28458
28895
  } = ownerState;
@@ -28630,7 +29067,7 @@ const OutlinedInput = /* @__PURE__ */ React.forwardRef(function OutlinedInput2(i
28630
29067
  type = "text",
28631
29068
  ...other
28632
29069
  } = props;
28633
- const classes2 = useUtilityClasses$V(props);
29070
+ const classes2 = useUtilityClasses$U(props);
28634
29071
  const muiFormControl = useFormControl();
28635
29072
  const fcs = formControlState({
28636
29073
  props,
@@ -28862,7 +29299,7 @@ OutlinedInput.propTypes = {
28862
29299
  value: PropTypes.any
28863
29300
  };
28864
29301
  OutlinedInput.muiName = "Input";
28865
- const useUtilityClasses$U = (ownerState) => {
29302
+ const useUtilityClasses$T = (ownerState) => {
28866
29303
  const {
28867
29304
  classes: classes2
28868
29305
  } = ownerState;
@@ -28925,7 +29362,7 @@ const Select = /* @__PURE__ */ React.forwardRef(function Select2(inProps, ref) {
28925
29362
  variant,
28926
29363
  classes: classesProp
28927
29364
  };
28928
- const classes2 = useUtilityClasses$U(ownerState);
29365
+ const classes2 = useUtilityClasses$T(ownerState);
28929
29366
  const {
28930
29367
  root: root2,
28931
29368
  ...restOfClasses
@@ -29150,7 +29587,7 @@ function getStepUtilityClass(slot) {
29150
29587
  return generateUtilityClass("MuiStep", slot);
29151
29588
  }
29152
29589
  generateUtilityClasses("MuiStep", ["root", "horizontal", "vertical", "alternativeLabel", "completed"]);
29153
- const useUtilityClasses$T = (ownerState) => {
29590
+ const useUtilityClasses$S = (ownerState) => {
29154
29591
  const {
29155
29592
  classes: classes2,
29156
29593
  orientation,
@@ -29241,7 +29678,7 @@ const Step = /* @__PURE__ */ React.forwardRef(function Step2(inProps, ref) {
29241
29678
  expanded,
29242
29679
  component
29243
29680
  };
29244
- const classes2 = useUtilityClasses$T(ownerState);
29681
+ const classes2 = useUtilityClasses$S(ownerState);
29245
29682
  const newChildren = /* @__PURE__ */ jsxRuntimeExports.jsxs(StepRoot, {
29246
29683
  as: component,
29247
29684
  className: clsx$1(classes2.root, className),
@@ -29323,7 +29760,7 @@ function getStepIconUtilityClass(slot) {
29323
29760
  }
29324
29761
  const stepIconClasses = generateUtilityClasses("MuiStepIcon", ["root", "active", "completed", "error", "text"]);
29325
29762
  var _circle;
29326
- const useUtilityClasses$S = (ownerState) => {
29763
+ const useUtilityClasses$R = (ownerState) => {
29327
29764
  const {
29328
29765
  classes: classes2,
29329
29766
  active,
@@ -29386,7 +29823,7 @@ const StepIcon = /* @__PURE__ */ React.forwardRef(function StepIcon2(inProps, re
29386
29823
  completed,
29387
29824
  error
29388
29825
  };
29389
- const classes2 = useUtilityClasses$S(ownerState);
29826
+ const classes2 = useUtilityClasses$R(ownerState);
29390
29827
  if (typeof icon === "number" || typeof icon === "string") {
29391
29828
  const className = clsx$1(classNameProp, classes2.root);
29392
29829
  if (error) {
@@ -29470,7 +29907,7 @@ function getStepLabelUtilityClass(slot) {
29470
29907
  return generateUtilityClass("MuiStepLabel", slot);
29471
29908
  }
29472
29909
  const stepLabelClasses = generateUtilityClasses("MuiStepLabel", ["root", "horizontal", "vertical", "label", "active", "completed", "error", "disabled", "iconContainer", "alternativeLabel", "labelContainer"]);
29473
- const useUtilityClasses$R = (ownerState) => {
29910
+ const useUtilityClasses$Q = (ownerState) => {
29474
29911
  const {
29475
29912
  classes: classes2,
29476
29913
  orientation,
@@ -29607,7 +30044,7 @@ const StepLabel = /* @__PURE__ */ React.forwardRef(function StepLabel2(inProps,
29607
30044
  error,
29608
30045
  orientation
29609
30046
  };
29610
- const classes2 = useUtilityClasses$R(ownerState);
30047
+ const classes2 = useUtilityClasses$Q(ownerState);
29611
30048
  const externalForwardedProps = {
29612
30049
  slots,
29613
30050
  slotProps: {
@@ -29739,7 +30176,7 @@ function getStepConnectorUtilityClass(slot) {
29739
30176
  return generateUtilityClass("MuiStepConnector", slot);
29740
30177
  }
29741
30178
  generateUtilityClasses("MuiStepConnector", ["root", "horizontal", "vertical", "alternativeLabel", "active", "completed", "disabled", "line", "lineHorizontal", "lineVertical"]);
29742
- const useUtilityClasses$Q = (ownerState) => {
30179
+ const useUtilityClasses$P = (ownerState) => {
29743
30180
  const {
29744
30181
  classes: classes2,
29745
30182
  orientation,
@@ -29847,7 +30284,7 @@ const StepConnector = /* @__PURE__ */ React.forwardRef(function StepConnector2(i
29847
30284
  completed,
29848
30285
  disabled
29849
30286
  };
29850
- const classes2 = useUtilityClasses$Q(ownerState);
30287
+ const classes2 = useUtilityClasses$P(ownerState);
29851
30288
  return /* @__PURE__ */ jsxRuntimeExports.jsx(StepConnectorRoot, {
29852
30289
  className: clsx$1(classes2.root, className),
29853
30290
  ref,
@@ -29877,7 +30314,7 @@ StepConnector.propTypes = {
29877
30314
  */
29878
30315
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
29879
30316
  };
29880
- const useUtilityClasses$P = (ownerState) => {
30317
+ const useUtilityClasses$O = (ownerState) => {
29881
30318
  const {
29882
30319
  orientation,
29883
30320
  nonLinear,
@@ -29948,7 +30385,7 @@ const Stepper = /* @__PURE__ */ React.forwardRef(function Stepper2(inProps, ref)
29948
30385
  orientation,
29949
30386
  component
29950
30387
  };
29951
- const classes2 = useUtilityClasses$P(ownerState);
30388
+ const classes2 = useUtilityClasses$O(ownerState);
29952
30389
  const childrenArray = React.Children.toArray(children).filter(Boolean);
29953
30390
  const steps2 = childrenArray.map((step, index) => {
29954
30391
  return /* @__PURE__ */ React.cloneElement(step, {
@@ -30034,7 +30471,7 @@ function getSwitchUtilityClass(slot) {
30034
30471
  return generateUtilityClass("MuiSwitch", slot);
30035
30472
  }
30036
30473
  const switchClasses = generateUtilityClasses("MuiSwitch", ["root", "edgeStart", "edgeEnd", "switchBase", "colorPrimary", "colorSecondary", "sizeSmall", "sizeMedium", "checked", "disabled", "input", "thumb", "track"]);
30037
- const useUtilityClasses$O = (ownerState) => {
30474
+ const useUtilityClasses$N = (ownerState) => {
30038
30475
  const {
30039
30476
  classes: classes2,
30040
30477
  edge,
@@ -30238,7 +30675,7 @@ const Switch = /* @__PURE__ */ React.forwardRef(function Switch2(inProps, ref) {
30238
30675
  edge,
30239
30676
  size: size2
30240
30677
  };
30241
- const classes2 = useUtilityClasses$O(ownerState);
30678
+ const classes2 = useUtilityClasses$N(ownerState);
30242
30679
  const externalForwardedProps = {
30243
30680
  slots,
30244
30681
  slotProps
@@ -30431,7 +30868,7 @@ function getTableCellUtilityClass(slot) {
30431
30868
  return generateUtilityClass("MuiTableCell", slot);
30432
30869
  }
30433
30870
  const tableCellClasses = generateUtilityClasses("MuiTableCell", ["root", "head", "body", "footer", "sizeSmall", "sizeMedium", "paddingCheckbox", "paddingNone", "alignLeft", "alignCenter", "alignRight", "alignJustify", "stickyHeader"]);
30434
- const useUtilityClasses$N = (ownerState) => {
30871
+ const useUtilityClasses$M = (ownerState) => {
30435
30872
  const {
30436
30873
  classes: classes2,
30437
30874
  variant,
@@ -30605,7 +31042,7 @@ const TableCell = /* @__PURE__ */ React.forwardRef(function TableCell2(inProps,
30605
31042
  stickyHeader: variant === "head" && table && table.stickyHeader,
30606
31043
  variant
30607
31044
  };
30608
- const classes2 = useUtilityClasses$N(ownerState);
31045
+ const classes2 = useUtilityClasses$M(ownerState);
30609
31046
  let ariaSort = null;
30610
31047
  if (sortDirection) {
30611
31048
  ariaSort = sortDirection === "asc" ? "ascending" : "descending";
@@ -30693,7 +31130,7 @@ const variantComponent = {
30693
31130
  filled: FilledInput,
30694
31131
  outlined: OutlinedInput
30695
31132
  };
30696
- const useUtilityClasses$M = (ownerState) => {
31133
+ const useUtilityClasses$L = (ownerState) => {
30697
31134
  const {
30698
31135
  classes: classes2
30699
31136
  } = ownerState;
@@ -30760,7 +31197,7 @@ const TextField = /* @__PURE__ */ React.forwardRef(function TextField2(inProps,
30760
31197
  select,
30761
31198
  variant
30762
31199
  };
30763
- const classes2 = useUtilityClasses$M(ownerState);
31200
+ const classes2 = useUtilityClasses$L(ownerState);
30764
31201
  {
30765
31202
  if (select && !children) {
30766
31203
  console.error("MUI: `children` must be passed when using the `TextField` component with `select`.");
@@ -31096,7 +31533,7 @@ const tooltipClasses = generateUtilityClasses("MuiTooltip", ["popper", "popperIn
31096
31533
  function round(value) {
31097
31534
  return Math.round(value * 1e5) / 1e5;
31098
31535
  }
31099
- const useUtilityClasses$L = (ownerState) => {
31536
+ const useUtilityClasses$K = (ownerState) => {
31100
31537
  const {
31101
31538
  classes: classes2,
31102
31539
  disableInteractive,
@@ -31659,7 +32096,7 @@ const Tooltip = /* @__PURE__ */ React.forwardRef(function Tooltip2(inProps, ref)
31659
32096
  modifiers: tooltipModifiers
31660
32097
  };
31661
32098
  }, [arrowRef, PopperProps.popperOptions, resolvedPopperProps == null ? void 0 : resolvedPopperProps.popperOptions]);
31662
- const classes2 = useUtilityClasses$L(ownerState);
32099
+ const classes2 = useUtilityClasses$K(ownerState);
31663
32100
  const resolvedTransitionProps = typeof slotProps.transition === "function" ? slotProps.transition(ownerState) : slotProps.transition;
31664
32101
  const externalForwardedProps = {
31665
32102
  slots: {
@@ -31931,6 +32368,183 @@ Tooltip.propTypes = {
31931
32368
  */
31932
32369
  TransitionProps: PropTypes.object
31933
32370
  };
32371
+ function getInputAdornmentUtilityClass(slot) {
32372
+ return generateUtilityClass("MuiInputAdornment", slot);
32373
+ }
32374
+ const inputAdornmentClasses = generateUtilityClasses("MuiInputAdornment", ["root", "filled", "standard", "outlined", "positionStart", "positionEnd", "disablePointerEvents", "hiddenLabel", "sizeSmall"]);
32375
+ var _span;
32376
+ const overridesResolver = (props, styles2) => {
32377
+ const {
32378
+ ownerState
32379
+ } = props;
32380
+ return [styles2.root, styles2[`position${capitalize(ownerState.position)}`], ownerState.disablePointerEvents === true && styles2.disablePointerEvents, styles2[ownerState.variant]];
32381
+ };
32382
+ const useUtilityClasses$J = (ownerState) => {
32383
+ const {
32384
+ classes: classes2,
32385
+ disablePointerEvents,
32386
+ hiddenLabel,
32387
+ position: position2,
32388
+ size: size2,
32389
+ variant
32390
+ } = ownerState;
32391
+ const slots = {
32392
+ root: ["root", disablePointerEvents && "disablePointerEvents", position2 && `position${capitalize(position2)}`, variant, hiddenLabel && "hiddenLabel", size2 && `size${capitalize(size2)}`]
32393
+ };
32394
+ return composeClasses(slots, getInputAdornmentUtilityClass, classes2);
32395
+ };
32396
+ const InputAdornmentRoot = styled("div", {
32397
+ name: "MuiInputAdornment",
32398
+ slot: "Root",
32399
+ overridesResolver
32400
+ })(memoTheme(({
32401
+ theme
32402
+ }) => ({
32403
+ display: "flex",
32404
+ maxHeight: "2em",
32405
+ alignItems: "center",
32406
+ whiteSpace: "nowrap",
32407
+ color: (theme.vars || theme).palette.action.active,
32408
+ variants: [{
32409
+ props: {
32410
+ variant: "filled"
32411
+ },
32412
+ style: {
32413
+ [`&.${inputAdornmentClasses.positionStart}&:not(.${inputAdornmentClasses.hiddenLabel})`]: {
32414
+ marginTop: 16
32415
+ }
32416
+ }
32417
+ }, {
32418
+ props: {
32419
+ position: "start"
32420
+ },
32421
+ style: {
32422
+ marginRight: 8
32423
+ }
32424
+ }, {
32425
+ props: {
32426
+ position: "end"
32427
+ },
32428
+ style: {
32429
+ marginLeft: 8
32430
+ }
32431
+ }, {
32432
+ props: {
32433
+ disablePointerEvents: true
32434
+ },
32435
+ style: {
32436
+ pointerEvents: "none"
32437
+ }
32438
+ }]
32439
+ })));
32440
+ const InputAdornment$1 = /* @__PURE__ */ React.forwardRef(function InputAdornment2(inProps, ref) {
32441
+ const props = useDefaultProps({
32442
+ props: inProps,
32443
+ name: "MuiInputAdornment"
32444
+ });
32445
+ const {
32446
+ children,
32447
+ className,
32448
+ component = "div",
32449
+ disablePointerEvents = false,
32450
+ disableTypography = false,
32451
+ position: position2,
32452
+ variant: variantProp,
32453
+ ...other
32454
+ } = props;
32455
+ const muiFormControl = useFormControl() || {};
32456
+ let variant = variantProp;
32457
+ if (variantProp && muiFormControl.variant) {
32458
+ {
32459
+ if (variantProp === muiFormControl.variant) {
32460
+ console.error("MUI: The `InputAdornment` variant infers the variant prop you do not have to provide one.");
32461
+ }
32462
+ }
32463
+ }
32464
+ if (muiFormControl && !variant) {
32465
+ variant = muiFormControl.variant;
32466
+ }
32467
+ const ownerState = {
32468
+ ...props,
32469
+ hiddenLabel: muiFormControl.hiddenLabel,
32470
+ size: muiFormControl.size,
32471
+ disablePointerEvents,
32472
+ position: position2,
32473
+ variant
32474
+ };
32475
+ const classes2 = useUtilityClasses$J(ownerState);
32476
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(FormControlContext.Provider, {
32477
+ value: null,
32478
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx(InputAdornmentRoot, {
32479
+ as: component,
32480
+ ownerState,
32481
+ className: clsx$1(classes2.root, className),
32482
+ ref,
32483
+ ...other,
32484
+ children: typeof children === "string" && !disableTypography ? /* @__PURE__ */ jsxRuntimeExports.jsx(Typography, {
32485
+ color: "textSecondary",
32486
+ children
32487
+ }) : /* @__PURE__ */ jsxRuntimeExports.jsxs(React.Fragment, {
32488
+ children: [position2 === "start" ? (
32489
+ /* notranslate needed while Google Translate will not fix zero-width space issue */
32490
+ _span || (_span = /* @__PURE__ */ jsxRuntimeExports.jsx("span", {
32491
+ className: "notranslate",
32492
+ "aria-hidden": true,
32493
+ children: "​"
32494
+ }))
32495
+ ) : null, children]
32496
+ })
32497
+ })
32498
+ });
32499
+ });
32500
+ InputAdornment$1.propTypes = {
32501
+ // ┌────────────────────────────── Warning ──────────────────────────────┐
32502
+ // │ These PropTypes are generated from the TypeScript type definitions. │
32503
+ // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
32504
+ // └─────────────────────────────────────────────────────────────────────┘
32505
+ /**
32506
+ * The content of the component, normally an `IconButton` or string.
32507
+ */
32508
+ children: PropTypes.node,
32509
+ /**
32510
+ * Override or extend the styles applied to the component.
32511
+ */
32512
+ classes: PropTypes.object,
32513
+ /**
32514
+ * @ignore
32515
+ */
32516
+ className: PropTypes.string,
32517
+ /**
32518
+ * The component used for the root node.
32519
+ * Either a string to use a HTML element or a component.
32520
+ */
32521
+ component: PropTypes.elementType,
32522
+ /**
32523
+ * Disable pointer events on the root.
32524
+ * This allows for the content of the adornment to focus the `input` on click.
32525
+ * @default false
32526
+ */
32527
+ disablePointerEvents: PropTypes.bool,
32528
+ /**
32529
+ * If children is a string then disable wrapping in a Typography component.
32530
+ * @default false
32531
+ */
32532
+ disableTypography: PropTypes.bool,
32533
+ /**
32534
+ * The position this adornment should appear relative to the `Input`.
32535
+ */
32536
+ position: PropTypes.oneOf(["end", "start"]).isRequired,
32537
+ /**
32538
+ * The system prop that allows defining system overrides as well as additional CSS styles.
32539
+ */
32540
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
32541
+ /**
32542
+ * The variant to use.
32543
+ * Note: If you are using the `TextField` component or the `FormControl` component
32544
+ * you do not have to set this manually.
32545
+ */
32546
+ variant: PropTypes.oneOf(["filled", "outlined", "standard"])
32547
+ };
31934
32548
  const AddIcon = createSvgIcon(/* @__PURE__ */ jsxRuntimeExports.jsx("path", {
31935
32549
  d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
31936
32550
  }), "Add");
@@ -33280,7 +33894,7 @@ function wrap(input) {
33280
33894
  return result;
33281
33895
  }
33282
33896
  const _excluded$X = ["id", "value", "formattedValue", "api", "field", "row", "rowNode", "colDef", "cellMode", "isEditable", "tabIndex", "hasFocus", "isValidating", "debounceMs", "isProcessingProps", "onValueChange", "slotProps"];
33283
- const useUtilityClasses$K = (ownerState) => {
33897
+ const useUtilityClasses$I = (ownerState) => {
33284
33898
  const {
33285
33899
  classes: classes2
33286
33900
  } = ownerState;
@@ -33316,7 +33930,7 @@ const GridEditInputCell = forwardRef((props, ref) => {
33316
33930
  const apiRef = useGridApiContext();
33317
33931
  const inputRef = React.useRef(null);
33318
33932
  const [valueState, setValueState] = React.useState(value);
33319
- const classes2 = useUtilityClasses$K(rootProps);
33933
+ const classes2 = useUtilityClasses$I(rootProps);
33320
33934
  const handleChange = React.useCallback(async (event) => {
33321
33935
  const newValue = event.target.value;
33322
33936
  if (onValueChange) {
@@ -34483,7 +35097,7 @@ function variablesToString(variables) {
34483
35097
  return output;
34484
35098
  }
34485
35099
  const _excluded$V = ["open", "target", "onClose", "children", "position", "className", "onExited"];
34486
- const useUtilityClasses$J = (ownerState) => {
35100
+ const useUtilityClasses$H = (ownerState) => {
34487
35101
  const {
34488
35102
  classes: classes2
34489
35103
  } = ownerState;
@@ -34514,7 +35128,7 @@ function GridMenu(props) {
34514
35128
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$V);
34515
35129
  const apiRef = useGridApiContext();
34516
35130
  const rootProps = useGridRootProps();
34517
- const classes2 = useUtilityClasses$J(rootProps);
35131
+ const classes2 = useUtilityClasses$H(rootProps);
34518
35132
  const variablesClass = useCSSVariablesClass();
34519
35133
  const savedFocusRef = React.useRef(null);
34520
35134
  useEnhancedEffect$1(() => {
@@ -35084,7 +35698,7 @@ let PinnedColumnPosition = /* @__PURE__ */ function(PinnedColumnPosition2) {
35084
35698
  return PinnedColumnPosition2;
35085
35699
  }({});
35086
35700
  const _excluded$T = ["id", "value", "formattedValue", "api", "field", "row", "rowNode", "colDef", "cellMode", "isEditable", "hasFocus", "tabIndex", "hideDescendantCount"];
35087
- const useUtilityClasses$I = (ownerState) => {
35701
+ const useUtilityClasses$G = (ownerState) => {
35088
35702
  const {
35089
35703
  classes: classes2
35090
35704
  } = ownerState;
@@ -35103,7 +35717,7 @@ function GridBooleanCellRaw(props) {
35103
35717
  const ownerState = {
35104
35718
  classes: rootProps.classes
35105
35719
  };
35106
- const classes2 = useUtilityClasses$I(ownerState);
35720
+ const classes2 = useUtilityClasses$G(ownerState);
35107
35721
  const maxDepth = useGridSelector(apiRef, gridRowMaximumTreeDepthSelector);
35108
35722
  const isServerSideRowGroupingRow = (
35109
35723
  // @ts-expect-error - Access tree data prop
@@ -35194,7 +35808,7 @@ const renderBooleanCell = (params) => {
35194
35808
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridBooleanCell, _extends$2({}, params));
35195
35809
  };
35196
35810
  const _excluded$S = ["id", "value", "formattedValue", "api", "field", "row", "rowNode", "colDef", "cellMode", "isEditable", "tabIndex", "className", "hasFocus", "isValidating", "isProcessingProps", "error", "onValueChange"];
35197
- const useUtilityClasses$H = (ownerState) => {
35811
+ const useUtilityClasses$F = (ownerState) => {
35198
35812
  const {
35199
35813
  classes: classes2
35200
35814
  } = ownerState;
@@ -35221,7 +35835,7 @@ function GridEditBooleanCell(props) {
35221
35835
  const ownerState = {
35222
35836
  classes: rootProps.classes
35223
35837
  };
35224
- const classes2 = useUtilityClasses$H(ownerState);
35838
+ const classes2 = useUtilityClasses$F(ownerState);
35225
35839
  const handleChange = React.useCallback(async (event) => {
35226
35840
  const newValue = event.target.checked;
35227
35841
  if (onValueChange) {
@@ -35779,7 +36393,7 @@ const findRowsToDeselect = (apiRef, tree, deselectedRow, autoSelectDescendants,
35779
36393
  }
35780
36394
  };
35781
36395
  const _excluded$Q = ["field", "id", "formattedValue", "row", "rowNode", "colDef", "isEditable", "cellMode", "hasFocus", "tabIndex", "api"];
35782
- const useUtilityClasses$G = (ownerState) => {
36396
+ const useUtilityClasses$E = (ownerState) => {
35783
36397
  const {
35784
36398
  classes: classes2
35785
36399
  } = ownerState;
@@ -35801,7 +36415,7 @@ const GridCellCheckboxForwardRef = forwardRef(function GridCellCheckboxRenderer2
35801
36415
  const ownerState = {
35802
36416
  classes: rootProps.classes
35803
36417
  };
35804
- const classes2 = useUtilityClasses$G(ownerState);
36418
+ const classes2 = useUtilityClasses$E(ownerState);
35805
36419
  const handleChange = (event) => {
35806
36420
  const params = {
35807
36421
  value: event.target.checked,
@@ -36038,7 +36652,7 @@ const gridVisibleRowsSelector = createSelectorMemoized(gridPaginationEnabledClie
36038
36652
  };
36039
36653
  });
36040
36654
  const _excluded$P = ["field", "colDef"];
36041
- const useUtilityClasses$F = (ownerState) => {
36655
+ const useUtilityClasses$D = (ownerState) => {
36042
36656
  const {
36043
36657
  classes: classes2
36044
36658
  } = ownerState;
@@ -36056,7 +36670,7 @@ const GridHeaderCheckbox = forwardRef(function GridHeaderCheckbox2(props, ref) {
36056
36670
  const ownerState = {
36057
36671
  classes: rootProps.classes
36058
36672
  };
36059
- const classes2 = useUtilityClasses$F(ownerState);
36673
+ const classes2 = useUtilityClasses$D(ownerState);
36060
36674
  const tabIndexState = useGridSelector(apiRef, gridTabIndexColumnHeaderSelector);
36061
36675
  const selection = useGridSelector(apiRef, gridRowSelectionStateSelector);
36062
36676
  const visibleRowIds = useGridSelector(apiRef, gridExpandedSortedRowIdsSelector);
@@ -36433,7 +37047,7 @@ const _excluded$N = ["id", "value", "formattedValue", "api", "field", "row", "ro
36433
37047
  const StyledInputBase = styled(NotRendered)({
36434
37048
  fontSize: "inherit"
36435
37049
  });
36436
- const useUtilityClasses$E = (ownerState) => {
37050
+ const useUtilityClasses$C = (ownerState) => {
36437
37051
  const {
36438
37052
  classes: classes2
36439
37053
  } = ownerState;
@@ -36482,7 +37096,7 @@ function GridEditDateCell(props) {
36482
37096
  const ownerState = {
36483
37097
  classes: rootProps.classes
36484
37098
  };
36485
- const classes2 = useUtilityClasses$E(ownerState);
37099
+ const classes2 = useUtilityClasses$C(ownerState);
36486
37100
  const parseValueToDate = React.useCallback((value) => {
36487
37101
  if (value === "") {
36488
37102
  return null;
@@ -37645,7 +38259,7 @@ function getTotalHeaderHeight(apiRef, props) {
37645
38259
  }
37646
38260
  const CLIFF = 1;
37647
38261
  const SLOP = 1.5;
37648
- const useUtilityClasses$D = (ownerState) => {
38262
+ const useUtilityClasses$B = (ownerState) => {
37649
38263
  const {
37650
38264
  scrollDirection,
37651
38265
  classes: classes2
@@ -37722,7 +38336,7 @@ function GridScrollAreaContent(props) {
37722
38336
  const ownerState = _extends$2({}, rootProps, {
37723
38337
  scrollDirection
37724
38338
  });
37725
- const classes2 = useUtilityClasses$D(ownerState);
38339
+ const classes2 = useUtilityClasses$B(ownerState);
37726
38340
  const totalHeaderHeight = getTotalHeaderHeight(apiRef, rootProps);
37727
38341
  const headerHeight = Math.floor(rootProps.columnHeaderHeight * densityFactor);
37728
38342
  const style2 = {
@@ -38700,7 +39314,7 @@ const GridOverlayWrapperInner = styled$1("div", {
38700
39314
  shouldForwardProp: (prop) => prop !== "overlayType" && prop !== "loadingOverlayVariant",
38701
39315
  overridesResolver: (props, styles2) => styles2.overlayWrapperInner
38702
39316
  })({});
38703
- const useUtilityClasses$C = (ownerState) => {
39317
+ const useUtilityClasses$A = (ownerState) => {
38704
39318
  const {
38705
39319
  classes: classes2
38706
39320
  } = ownerState;
@@ -38718,7 +39332,7 @@ function GridOverlayWrapper(props) {
38718
39332
  if (height2 === 0) {
38719
39333
  height2 = minimalContentHeight;
38720
39334
  }
38721
- const classes2 = useUtilityClasses$C(_extends$2({}, props, {
39335
+ const classes2 = useUtilityClasses$A(_extends$2({}, props, {
38722
39336
  classes: rootProps.classes
38723
39337
  }));
38724
39338
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridOverlayWrapperRoot, _extends$2({
@@ -38871,7 +39485,7 @@ const GridMainContainer = forwardRef((props, ref) => {
38871
39485
  }), props.children]
38872
39486
  }));
38873
39487
  });
38874
- const useUtilityClasses$B = () => {
39488
+ const useUtilityClasses$z = () => {
38875
39489
  const slots = {
38876
39490
  root: ["topContainer"]
38877
39491
  };
@@ -38883,13 +39497,13 @@ const Element$2 = styled$1("div")({
38883
39497
  top: 0
38884
39498
  });
38885
39499
  function GridTopContainer(props) {
38886
- const classes2 = useUtilityClasses$B();
39500
+ const classes2 = useUtilityClasses$z();
38887
39501
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Element$2, _extends$2({}, props, {
38888
39502
  className: clsx$1(classes2.root, gridClasses["container--top"]),
38889
39503
  role: "presentation"
38890
39504
  }));
38891
39505
  }
38892
- const useUtilityClasses$A = (props, overflowedContent) => {
39506
+ const useUtilityClasses$y = (props, overflowedContent) => {
38893
39507
  const {
38894
39508
  classes: classes2
38895
39509
  } = props;
@@ -38912,7 +39526,7 @@ const GridVirtualScrollerContent = forwardRef(function GridVirtualScrollerConten
38912
39526
  var _a2;
38913
39527
  const rootProps = useGridRootProps();
38914
39528
  const overflowedContent = !rootProps.autoHeight && ((_a2 = props.style) == null ? void 0 : _a2.minHeight) === "auto";
38915
- const classes2 = useUtilityClasses$A(rootProps, overflowedContent);
39529
+ const classes2 = useUtilityClasses$y(rootProps, overflowedContent);
38916
39530
  const ownerState = {
38917
39531
  classes: rootProps.classes,
38918
39532
  overflowedContent
@@ -38988,7 +39602,7 @@ function GridVirtualScrollerFiller({
38988
39602
  }
38989
39603
  const Memoized$2 = fastMemo(GridVirtualScrollerFiller);
38990
39604
  const _excluded$J = ["className"];
38991
- const useUtilityClasses$z = (ownerState) => {
39605
+ const useUtilityClasses$x = (ownerState) => {
38992
39606
  const {
38993
39607
  classes: classes2
38994
39608
  } = ownerState;
@@ -39013,7 +39627,7 @@ const GridVirtualScrollerRenderZone = forwardRef(function GridVirtualScrollerRen
39013
39627
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$J);
39014
39628
  const apiRef = useGridApiContext();
39015
39629
  const rootProps = useGridRootProps();
39016
- const classes2 = useUtilityClasses$z(rootProps);
39630
+ const classes2 = useUtilityClasses$x(rootProps);
39017
39631
  const offsetTop = useGridSelector(apiRef, () => {
39018
39632
  const renderContext = gridRenderContextSelector(apiRef);
39019
39633
  const rowsMeta = gridRowsMetaSelector(apiRef);
@@ -39109,7 +39723,7 @@ class GridGetRowsError extends Error {
39109
39723
  this.cause = options.cause;
39110
39724
  }
39111
39725
  }
39112
- const useUtilityClasses$y = (ownerState, position2) => {
39726
+ const useUtilityClasses$w = (ownerState, position2) => {
39113
39727
  const {
39114
39728
  classes: classes2
39115
39729
  } = ownerState;
@@ -39164,7 +39778,7 @@ const GridVirtualScrollbar = forwardRef(function GridVirtualScrollbar2(props, re
39164
39778
  const lastPosition = React.useRef(0);
39165
39779
  const scrollbarRef = React.useRef(null);
39166
39780
  const contentRef = React.useRef(null);
39167
- const classes2 = useUtilityClasses$y(rootProps, props.position);
39781
+ const classes2 = useUtilityClasses$w(rootProps, props.position);
39168
39782
  const dimensions = useGridSelector(apiRef, gridDimensionsSelector);
39169
39783
  const propertyDimension = props.position === "vertical" ? "height" : "width";
39170
39784
  const propertyScroll = props.position === "vertical" ? "scrollTop" : "scrollLeft";
@@ -39241,7 +39855,7 @@ const GridVirtualScrollbar = forwardRef(function GridVirtualScrollbar2(props, re
39241
39855
  })
39242
39856
  });
39243
39857
  });
39244
- const useUtilityClasses$x = (ownerState) => {
39858
+ const useUtilityClasses$v = (ownerState) => {
39245
39859
  const {
39246
39860
  classes: classes2,
39247
39861
  hasScrollX,
@@ -39300,7 +39914,7 @@ function GridVirtualScroller(props) {
39300
39914
  hasScrollX,
39301
39915
  hasPinnedRight
39302
39916
  }, overlaysProps);
39303
- const classes2 = useUtilityClasses$x(ownerState);
39917
+ const classes2 = useUtilityClasses$v(ownerState);
39304
39918
  const virtualScroller = useGridVirtualScroller();
39305
39919
  const {
39306
39920
  getContainerProps,
@@ -39445,7 +40059,7 @@ const _excluded$I = ["column", "row", "rowId", "rowNode", "align", "children", "
39445
40059
  [PinnedColumnPosition.NONE]: void 0,
39446
40060
  [PinnedColumnPosition.VIRTUAL]: void 0
39447
40061
  });
39448
- const useUtilityClasses$w = (ownerState) => {
40062
+ const useUtilityClasses$u = (ownerState) => {
39449
40063
  const {
39450
40064
  align,
39451
40065
  showLeftBorder,
@@ -39559,7 +40173,7 @@ const GridCell = forwardRef(function GridCell2(props, ref) {
39559
40173
  isSelected,
39560
40174
  isSelectionMode
39561
40175
  };
39562
- const classes2 = useUtilityClasses$w(ownerState);
40176
+ const classes2 = useUtilityClasses$u(ownerState);
39563
40177
  const publishMouseUp = React.useCallback((eventName) => (event) => {
39564
40178
  const params = apiRef.current.getCellParams(rowId, field || "");
39565
40179
  apiRef.current.publishEvent(eventName, params, event);
@@ -39726,7 +40340,7 @@ const CONTENT_WIDTH_RANGE_BY_TYPE = {
39726
40340
  dateTime: [60, 80],
39727
40341
  singleSelect: [40, 80]
39728
40342
  };
39729
- const useUtilityClasses$v = (ownerState) => {
40343
+ const useUtilityClasses$t = (ownerState) => {
39730
40344
  const {
39731
40345
  align,
39732
40346
  classes: classes2,
@@ -39755,7 +40369,7 @@ function GridSkeletonCell(props) {
39755
40369
  align,
39756
40370
  empty
39757
40371
  };
39758
- const classes2 = useUtilityClasses$v(ownerState);
40372
+ const classes2 = useUtilityClasses$t(ownerState);
39759
40373
  const skeletonProps = React.useMemo(() => {
39760
40374
  const isCircularContent = type === "boolean" || type === "actions";
39761
40375
  if (isCircularContent) {
@@ -40803,7 +41417,7 @@ function GridHeader() {
40803
41417
  });
40804
41418
  }
40805
41419
  const _excluded$G = ["className", "children"];
40806
- const useUtilityClasses$u = (ownerState, density) => {
41420
+ const useUtilityClasses$s = (ownerState, density) => {
40807
41421
  const {
40808
41422
  autoHeight,
40809
41423
  classes: classes2,
@@ -40831,7 +41445,7 @@ const GridRoot = forwardRef(function GridRoot2(props, ref) {
40831
41445
  }, [apiRef]);
40832
41446
  const handleRef = useForkRef$1(rootElementRef, ref, rootMountCallback);
40833
41447
  const ownerState = rootProps;
40834
- const classes2 = useUtilityClasses$u(ownerState, density);
41448
+ const classes2 = useUtilityClasses$s(ownerState, density);
40835
41449
  const cssVariables = useCSSVariablesContext();
40836
41450
  const isSSR2 = useIsSSR();
40837
41451
  if (isSSR2) {
@@ -40859,7 +41473,7 @@ GridRoot.propTypes = {
40859
41473
  };
40860
41474
  const MemoizedGridRoot = fastMemo(GridRoot);
40861
41475
  const _excluded$F = ["className"];
40862
- const useUtilityClasses$t = (ownerState) => {
41476
+ const useUtilityClasses$r = (ownerState) => {
40863
41477
  const {
40864
41478
  classes: classes2
40865
41479
  } = ownerState;
@@ -40884,7 +41498,7 @@ const GridFooterContainer = forwardRef(function GridFooterContainer2(props, ref)
40884
41498
  className
40885
41499
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$F);
40886
41500
  const rootProps = useGridRootProps();
40887
- const classes2 = useUtilityClasses$t(rootProps);
41501
+ const classes2 = useUtilityClasses$r(rootProps);
40888
41502
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridFooterContainerRoot, _extends$2({
40889
41503
  className: clsx$1(classes2.root, className),
40890
41504
  ownerState: rootProps
@@ -40900,7 +41514,7 @@ GridFooterContainer.propTypes = {
40900
41514
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
40901
41515
  };
40902
41516
  const _excluded$E = ["className"];
40903
- const useUtilityClasses$s = (ownerState) => {
41517
+ const useUtilityClasses$q = (ownerState) => {
40904
41518
  const {
40905
41519
  classes: classes2
40906
41520
  } = ownerState;
@@ -40928,7 +41542,7 @@ const GridOverlay = forwardRef(function GridOverlay2(props, ref) {
40928
41542
  className
40929
41543
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$E);
40930
41544
  const rootProps = useGridRootProps();
40931
- const classes2 = useUtilityClasses$s(rootProps);
41545
+ const classes2 = useUtilityClasses$q(rootProps);
40932
41546
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridOverlayRoot, _extends$2({
40933
41547
  className: clsx$1(classes2.root, className),
40934
41548
  ownerState: rootProps
@@ -40976,7 +41590,7 @@ function useToolbarContext() {
40976
41590
  return context;
40977
41591
  }
40978
41592
  const _excluded$D = ["render", "className"];
40979
- const useUtilityClasses$r = (ownerState) => {
41593
+ const useUtilityClasses$p = (ownerState) => {
40980
41594
  const {
40981
41595
  classes: classes2
40982
41596
  } = ownerState;
@@ -41005,7 +41619,7 @@ const Toolbar$1 = forwardRef(function Toolbar2(props, ref) {
41005
41619
  className
41006
41620
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$D);
41007
41621
  const rootProps = useGridRootProps();
41008
- const classes2 = useUtilityClasses$r(rootProps);
41622
+ const classes2 = useUtilityClasses$p(rootProps);
41009
41623
  const [focusableItemId, setFocusableItemId] = React.useState(null);
41010
41624
  const [items, setItems] = React.useState([]);
41011
41625
  const registerItem = React.useCallback((id, itemRef) => {
@@ -41204,7 +41818,7 @@ ToolbarButton.propTypes = {
41204
41818
  title: PropTypes.string,
41205
41819
  touchRippleRef: PropTypes.any
41206
41820
  };
41207
- const useUtilityClasses$q = (ownerState) => {
41821
+ const useUtilityClasses$o = (ownerState) => {
41208
41822
  const {
41209
41823
  classes: classes2,
41210
41824
  open
@@ -41229,7 +41843,7 @@ const ColumnHeaderMenuIcon = /* @__PURE__ */ React.memo((props) => {
41229
41843
  const ownerState = _extends$2({}, props, {
41230
41844
  classes: rootProps.classes
41231
41845
  });
41232
- const classes2 = useUtilityClasses$q(ownerState);
41846
+ const classes2 = useUtilityClasses$o(ownerState);
41233
41847
  const handleMenuIconClick = React.useCallback((event) => {
41234
41848
  event.preventDefault();
41235
41849
  event.stopPropagation();
@@ -41507,7 +42121,7 @@ function parseCellColIndex(col) {
41507
42121
  return Number(ariaColIndex) - 1;
41508
42122
  }
41509
42123
  const _excluded$B = ["className", "aria-label"];
41510
- const useUtilityClasses$p = (ownerState) => {
42124
+ const useUtilityClasses$n = (ownerState) => {
41511
42125
  const {
41512
42126
  classes: classes2
41513
42127
  } = ownerState;
@@ -41532,7 +42146,7 @@ const ColumnHeaderInnerTitle = forwardRef(function ColumnHeaderInnerTitle2(props
41532
42146
  className
41533
42147
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$B);
41534
42148
  const rootProps = useGridRootProps();
41535
- const classes2 = useUtilityClasses$p(rootProps);
42149
+ const classes2 = useUtilityClasses$n(rootProps);
41536
42150
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridColumnHeaderTitleRoot, _extends$2({
41537
42151
  className: clsx$1(classes2.root, className),
41538
42152
  ownerState: rootProps
@@ -41584,7 +42198,7 @@ var GridColumnHeaderSeparatorSides = /* @__PURE__ */ function(GridColumnHeaderSe
41584
42198
  GridColumnHeaderSeparatorSides2["Right"] = "right";
41585
42199
  return GridColumnHeaderSeparatorSides2;
41586
42200
  }(GridColumnHeaderSeparatorSides || {});
41587
- const useUtilityClasses$o = (ownerState) => {
42201
+ const useUtilityClasses$m = (ownerState) => {
41588
42202
  const {
41589
42203
  resizable,
41590
42204
  resizing,
@@ -41607,7 +42221,7 @@ function GridColumnHeaderSeparatorRaw(props) {
41607
42221
  side,
41608
42222
  classes: rootProps.classes
41609
42223
  });
41610
- const classes2 = useUtilityClasses$o(ownerState);
42224
+ const classes2 = useUtilityClasses$m(ownerState);
41611
42225
  const stopClick = React.useCallback((event) => {
41612
42226
  event.preventDefault();
41613
42227
  event.stopPropagation();
@@ -41719,7 +42333,7 @@ const GridGenericColumnHeaderItem = forwardRef(function GridGenericColumnHeaderI
41719
42333
  }, columnHeaderSeparatorProps)), columnMenu]
41720
42334
  }));
41721
42335
  });
41722
- const useUtilityClasses$n = (ownerState) => {
42336
+ const useUtilityClasses$l = (ownerState) => {
41723
42337
  const {
41724
42338
  colDef,
41725
42339
  classes: classes2,
@@ -41801,7 +42415,7 @@ function GridColumnHeaderItem(props) {
41801
42415
  showRightBorder,
41802
42416
  showLeftBorder
41803
42417
  });
41804
- const classes2 = useUtilityClasses$n(ownerState);
42418
+ const classes2 = useUtilityClasses$l(ownerState);
41805
42419
  const publish = React.useCallback((eventName) => (event) => {
41806
42420
  if (isEventTargetInPortal(event)) {
41807
42421
  return;
@@ -41948,7 +42562,7 @@ GridColumnHeaderItem.propTypes = {
41948
42562
  };
41949
42563
  const Memoized = fastMemo(GridColumnHeaderItem);
41950
42564
  const _excluded$y = ["className"];
41951
- const useUtilityClasses$m = (ownerState) => {
42565
+ const useUtilityClasses$k = (ownerState) => {
41952
42566
  const {
41953
42567
  classes: classes2
41954
42568
  } = ownerState;
@@ -41971,7 +42585,7 @@ const GridIconButtonContainer = forwardRef(function GridIconButtonContainer2(pro
41971
42585
  className
41972
42586
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$y);
41973
42587
  const rootProps = useGridRootProps();
41974
- const classes2 = useUtilityClasses$m(rootProps);
42588
+ const classes2 = useUtilityClasses$k(rootProps);
41975
42589
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridIconButtonContainerRoot, _extends$2({
41976
42590
  className: clsx$1(classes2.root, className),
41977
42591
  ownerState: rootProps
@@ -41980,7 +42594,7 @@ const GridIconButtonContainer = forwardRef(function GridIconButtonContainer2(pro
41980
42594
  }));
41981
42595
  });
41982
42596
  const _excluded$x = ["direction", "index", "sortingOrder", "disabled"];
41983
- const useUtilityClasses$l = (ownerState) => {
42597
+ const useUtilityClasses$j = (ownerState) => {
41984
42598
  const {
41985
42599
  classes: classes2
41986
42600
  } = ownerState;
@@ -42018,7 +42632,7 @@ function GridColumnHeaderSortIconRaw(props) {
42018
42632
  const ownerState = _extends$2({}, props, {
42019
42633
  classes: rootProps.classes
42020
42634
  });
42021
- const classes2 = useUtilityClasses$l(ownerState);
42635
+ const classes2 = useUtilityClasses$j(ownerState);
42022
42636
  const iconElement = getIcon(rootProps.slots, direction, classes2.icon, sortingOrder);
42023
42637
  if (!iconElement) {
42024
42638
  return null;
@@ -42053,7 +42667,7 @@ GridColumnHeaderSortIconRaw.propTypes = {
42053
42667
  index: PropTypes.number,
42054
42668
  sortingOrder: PropTypes.arrayOf(PropTypes.oneOf(["asc", "desc"])).isRequired
42055
42669
  };
42056
- const useUtilityClasses$k = (ownerState) => {
42670
+ const useUtilityClasses$i = (ownerState) => {
42057
42671
  const {
42058
42672
  classes: classes2
42059
42673
  } = ownerState;
@@ -42089,7 +42703,7 @@ function GridColumnHeaderFilterIconButton(props) {
42089
42703
  const ownerState = _extends$2({}, props, {
42090
42704
  classes: rootProps.classes
42091
42705
  });
42092
- const classes2 = useUtilityClasses$k(ownerState);
42706
+ const classes2 = useUtilityClasses$i(ownerState);
42093
42707
  const labelId = useId();
42094
42708
  const isOpen = useGridSelector(apiRef, gridPreferencePanelSelectorWithLabel, labelId);
42095
42709
  const panelId = useId();
@@ -42622,7 +43236,7 @@ GridColumnMenu.propTypes = {
42622
43236
  slots: PropTypes.object
42623
43237
  };
42624
43238
  const _excluded$t = ["className"];
42625
- const useUtilityClasses$j = (ownerState) => {
43239
+ const useUtilityClasses$h = (ownerState) => {
42626
43240
  const {
42627
43241
  classes: classes2
42628
43242
  } = ownerState;
@@ -42647,7 +43261,7 @@ const GridPanelWrapper = forwardRef(function GridPanelWrapper2(props, ref) {
42647
43261
  className
42648
43262
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$t);
42649
43263
  const rootProps = useGridRootProps();
42650
- const classes2 = useUtilityClasses$j(rootProps);
43264
+ const classes2 = useUtilityClasses$h(rootProps);
42651
43265
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridPanelWrapperRoot, _extends$2({
42652
43266
  tabIndex: -1,
42653
43267
  className: clsx$1(classes2.root, className),
@@ -42756,7 +43370,7 @@ GridPanel.propTypes = {
42756
43370
  target: PropTypes.any
42757
43371
  };
42758
43372
  const _excluded$r = ["className"];
42759
- const useUtilityClasses$i = (ownerState) => {
43373
+ const useUtilityClasses$g = (ownerState) => {
42760
43374
  const {
42761
43375
  classes: classes2
42762
43376
  } = ownerState;
@@ -42782,7 +43396,7 @@ function GridPanelContent(props) {
42782
43396
  className
42783
43397
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$r);
42784
43398
  const rootProps = useGridRootProps();
42785
- const classes2 = useUtilityClasses$i(rootProps);
43399
+ const classes2 = useUtilityClasses$g(rootProps);
42786
43400
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridPanelContentRoot, _extends$2({
42787
43401
  className: clsx$1(classes2.root, className),
42788
43402
  ownerState: rootProps
@@ -42796,7 +43410,7 @@ GridPanelContent.propTypes = {
42796
43410
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
42797
43411
  };
42798
43412
  const _excluded$q = ["className"];
42799
- const useUtilityClasses$h = (ownerState) => {
43413
+ const useUtilityClasses$f = (ownerState) => {
42800
43414
  const {
42801
43415
  classes: classes2
42802
43416
  } = ownerState;
@@ -42820,7 +43434,7 @@ function GridPanelFooter(props) {
42820
43434
  className
42821
43435
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$q);
42822
43436
  const rootProps = useGridRootProps();
42823
- const classes2 = useUtilityClasses$h(rootProps);
43437
+ const classes2 = useUtilityClasses$f(rootProps);
42824
43438
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridPanelFooterRoot, _extends$2({
42825
43439
  className: clsx$1(classes2.root, className),
42826
43440
  ownerState: rootProps
@@ -42834,7 +43448,7 @@ GridPanelFooter.propTypes = {
42834
43448
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
42835
43449
  };
42836
43450
  const _excluded$p = ["item", "hasMultipleFilters", "deleteFilter", "applyFilterChanges", "showMultiFilterOperators", "disableMultiFilterOperator", "applyMultiFilterOperatorChanges", "focusElementRef", "logicOperators", "columnsSort", "filterColumns", "deleteIconProps", "logicOperatorInputProps", "operatorInputProps", "columnInputProps", "valueInputProps", "readOnly", "children"], _excluded2$6 = ["InputComponentProps"];
42837
- const useUtilityClasses$g = (ownerState) => {
43451
+ const useUtilityClasses$e = (ownerState) => {
42838
43452
  const {
42839
43453
  classes: classes2
42840
43454
  } = ownerState;
@@ -42937,7 +43551,7 @@ const GridFilterForm = forwardRef(function GridFilterForm2(props, ref) {
42937
43551
  const operatorSelectId = useId();
42938
43552
  const operatorSelectLabelId = useId();
42939
43553
  const rootProps = useGridRootProps();
42940
- const classes2 = useUtilityClasses$g(rootProps);
43554
+ const classes2 = useUtilityClasses$e(rootProps);
42941
43555
  const valueRef = React.useRef(null);
42942
43556
  const filterSelectorRef = React.useRef(null);
42943
43557
  const multiFilterOperator = filterModel.logicOperator ?? GridLogicOperator.And;
@@ -43567,7 +44181,7 @@ function GridShadowScrollArea(props) {
43567
44181
  children
43568
44182
  }));
43569
44183
  }
43570
- const useUtilityClasses$f = (ownerState) => {
44184
+ const useUtilityClasses$d = (ownerState) => {
43571
44185
  const {
43572
44186
  classes: classes2
43573
44187
  } = ownerState;
@@ -43590,7 +44204,7 @@ function GridColumnsManagement(props) {
43590
44204
  const columnVisibilityModel = useGridSelector(apiRef, gridColumnVisibilityModelSelector);
43591
44205
  const rootProps = useGridRootProps();
43592
44206
  const [searchValue, setSearchValue] = React.useState("");
43593
- const classes2 = useUtilityClasses$f(rootProps);
44207
+ const classes2 = useUtilityClasses$d(rootProps);
43594
44208
  const {
43595
44209
  sort,
43596
44210
  searchPredicate = defaultSearchPredicate,
@@ -44504,7 +45118,7 @@ QuickFilterTrigger.propTypes = {
44504
45118
  touchRippleRef: PropTypes.any
44505
45119
  };
44506
45120
  const _excluded$h = ["quickFilterParser", "quickFilterFormatter", "debounceMs", "className", "slotProps"], _excluded2$4 = ["ref", "slotProps"];
44507
- const useUtilityClasses$e = (ownerState) => {
45121
+ const useUtilityClasses$c = (ownerState) => {
44508
45122
  const {
44509
45123
  classes: classes2
44510
45124
  } = ownerState;
@@ -44557,7 +45171,7 @@ function GridToolbarQuickFilter(props) {
44557
45171
  classes: rootProps.classes,
44558
45172
  expanded: false
44559
45173
  };
44560
- const classes2 = useUtilityClasses$e(ownerState);
45174
+ const classes2 = useUtilityClasses$c(ownerState);
44561
45175
  const {
44562
45176
  quickFilterParser,
44563
45177
  quickFilterFormatter,
@@ -44932,7 +45546,7 @@ ExportPrint.propTypes = {
44932
45546
  touchRippleRef: PropTypes.any
44933
45547
  };
44934
45548
  const _excluded$c = ["className"], _excluded2$3 = ["className"];
44935
- const useUtilityClasses$d = (ownerState) => {
45549
+ const useUtilityClasses$b = (ownerState) => {
44936
45550
  const {
44937
45551
  classes: classes2
44938
45552
  } = ownerState;
@@ -44964,7 +45578,7 @@ const Label = styled$1("span", {
44964
45578
  function GridToolbarDivider(props) {
44965
45579
  const other = _objectWithoutPropertiesLoose(props, _excluded$c);
44966
45580
  const rootProps = useGridRootProps();
44967
- const classes2 = useUtilityClasses$d(rootProps);
45581
+ const classes2 = useUtilityClasses$b(rootProps);
44968
45582
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Divider, _extends$2({
44969
45583
  as: rootProps.slots.baseDivider,
44970
45584
  orientation: "vertical",
@@ -44982,7 +45596,7 @@ GridToolbarDivider.propTypes = {
44982
45596
  function GridToolbarLabel(props) {
44983
45597
  const other = _objectWithoutPropertiesLoose(props, _excluded2$3);
44984
45598
  const rootProps = useGridRootProps();
44985
- const classes2 = useUtilityClasses$d(rootProps);
45599
+ const classes2 = useUtilityClasses$b(rootProps);
44986
45600
  return /* @__PURE__ */ jsxRuntimeExports.jsx(Label, _extends$2({
44987
45601
  className: classes2.label
44988
45602
  }, other));
@@ -45102,7 +45716,7 @@ GridToolbar.propTypes = {
45102
45716
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
45103
45717
  };
45104
45718
  const _excluded$b = ["className", "selectedRowCount"];
45105
- const useUtilityClasses$c = (ownerState) => {
45719
+ const useUtilityClasses$a = (ownerState) => {
45106
45720
  const {
45107
45721
  classes: classes2
45108
45722
  } = ownerState;
@@ -45135,7 +45749,7 @@ const GridSelectedRowCount = forwardRef(function GridSelectedRowCount2(props, re
45135
45749
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$b);
45136
45750
  const apiRef = useGridApiContext();
45137
45751
  const ownerState = useGridRootProps();
45138
- const classes2 = useUtilityClasses$c(ownerState);
45752
+ const classes2 = useUtilityClasses$a(ownerState);
45139
45753
  const rowSelectedText = apiRef.current.getLocaleText("footerRowSelected")(selectedRowCount);
45140
45754
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridSelectedRowCountRoot, _extends$2({
45141
45755
  className: clsx$1(classes2.root, className),
@@ -45245,7 +45859,7 @@ const SkeletonOverlay = styled$1("div", {
45245
45859
  overflow: "clip"
45246
45860
  // y axis is hidden while the x axis is allowed to overflow
45247
45861
  });
45248
- const useUtilityClasses$b = (ownerState) => {
45862
+ const useUtilityClasses$9 = (ownerState) => {
45249
45863
  const {
45250
45864
  classes: classes2
45251
45865
  } = ownerState;
@@ -45261,7 +45875,7 @@ const GridSkeletonLoadingOverlayInner = forwardRef(function GridSkeletonLoadingO
45261
45875
  slots
45262
45876
  } = rootProps;
45263
45877
  const isRtl = useRtl();
45264
- const classes2 = useUtilityClasses$b({
45878
+ const classes2 = useUtilityClasses$9({
45265
45879
  classes: rootProps.classes
45266
45880
  });
45267
45881
  const ref = React.useRef(null);
@@ -45572,7 +46186,7 @@ GridPagination.propTypes = {
45572
46186
  component: PropTypes.elementType
45573
46187
  };
45574
46188
  const _excluded$8 = ["className", "rowCount", "visibleRowCount"];
45575
- const useUtilityClasses$a = (ownerState) => {
46189
+ const useUtilityClasses$8 = (ownerState) => {
45576
46190
  const {
45577
46191
  classes: classes2
45578
46192
  } = ownerState;
@@ -45598,7 +46212,7 @@ const GridRowCount = forwardRef(function GridRowCount2(props, ref) {
45598
46212
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$8);
45599
46213
  const apiRef = useGridApiContext();
45600
46214
  const ownerState = useGridRootProps();
45601
- const classes2 = useUtilityClasses$a(ownerState);
46215
+ const classes2 = useUtilityClasses$8(ownerState);
45602
46216
  if (rowCount === 0) {
45603
46217
  return null;
45604
46218
  }
@@ -51441,7 +52055,7 @@ const useGridRowSelection = (apiRef, props) => {
51441
52055
  }
51442
52056
  }, []);
51443
52057
  };
51444
- const useUtilityClasses$9 = (ownerState) => {
52058
+ const useUtilityClasses$7 = (ownerState) => {
51445
52059
  const {
51446
52060
  classes: classes2
51447
52061
  } = ownerState;
@@ -51457,7 +52071,7 @@ const useGridRowSelectionPreProcessors = (apiRef, props) => {
51457
52071
  const ownerState = {
51458
52072
  classes: props.classes
51459
52073
  };
51460
- const classes2 = useUtilityClasses$9(ownerState);
52074
+ const classes2 = useUtilityClasses$7(ownerState);
51461
52075
  const updateSelectionColumn = React.useCallback((columnsState) => {
51462
52076
  const selectionColumn = _extends$2({}, GRID_CHECKBOX_SELECTION_COL_DEF, {
51463
52077
  cellClassName: classes2.cellCheckbox,
@@ -53771,7 +54385,7 @@ const useDataGridComponent = (inputApiRef, props) => {
53771
54385
  useGridDataSource(apiRef, props);
53772
54386
  return apiRef;
53773
54387
  };
53774
- const useUtilityClasses$8 = (ownerState) => {
54388
+ const useUtilityClasses$6 = (ownerState) => {
53775
54389
  const {
53776
54390
  classes: classes2,
53777
54391
  headerAlign,
@@ -53841,7 +54455,7 @@ function GridColumnGroupHeader(props) {
53841
54455
  const label = headerName ?? groupId;
53842
54456
  const id = useId();
53843
54457
  const elementId = groupId === null ? `empty-group-cell-${id}` : groupId;
53844
- const classes2 = useUtilityClasses$8(ownerState);
54458
+ const classes2 = useUtilityClasses$6(ownerState);
53845
54459
  React.useLayoutEffect(() => {
53846
54460
  if (hasFocus) {
53847
54461
  const focusableElement = headerCellRef.current.querySelector('[tabindex="0"]');
@@ -54183,7 +54797,7 @@ const useGridColumnHeaders = (props) => {
54183
54797
  };
54184
54798
  };
54185
54799
  const _excluded$3 = ["className"];
54186
- const useUtilityClasses$7 = (ownerState) => {
54800
+ const useUtilityClasses$5 = (ownerState) => {
54187
54801
  const {
54188
54802
  classes: classes2
54189
54803
  } = ownerState;
@@ -54207,7 +54821,7 @@ const GridBaseColumnHeaders = forwardRef(function GridColumnHeaders(props, ref)
54207
54821
  className
54208
54822
  } = props, other = _objectWithoutPropertiesLoose(props, _excluded$3);
54209
54823
  const rootProps = useGridRootProps();
54210
- const classes2 = useUtilityClasses$7(rootProps);
54824
+ const classes2 = useUtilityClasses$5(rootProps);
54211
54825
  return /* @__PURE__ */ jsxRuntimeExports.jsx(GridColumnHeadersRoot, _extends$2({
54212
54826
  className: clsx$1(classes2.root, className),
54213
54827
  ownerState: rootProps
@@ -54364,7 +54978,7 @@ const badgeClasses = generateUtilityClasses("MuiBadge", [
54364
54978
  ]);
54365
54979
  const RADIUS_STANDARD = 10;
54366
54980
  const RADIUS_DOT = 4;
54367
- const useUtilityClasses$6 = (ownerState) => {
54981
+ const useUtilityClasses$4 = (ownerState) => {
54368
54982
  const {
54369
54983
  color: color2,
54370
54984
  anchorOrigin,
@@ -54626,7 +55240,7 @@ const Badge = /* @__PURE__ */ React.forwardRef(function Badge2(inProps, ref) {
54626
55240
  overlap,
54627
55241
  variant
54628
55242
  };
54629
- const classes2 = useUtilityClasses$6(ownerState);
55243
+ const classes2 = useUtilityClasses$4(ownerState);
54630
55244
  const externalForwardedProps = {
54631
55245
  slots: {
54632
55246
  root: (slots == null ? void 0 : slots.root) ?? components.Root,
@@ -54777,614 +55391,6 @@ Badge.propTypes = {
54777
55391
  */
54778
55392
  variant: PropTypes.oneOfType([PropTypes.oneOf(["dot", "standard"]), PropTypes.string])
54779
55393
  };
54780
- function getLinearProgressUtilityClass(slot) {
54781
- return generateUtilityClass("MuiLinearProgress", slot);
54782
- }
54783
- generateUtilityClasses("MuiLinearProgress", ["root", "colorPrimary", "colorSecondary", "determinate", "indeterminate", "buffer", "query", "dashed", "dashedColorPrimary", "dashedColorSecondary", "bar", "bar1", "bar2", "barColorPrimary", "barColorSecondary", "bar1Indeterminate", "bar1Determinate", "bar1Buffer", "bar2Indeterminate", "bar2Buffer"]);
54784
- const TRANSITION_DURATION = 4;
54785
- const indeterminate1Keyframe = keyframes`
54786
- 0% {
54787
- left: -35%;
54788
- right: 100%;
54789
- }
54790
-
54791
- 60% {
54792
- left: 100%;
54793
- right: -90%;
54794
- }
54795
-
54796
- 100% {
54797
- left: 100%;
54798
- right: -90%;
54799
- }
54800
- `;
54801
- const indeterminate1Animation = typeof indeterminate1Keyframe !== "string" ? css`
54802
- animation: ${indeterminate1Keyframe} 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
54803
- ` : null;
54804
- const indeterminate2Keyframe = keyframes`
54805
- 0% {
54806
- left: -200%;
54807
- right: 100%;
54808
- }
54809
-
54810
- 60% {
54811
- left: 107%;
54812
- right: -8%;
54813
- }
54814
-
54815
- 100% {
54816
- left: 107%;
54817
- right: -8%;
54818
- }
54819
- `;
54820
- const indeterminate2Animation = typeof indeterminate2Keyframe !== "string" ? css`
54821
- animation: ${indeterminate2Keyframe} 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite;
54822
- ` : null;
54823
- const bufferKeyframe = keyframes`
54824
- 0% {
54825
- opacity: 1;
54826
- background-position: 0 -23px;
54827
- }
54828
-
54829
- 60% {
54830
- opacity: 0;
54831
- background-position: 0 -23px;
54832
- }
54833
-
54834
- 100% {
54835
- opacity: 1;
54836
- background-position: -200px -23px;
54837
- }
54838
- `;
54839
- const bufferAnimation = typeof bufferKeyframe !== "string" ? css`
54840
- animation: ${bufferKeyframe} 3s infinite linear;
54841
- ` : null;
54842
- const useUtilityClasses$5 = (ownerState) => {
54843
- const {
54844
- classes: classes2,
54845
- variant,
54846
- color: color2
54847
- } = ownerState;
54848
- const slots = {
54849
- root: ["root", `color${capitalize(color2)}`, variant],
54850
- dashed: ["dashed", `dashedColor${capitalize(color2)}`],
54851
- bar1: ["bar", "bar1", `barColor${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar1Indeterminate", variant === "determinate" && "bar1Determinate", variant === "buffer" && "bar1Buffer"],
54852
- bar2: ["bar", "bar2", variant !== "buffer" && `barColor${capitalize(color2)}`, variant === "buffer" && `color${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar2Indeterminate", variant === "buffer" && "bar2Buffer"]
54853
- };
54854
- return composeClasses(slots, getLinearProgressUtilityClass, classes2);
54855
- };
54856
- const getColorShade = (theme, color2) => {
54857
- if (theme.vars) {
54858
- return theme.vars.palette.LinearProgress[`${color2}Bg`];
54859
- }
54860
- return theme.palette.mode === "light" ? lighten(theme.palette[color2].main, 0.62) : darken(theme.palette[color2].main, 0.5);
54861
- };
54862
- const LinearProgressRoot = styled("span", {
54863
- name: "MuiLinearProgress",
54864
- slot: "Root",
54865
- overridesResolver: (props, styles2) => {
54866
- const {
54867
- ownerState
54868
- } = props;
54869
- return [styles2.root, styles2[`color${capitalize(ownerState.color)}`], styles2[ownerState.variant]];
54870
- }
54871
- })(memoTheme(({
54872
- theme
54873
- }) => ({
54874
- position: "relative",
54875
- overflow: "hidden",
54876
- display: "block",
54877
- height: 4,
54878
- // Fix Safari's bug during composition of different paint.
54879
- zIndex: 0,
54880
- "@media print": {
54881
- colorAdjust: "exact"
54882
- },
54883
- variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
54884
- props: {
54885
- color: color2
54886
- },
54887
- style: {
54888
- backgroundColor: getColorShade(theme, color2)
54889
- }
54890
- })), {
54891
- props: ({
54892
- ownerState
54893
- }) => ownerState.color === "inherit" && ownerState.variant !== "buffer",
54894
- style: {
54895
- "&::before": {
54896
- content: '""',
54897
- position: "absolute",
54898
- left: 0,
54899
- top: 0,
54900
- right: 0,
54901
- bottom: 0,
54902
- backgroundColor: "currentColor",
54903
- opacity: 0.3
54904
- }
54905
- }
54906
- }, {
54907
- props: {
54908
- variant: "buffer"
54909
- },
54910
- style: {
54911
- backgroundColor: "transparent"
54912
- }
54913
- }, {
54914
- props: {
54915
- variant: "query"
54916
- },
54917
- style: {
54918
- transform: "rotate(180deg)"
54919
- }
54920
- }]
54921
- })));
54922
- const LinearProgressDashed = styled("span", {
54923
- name: "MuiLinearProgress",
54924
- slot: "Dashed",
54925
- overridesResolver: (props, styles2) => {
54926
- const {
54927
- ownerState
54928
- } = props;
54929
- return [styles2.dashed, styles2[`dashedColor${capitalize(ownerState.color)}`]];
54930
- }
54931
- })(memoTheme(({
54932
- theme
54933
- }) => ({
54934
- position: "absolute",
54935
- marginTop: 0,
54936
- height: "100%",
54937
- width: "100%",
54938
- backgroundSize: "10px 10px",
54939
- backgroundPosition: "0 -23px",
54940
- variants: [{
54941
- props: {
54942
- color: "inherit"
54943
- },
54944
- style: {
54945
- opacity: 0.3,
54946
- backgroundImage: `radial-gradient(currentColor 0%, currentColor 16%, transparent 42%)`
54947
- }
54948
- }, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => {
54949
- const backgroundColor2 = getColorShade(theme, color2);
54950
- return {
54951
- props: {
54952
- color: color2
54953
- },
54954
- style: {
54955
- backgroundImage: `radial-gradient(${backgroundColor2} 0%, ${backgroundColor2} 16%, transparent 42%)`
54956
- }
54957
- };
54958
- })]
54959
- })), bufferAnimation || {
54960
- // At runtime for Pigment CSS, `bufferAnimation` will be null and the generated keyframe will be used.
54961
- animation: `${bufferKeyframe} 3s infinite linear`
54962
- });
54963
- const LinearProgressBar1 = styled("span", {
54964
- name: "MuiLinearProgress",
54965
- slot: "Bar1",
54966
- overridesResolver: (props, styles2) => {
54967
- const {
54968
- ownerState
54969
- } = props;
54970
- return [styles2.bar, styles2.bar1, styles2[`barColor${capitalize(ownerState.color)}`], (ownerState.variant === "indeterminate" || ownerState.variant === "query") && styles2.bar1Indeterminate, ownerState.variant === "determinate" && styles2.bar1Determinate, ownerState.variant === "buffer" && styles2.bar1Buffer];
54971
- }
54972
- })(memoTheme(({
54973
- theme
54974
- }) => ({
54975
- width: "100%",
54976
- position: "absolute",
54977
- left: 0,
54978
- bottom: 0,
54979
- top: 0,
54980
- transition: "transform 0.2s linear",
54981
- transformOrigin: "left",
54982
- variants: [{
54983
- props: {
54984
- color: "inherit"
54985
- },
54986
- style: {
54987
- backgroundColor: "currentColor"
54988
- }
54989
- }, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
54990
- props: {
54991
- color: color2
54992
- },
54993
- style: {
54994
- backgroundColor: (theme.vars || theme).palette[color2].main
54995
- }
54996
- })), {
54997
- props: {
54998
- variant: "determinate"
54999
- },
55000
- style: {
55001
- transition: `transform .${TRANSITION_DURATION}s linear`
55002
- }
55003
- }, {
55004
- props: {
55005
- variant: "buffer"
55006
- },
55007
- style: {
55008
- zIndex: 1,
55009
- transition: `transform .${TRANSITION_DURATION}s linear`
55010
- }
55011
- }, {
55012
- props: ({
55013
- ownerState
55014
- }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
55015
- style: {
55016
- width: "auto"
55017
- }
55018
- }, {
55019
- props: ({
55020
- ownerState
55021
- }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
55022
- style: indeterminate1Animation || {
55023
- animation: `${indeterminate1Keyframe} 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite`
55024
- }
55025
- }]
55026
- })));
55027
- const LinearProgressBar2 = styled("span", {
55028
- name: "MuiLinearProgress",
55029
- slot: "Bar2",
55030
- overridesResolver: (props, styles2) => {
55031
- const {
55032
- ownerState
55033
- } = props;
55034
- return [styles2.bar, styles2.bar2, styles2[`barColor${capitalize(ownerState.color)}`], (ownerState.variant === "indeterminate" || ownerState.variant === "query") && styles2.bar2Indeterminate, ownerState.variant === "buffer" && styles2.bar2Buffer];
55035
- }
55036
- })(memoTheme(({
55037
- theme
55038
- }) => ({
55039
- width: "100%",
55040
- position: "absolute",
55041
- left: 0,
55042
- bottom: 0,
55043
- top: 0,
55044
- transition: "transform 0.2s linear",
55045
- transformOrigin: "left",
55046
- variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
55047
- props: {
55048
- color: color2
55049
- },
55050
- style: {
55051
- "--LinearProgressBar2-barColor": (theme.vars || theme).palette[color2].main
55052
- }
55053
- })), {
55054
- props: ({
55055
- ownerState
55056
- }) => ownerState.variant !== "buffer" && ownerState.color !== "inherit",
55057
- style: {
55058
- backgroundColor: "var(--LinearProgressBar2-barColor, currentColor)"
55059
- }
55060
- }, {
55061
- props: ({
55062
- ownerState
55063
- }) => ownerState.variant !== "buffer" && ownerState.color === "inherit",
55064
- style: {
55065
- backgroundColor: "currentColor"
55066
- }
55067
- }, {
55068
- props: {
55069
- color: "inherit"
55070
- },
55071
- style: {
55072
- opacity: 0.3
55073
- }
55074
- }, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color2]) => ({
55075
- props: {
55076
- color: color2,
55077
- variant: "buffer"
55078
- },
55079
- style: {
55080
- backgroundColor: getColorShade(theme, color2),
55081
- transition: `transform .${TRANSITION_DURATION}s linear`
55082
- }
55083
- })), {
55084
- props: ({
55085
- ownerState
55086
- }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
55087
- style: {
55088
- width: "auto"
55089
- }
55090
- }, {
55091
- props: ({
55092
- ownerState
55093
- }) => ownerState.variant === "indeterminate" || ownerState.variant === "query",
55094
- style: indeterminate2Animation || {
55095
- animation: `${indeterminate2Keyframe} 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite`
55096
- }
55097
- }]
55098
- })));
55099
- const LinearProgress = /* @__PURE__ */ React.forwardRef(function LinearProgress2(inProps, ref) {
55100
- const props = useDefaultProps({
55101
- props: inProps,
55102
- name: "MuiLinearProgress"
55103
- });
55104
- const {
55105
- className,
55106
- color: color2 = "primary",
55107
- value,
55108
- valueBuffer,
55109
- variant = "indeterminate",
55110
- ...other
55111
- } = props;
55112
- const ownerState = {
55113
- ...props,
55114
- color: color2,
55115
- variant
55116
- };
55117
- const classes2 = useUtilityClasses$5(ownerState);
55118
- const isRtl = useRtl();
55119
- const rootProps = {};
55120
- const inlineStyles = {
55121
- bar1: {},
55122
- bar2: {}
55123
- };
55124
- if (variant === "determinate" || variant === "buffer") {
55125
- if (value !== void 0) {
55126
- rootProps["aria-valuenow"] = Math.round(value);
55127
- rootProps["aria-valuemin"] = 0;
55128
- rootProps["aria-valuemax"] = 100;
55129
- let transform = value - 100;
55130
- if (isRtl) {
55131
- transform = -transform;
55132
- }
55133
- inlineStyles.bar1.transform = `translateX(${transform}%)`;
55134
- } else {
55135
- console.error("MUI: You need to provide a value prop when using the determinate or buffer variant of LinearProgress .");
55136
- }
55137
- }
55138
- if (variant === "buffer") {
55139
- if (valueBuffer !== void 0) {
55140
- let transform = (valueBuffer || 0) - 100;
55141
- if (isRtl) {
55142
- transform = -transform;
55143
- }
55144
- inlineStyles.bar2.transform = `translateX(${transform}%)`;
55145
- } else {
55146
- console.error("MUI: You need to provide a valueBuffer prop when using the buffer variant of LinearProgress.");
55147
- }
55148
- }
55149
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(LinearProgressRoot, {
55150
- className: clsx$1(classes2.root, className),
55151
- ownerState,
55152
- role: "progressbar",
55153
- ...rootProps,
55154
- ref,
55155
- ...other,
55156
- children: [variant === "buffer" ? /* @__PURE__ */ jsxRuntimeExports.jsx(LinearProgressDashed, {
55157
- className: classes2.dashed,
55158
- ownerState
55159
- }) : null, /* @__PURE__ */ jsxRuntimeExports.jsx(LinearProgressBar1, {
55160
- className: classes2.bar1,
55161
- ownerState,
55162
- style: inlineStyles.bar1
55163
- }), variant === "determinate" ? null : /* @__PURE__ */ jsxRuntimeExports.jsx(LinearProgressBar2, {
55164
- className: classes2.bar2,
55165
- ownerState,
55166
- style: inlineStyles.bar2
55167
- })]
55168
- });
55169
- });
55170
- LinearProgress.propTypes = {
55171
- // ┌────────────────────────────── Warning ──────────────────────────────┐
55172
- // │ These PropTypes are generated from the TypeScript type definitions. │
55173
- // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
55174
- // └─────────────────────────────────────────────────────────────────────┘
55175
- /**
55176
- * Override or extend the styles applied to the component.
55177
- */
55178
- classes: PropTypes.object,
55179
- /**
55180
- * @ignore
55181
- */
55182
- className: PropTypes.string,
55183
- /**
55184
- * The color of the component.
55185
- * It supports both default and custom theme colors, which can be added as shown in the
55186
- * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
55187
- * @default 'primary'
55188
- */
55189
- color: PropTypes.oneOfType([PropTypes.oneOf(["inherit", "primary", "secondary"]), PropTypes.string]),
55190
- /**
55191
- * The system prop that allows defining system overrides as well as additional CSS styles.
55192
- */
55193
- sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
55194
- /**
55195
- * The value of the progress indicator for the determinate and buffer variants.
55196
- * Value between 0 and 100.
55197
- */
55198
- value: PropTypes.number,
55199
- /**
55200
- * The value for the buffer variant.
55201
- * Value between 0 and 100.
55202
- */
55203
- valueBuffer: PropTypes.number,
55204
- /**
55205
- * The variant to use.
55206
- * Use indeterminate or query when there is no progress value.
55207
- * @default 'indeterminate'
55208
- */
55209
- variant: PropTypes.oneOf(["buffer", "determinate", "indeterminate", "query"])
55210
- };
55211
- function getInputAdornmentUtilityClass(slot) {
55212
- return generateUtilityClass("MuiInputAdornment", slot);
55213
- }
55214
- const inputAdornmentClasses = generateUtilityClasses("MuiInputAdornment", ["root", "filled", "standard", "outlined", "positionStart", "positionEnd", "disablePointerEvents", "hiddenLabel", "sizeSmall"]);
55215
- var _span;
55216
- const overridesResolver = (props, styles2) => {
55217
- const {
55218
- ownerState
55219
- } = props;
55220
- return [styles2.root, styles2[`position${capitalize(ownerState.position)}`], ownerState.disablePointerEvents === true && styles2.disablePointerEvents, styles2[ownerState.variant]];
55221
- };
55222
- const useUtilityClasses$4 = (ownerState) => {
55223
- const {
55224
- classes: classes2,
55225
- disablePointerEvents,
55226
- hiddenLabel,
55227
- position: position2,
55228
- size: size2,
55229
- variant
55230
- } = ownerState;
55231
- const slots = {
55232
- root: ["root", disablePointerEvents && "disablePointerEvents", position2 && `position${capitalize(position2)}`, variant, hiddenLabel && "hiddenLabel", size2 && `size${capitalize(size2)}`]
55233
- };
55234
- return composeClasses(slots, getInputAdornmentUtilityClass, classes2);
55235
- };
55236
- const InputAdornmentRoot = styled("div", {
55237
- name: "MuiInputAdornment",
55238
- slot: "Root",
55239
- overridesResolver
55240
- })(memoTheme(({
55241
- theme
55242
- }) => ({
55243
- display: "flex",
55244
- maxHeight: "2em",
55245
- alignItems: "center",
55246
- whiteSpace: "nowrap",
55247
- color: (theme.vars || theme).palette.action.active,
55248
- variants: [{
55249
- props: {
55250
- variant: "filled"
55251
- },
55252
- style: {
55253
- [`&.${inputAdornmentClasses.positionStart}&:not(.${inputAdornmentClasses.hiddenLabel})`]: {
55254
- marginTop: 16
55255
- }
55256
- }
55257
- }, {
55258
- props: {
55259
- position: "start"
55260
- },
55261
- style: {
55262
- marginRight: 8
55263
- }
55264
- }, {
55265
- props: {
55266
- position: "end"
55267
- },
55268
- style: {
55269
- marginLeft: 8
55270
- }
55271
- }, {
55272
- props: {
55273
- disablePointerEvents: true
55274
- },
55275
- style: {
55276
- pointerEvents: "none"
55277
- }
55278
- }]
55279
- })));
55280
- const InputAdornment$1 = /* @__PURE__ */ React.forwardRef(function InputAdornment2(inProps, ref) {
55281
- const props = useDefaultProps({
55282
- props: inProps,
55283
- name: "MuiInputAdornment"
55284
- });
55285
- const {
55286
- children,
55287
- className,
55288
- component = "div",
55289
- disablePointerEvents = false,
55290
- disableTypography = false,
55291
- position: position2,
55292
- variant: variantProp,
55293
- ...other
55294
- } = props;
55295
- const muiFormControl = useFormControl() || {};
55296
- let variant = variantProp;
55297
- if (variantProp && muiFormControl.variant) {
55298
- {
55299
- if (variantProp === muiFormControl.variant) {
55300
- console.error("MUI: The `InputAdornment` variant infers the variant prop you do not have to provide one.");
55301
- }
55302
- }
55303
- }
55304
- if (muiFormControl && !variant) {
55305
- variant = muiFormControl.variant;
55306
- }
55307
- const ownerState = {
55308
- ...props,
55309
- hiddenLabel: muiFormControl.hiddenLabel,
55310
- size: muiFormControl.size,
55311
- disablePointerEvents,
55312
- position: position2,
55313
- variant
55314
- };
55315
- const classes2 = useUtilityClasses$4(ownerState);
55316
- return /* @__PURE__ */ jsxRuntimeExports.jsx(FormControlContext.Provider, {
55317
- value: null,
55318
- children: /* @__PURE__ */ jsxRuntimeExports.jsx(InputAdornmentRoot, {
55319
- as: component,
55320
- ownerState,
55321
- className: clsx$1(classes2.root, className),
55322
- ref,
55323
- ...other,
55324
- children: typeof children === "string" && !disableTypography ? /* @__PURE__ */ jsxRuntimeExports.jsx(Typography, {
55325
- color: "textSecondary",
55326
- children
55327
- }) : /* @__PURE__ */ jsxRuntimeExports.jsxs(React.Fragment, {
55328
- children: [position2 === "start" ? (
55329
- /* notranslate needed while Google Translate will not fix zero-width space issue */
55330
- _span || (_span = /* @__PURE__ */ jsxRuntimeExports.jsx("span", {
55331
- className: "notranslate",
55332
- "aria-hidden": true,
55333
- children: "​"
55334
- }))
55335
- ) : null, children]
55336
- })
55337
- })
55338
- });
55339
- });
55340
- InputAdornment$1.propTypes = {
55341
- // ┌────────────────────────────── Warning ──────────────────────────────┐
55342
- // │ These PropTypes are generated from the TypeScript type definitions. │
55343
- // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
55344
- // └─────────────────────────────────────────────────────────────────────┘
55345
- /**
55346
- * The content of the component, normally an `IconButton` or string.
55347
- */
55348
- children: PropTypes.node,
55349
- /**
55350
- * Override or extend the styles applied to the component.
55351
- */
55352
- classes: PropTypes.object,
55353
- /**
55354
- * @ignore
55355
- */
55356
- className: PropTypes.string,
55357
- /**
55358
- * The component used for the root node.
55359
- * Either a string to use a HTML element or a component.
55360
- */
55361
- component: PropTypes.elementType,
55362
- /**
55363
- * Disable pointer events on the root.
55364
- * This allows for the content of the adornment to focus the `input` on click.
55365
- * @default false
55366
- */
55367
- disablePointerEvents: PropTypes.bool,
55368
- /**
55369
- * If children is a string then disable wrapping in a Typography component.
55370
- * @default false
55371
- */
55372
- disableTypography: PropTypes.bool,
55373
- /**
55374
- * The position this adornment should appear relative to the `Input`.
55375
- */
55376
- position: PropTypes.oneOf(["end", "start"]).isRequired,
55377
- /**
55378
- * The system prop that allows defining system overrides as well as additional CSS styles.
55379
- */
55380
- sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
55381
- /**
55382
- * The variant to use.
55383
- * Note: If you are using the `TextField` component or the `FormControl` component
55384
- * you do not have to set this manually.
55385
- */
55386
- variant: PropTypes.oneOf(["filled", "outlined", "standard"])
55387
- };
55388
55394
  function getToolbarUtilityClass(slot) {
55389
55395
  return generateUtilityClass("MuiToolbar", slot);
55390
55396
  }