@cgi-learning-hub/ui 1.10.0-dev.1761752478 → 1.10.0-dev.1762422522
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.
- package/dist/index.cjs.js +501 -250
- package/dist/index.d.ts +53 -8
- package/dist/index.es.js +502 -251
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1271,7 +1271,7 @@ function clsx() {
|
|
|
1271
1271
|
return n;
|
|
1272
1272
|
}
|
|
1273
1273
|
const refType = PropTypes.oneOfType([PropTypes.func, PropTypes.object]);
|
|
1274
|
-
function composeClasses(slots, getUtilityClass, classes = void 0) {
|
|
1274
|
+
function composeClasses$1(slots, getUtilityClass, classes = void 0) {
|
|
1275
1275
|
const output = {};
|
|
1276
1276
|
for (const slotName in slots) {
|
|
1277
1277
|
const slot = slots[slotName];
|
|
@@ -1474,49 +1474,49 @@ function useSlotProps(parameters) {
|
|
|
1474
1474
|
}, ownerState);
|
|
1475
1475
|
return props;
|
|
1476
1476
|
}
|
|
1477
|
-
function formatMuiErrorMessage(code, ...args) {
|
|
1477
|
+
function formatMuiErrorMessage$1(code, ...args) {
|
|
1478
1478
|
const url = new URL(`https://mui.com/production-error/?code=${code}`);
|
|
1479
1479
|
args.forEach((arg2) => url.searchParams.append("args[]", arg2));
|
|
1480
1480
|
return `Minified MUI error #${code}; visit ${url} for the full message.`;
|
|
1481
1481
|
}
|
|
1482
|
-
function capitalize(string) {
|
|
1482
|
+
function capitalize$1(string) {
|
|
1483
1483
|
if (typeof string !== "string") {
|
|
1484
|
-
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `capitalize(string)` expects a string argument." : formatMuiErrorMessage(7));
|
|
1484
|
+
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `capitalize(string)` expects a string argument." : formatMuiErrorMessage$1(7));
|
|
1485
1485
|
}
|
|
1486
1486
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
1487
1487
|
}
|
|
1488
|
-
function isPlainObject(item) {
|
|
1488
|
+
function isPlainObject$1(item) {
|
|
1489
1489
|
if (typeof item !== "object" || item === null) {
|
|
1490
1490
|
return false;
|
|
1491
1491
|
}
|
|
1492
1492
|
const prototype = Object.getPrototypeOf(item);
|
|
1493
1493
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in item) && !(Symbol.iterator in item);
|
|
1494
1494
|
}
|
|
1495
|
-
function deepClone(source) {
|
|
1496
|
-
if (/* @__PURE__ */ React__namespace.isValidElement(source) || reactIsExports.isValidElementType(source) || !isPlainObject(source)) {
|
|
1495
|
+
function deepClone$1(source) {
|
|
1496
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(source) || reactIsExports.isValidElementType(source) || !isPlainObject$1(source)) {
|
|
1497
1497
|
return source;
|
|
1498
1498
|
}
|
|
1499
1499
|
const output = {};
|
|
1500
1500
|
Object.keys(source).forEach((key) => {
|
|
1501
|
-
output[key] = deepClone(source[key]);
|
|
1501
|
+
output[key] = deepClone$1(source[key]);
|
|
1502
1502
|
});
|
|
1503
1503
|
return output;
|
|
1504
1504
|
}
|
|
1505
|
-
function deepmerge(target, source, options = {
|
|
1505
|
+
function deepmerge$1(target, source, options = {
|
|
1506
1506
|
clone: true
|
|
1507
1507
|
}) {
|
|
1508
1508
|
const output = options.clone ? {
|
|
1509
1509
|
...target
|
|
1510
1510
|
} : target;
|
|
1511
|
-
if (isPlainObject(target) && isPlainObject(source)) {
|
|
1511
|
+
if (isPlainObject$1(target) && isPlainObject$1(source)) {
|
|
1512
1512
|
Object.keys(source).forEach((key) => {
|
|
1513
1513
|
if (/* @__PURE__ */ React__namespace.isValidElement(source[key]) || reactIsExports.isValidElementType(source[key])) {
|
|
1514
1514
|
output[key] = source[key];
|
|
1515
|
-
} else if (isPlainObject(source[key]) && // Avoid prototype pollution
|
|
1516
|
-
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject(target[key])) {
|
|
1517
|
-
output[key] = deepmerge(target[key], source[key], options);
|
|
1515
|
+
} else if (isPlainObject$1(source[key]) && // Avoid prototype pollution
|
|
1516
|
+
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject$1(target[key])) {
|
|
1517
|
+
output[key] = deepmerge$1(target[key], source[key], options);
|
|
1518
1518
|
} else if (options.clone) {
|
|
1519
|
-
output[key] = isPlainObject(source[key]) ? deepClone(source[key]) : source[key];
|
|
1519
|
+
output[key] = isPlainObject$1(source[key]) ? deepClone$1(source[key]) : source[key];
|
|
1520
1520
|
} else {
|
|
1521
1521
|
output[key] = source[key];
|
|
1522
1522
|
}
|
|
@@ -1528,7 +1528,7 @@ function merge(acc, item) {
|
|
|
1528
1528
|
if (!item) {
|
|
1529
1529
|
return acc;
|
|
1530
1530
|
}
|
|
1531
|
-
return deepmerge(acc, item, {
|
|
1531
|
+
return deepmerge$1(acc, item, {
|
|
1532
1532
|
clone: false
|
|
1533
1533
|
// No need to clone deep, it's way faster.
|
|
1534
1534
|
});
|
|
@@ -1563,7 +1563,7 @@ function getContainerQuery(theme, shorthand) {
|
|
|
1563
1563
|
if (!matches) {
|
|
1564
1564
|
if (process.env.NODE_ENV !== "production") {
|
|
1565
1565
|
throw new Error(process.env.NODE_ENV !== "production" ? `MUI: The provided shorthand ${`(${shorthand})`} is invalid. The format should be \`@<breakpoint | number>\` or \`@<breakpoint | number>/<container>\`.
|
|
1566
|
-
For example, \`@sm\` or \`@600\` or \`@40rem/sidebar\`.` : formatMuiErrorMessage(18, `(${shorthand})`));
|
|
1566
|
+
For example, \`@sm\` or \`@600\` or \`@40rem/sidebar\`.` : formatMuiErrorMessage$1(18, `(${shorthand})`));
|
|
1567
1567
|
}
|
|
1568
1568
|
return null;
|
|
1569
1569
|
}
|
|
@@ -1677,7 +1677,7 @@ function removeUnusedBreakpoints(breakpointKeys, style2) {
|
|
|
1677
1677
|
}
|
|
1678
1678
|
function mergeBreakpointsInOrder(breakpointsInput, ...styles2) {
|
|
1679
1679
|
const emptyBreakpoints = createEmptyBreakpointObject(breakpointsInput);
|
|
1680
|
-
const mergedOutput = [emptyBreakpoints, ...styles2].reduce((prev2, next2) => deepmerge(prev2, next2), {});
|
|
1680
|
+
const mergedOutput = [emptyBreakpoints, ...styles2].reduce((prev2, next2) => deepmerge$1(prev2, next2), {});
|
|
1681
1681
|
return removeUnusedBreakpoints(Object.keys(emptyBreakpoints), mergedOutput);
|
|
1682
1682
|
}
|
|
1683
1683
|
function computeBreakpointsBase(breakpointValues, themeBreakpoints) {
|
|
@@ -1773,7 +1773,7 @@ function style$2(options) {
|
|
|
1773
1773
|
const styleFromPropValue = (propValueFinal) => {
|
|
1774
1774
|
let value = getStyleValue$1(themeMapping, transform, propValueFinal);
|
|
1775
1775
|
if (propValueFinal === value && typeof propValueFinal === "string") {
|
|
1776
|
-
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize(propValueFinal)}`, propValueFinal);
|
|
1776
|
+
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize$1(propValueFinal)}`, propValueFinal);
|
|
1777
1777
|
}
|
|
1778
1778
|
if (cssProperty === false) {
|
|
1779
1779
|
return value;
|
|
@@ -2481,7 +2481,7 @@ function unstable_createStyleFunctionSx() {
|
|
|
2481
2481
|
const styleFromPropValue = (propValueFinal) => {
|
|
2482
2482
|
let value = getStyleValue$1(themeMapping, transform, propValueFinal);
|
|
2483
2483
|
if (propValueFinal === value && typeof propValueFinal === "string") {
|
|
2484
|
-
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize(propValueFinal)}`, propValueFinal);
|
|
2484
|
+
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize$1(propValueFinal)}`, propValueFinal);
|
|
2485
2485
|
}
|
|
2486
2486
|
if (cssProperty === false) {
|
|
2487
2487
|
return value;
|
|
@@ -2586,7 +2586,7 @@ function extendSxProp$1(props) {
|
|
|
2586
2586
|
} else if (typeof inSx === "function") {
|
|
2587
2587
|
finalSx = (...args) => {
|
|
2588
2588
|
const result = inSx(...args);
|
|
2589
|
-
if (!isPlainObject(result)) {
|
|
2589
|
+
if (!isPlainObject$1(result)) {
|
|
2590
2590
|
return systemProps;
|
|
2591
2591
|
}
|
|
2592
2592
|
return {
|
|
@@ -3733,7 +3733,7 @@ process.env.NODE_ENV !== "production" ? GlobalStyles$2.propTypes = {
|
|
|
3733
3733
|
styles: PropTypes.oneOfType([PropTypes.array, PropTypes.string, PropTypes.object, PropTypes.func])
|
|
3734
3734
|
} : void 0;
|
|
3735
3735
|
/**
|
|
3736
|
-
* @mui/styled-engine v7.3.
|
|
3736
|
+
* @mui/styled-engine v7.3.5
|
|
3737
3737
|
*
|
|
3738
3738
|
* @license MIT
|
|
3739
3739
|
* This source code is licensed under the MIT license found in the
|
|
@@ -3896,7 +3896,7 @@ function createTheme$1(options = {}, ...args) {
|
|
|
3896
3896
|
} = options;
|
|
3897
3897
|
const breakpoints = createBreakpoints(breakpointsInput);
|
|
3898
3898
|
const spacing = createSpacing(spacingInput);
|
|
3899
|
-
let muiTheme = deepmerge({
|
|
3899
|
+
let muiTheme = deepmerge$1({
|
|
3900
3900
|
breakpoints,
|
|
3901
3901
|
direction: "ltr",
|
|
3902
3902
|
components: {},
|
|
@@ -3913,7 +3913,7 @@ function createTheme$1(options = {}, ...args) {
|
|
|
3913
3913
|
}, other);
|
|
3914
3914
|
muiTheme = cssContainerQueries(muiTheme);
|
|
3915
3915
|
muiTheme.applyStyles = applyStyles$2;
|
|
3916
|
-
muiTheme = args.reduce((acc, argument) => deepmerge(acc, argument), muiTheme);
|
|
3916
|
+
muiTheme = args.reduce((acc, argument) => deepmerge$1(acc, argument), muiTheme);
|
|
3917
3917
|
muiTheme.unstable_sxConfig = {
|
|
3918
3918
|
...defaultSxConfig,
|
|
3919
3919
|
...other == null ? void 0 : other.unstable_sxConfig
|
|
@@ -3989,9 +3989,9 @@ process.env.NODE_ENV !== "production" ? GlobalStyles$1.propTypes = {
|
|
|
3989
3989
|
*/
|
|
3990
3990
|
themeId: PropTypes.string
|
|
3991
3991
|
} : void 0;
|
|
3992
|
-
const defaultGenerator = (componentName) => componentName;
|
|
3993
|
-
const createClassNameGenerator = () => {
|
|
3994
|
-
let generate = defaultGenerator;
|
|
3992
|
+
const defaultGenerator$1 = (componentName) => componentName;
|
|
3993
|
+
const createClassNameGenerator$1 = () => {
|
|
3994
|
+
let generate = defaultGenerator$1;
|
|
3995
3995
|
return {
|
|
3996
3996
|
configure(generator) {
|
|
3997
3997
|
generate = generator;
|
|
@@ -4000,11 +4000,11 @@ const createClassNameGenerator = () => {
|
|
|
4000
4000
|
return generate(componentName);
|
|
4001
4001
|
},
|
|
4002
4002
|
reset() {
|
|
4003
|
-
generate = defaultGenerator;
|
|
4003
|
+
generate = defaultGenerator$1;
|
|
4004
4004
|
}
|
|
4005
4005
|
};
|
|
4006
4006
|
};
|
|
4007
|
-
const ClassNameGenerator = createClassNameGenerator();
|
|
4007
|
+
const ClassNameGenerator$1 = createClassNameGenerator$1();
|
|
4008
4008
|
function createBox(options = {}) {
|
|
4009
4009
|
const {
|
|
4010
4010
|
themeId,
|
|
@@ -4032,7 +4032,7 @@ function createBox(options = {}) {
|
|
|
4032
4032
|
});
|
|
4033
4033
|
return Box2;
|
|
4034
4034
|
}
|
|
4035
|
-
const globalStateClasses = {
|
|
4035
|
+
const globalStateClasses$1 = {
|
|
4036
4036
|
active: "active",
|
|
4037
4037
|
checked: "checked",
|
|
4038
4038
|
completed: "completed",
|
|
@@ -4046,16 +4046,9 @@ const globalStateClasses = {
|
|
|
4046
4046
|
required: "required",
|
|
4047
4047
|
selected: "selected"
|
|
4048
4048
|
};
|
|
4049
|
-
function generateUtilityClass(componentName, slot, globalStatePrefix = "Mui") {
|
|
4050
|
-
const globalStateClass = globalStateClasses[slot];
|
|
4051
|
-
return globalStateClass ? `${globalStatePrefix}-${globalStateClass}` : `${ClassNameGenerator.generate(componentName)}-${slot}`;
|
|
4052
|
-
}
|
|
4053
|
-
function generateUtilityClasses(componentName, slots, globalStatePrefix = "Mui") {
|
|
4054
|
-
const result = {};
|
|
4055
|
-
slots.forEach((slot) => {
|
|
4056
|
-
result[slot] = generateUtilityClass(componentName, slot, globalStatePrefix);
|
|
4057
|
-
});
|
|
4058
|
-
return result;
|
|
4049
|
+
function generateUtilityClass$1(componentName, slot, globalStatePrefix = "Mui") {
|
|
4050
|
+
const globalStateClass = globalStateClasses$1[slot];
|
|
4051
|
+
return globalStateClass ? `${globalStatePrefix}-${globalStateClass}` : `${ClassNameGenerator$1.generate(componentName)}-${slot}`;
|
|
4059
4052
|
}
|
|
4060
4053
|
function getFunctionComponentName(Component, fallback = "") {
|
|
4061
4054
|
return Component.displayName || Component.name || fallback;
|
|
@@ -4235,7 +4228,7 @@ function createStyled(input = {}) {
|
|
|
4235
4228
|
return processStyle(props, style2, props.theme.modularCssLayers ? layerName : void 0);
|
|
4236
4229
|
};
|
|
4237
4230
|
}
|
|
4238
|
-
if (isPlainObject(style2)) {
|
|
4231
|
+
if (isPlainObject$1(style2)) {
|
|
4239
4232
|
const serialized = preprocessStyles(style2);
|
|
4240
4233
|
return function styleObjectProcessor(props) {
|
|
4241
4234
|
if (!serialized.variants) {
|
|
@@ -4310,7 +4303,7 @@ function createStyled(input = {}) {
|
|
|
4310
4303
|
}
|
|
4311
4304
|
function generateDisplayName(componentName, componentSlot, tag) {
|
|
4312
4305
|
if (componentName) {
|
|
4313
|
-
return `${componentName}${capitalize(componentSlot || "")}`;
|
|
4306
|
+
return `${componentName}${capitalize$1(componentSlot || "")}`;
|
|
4314
4307
|
}
|
|
4315
4308
|
return `Styled(${getDisplayName(tag)})`;
|
|
4316
4309
|
}
|
|
@@ -4342,7 +4335,7 @@ function lowercaseFirstLetter(string) {
|
|
|
4342
4335
|
return string.charAt(0).toLowerCase() + string.slice(1);
|
|
4343
4336
|
}
|
|
4344
4337
|
const styled$1 = createStyled();
|
|
4345
|
-
function resolveProps(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
4338
|
+
function resolveProps$1(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
4346
4339
|
const output = {
|
|
4347
4340
|
...props
|
|
4348
4341
|
};
|
|
@@ -4368,7 +4361,7 @@ function resolveProps(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
|
4368
4361
|
for (const slotKey in defaultSlotProps) {
|
|
4369
4362
|
if (Object.prototype.hasOwnProperty.call(defaultSlotProps, slotKey)) {
|
|
4370
4363
|
const slotPropName = slotKey;
|
|
4371
|
-
output[propName][slotPropName] = resolveProps(defaultSlotProps[slotPropName], slotProps[slotPropName], mergeClassNameAndStyle);
|
|
4364
|
+
output[propName][slotPropName] = resolveProps$1(defaultSlotProps[slotPropName], slotProps[slotPropName], mergeClassNameAndStyle);
|
|
4372
4365
|
}
|
|
4373
4366
|
}
|
|
4374
4367
|
}
|
|
@@ -4395,7 +4388,7 @@ function getThemeProps$1(params) {
|
|
|
4395
4388
|
if (!theme || !theme.components || !theme.components[name] || !theme.components[name].defaultProps) {
|
|
4396
4389
|
return props;
|
|
4397
4390
|
}
|
|
4398
|
-
return resolveProps(theme.components[name].defaultProps, props);
|
|
4391
|
+
return resolveProps$1(theme.components[name].defaultProps, props);
|
|
4399
4392
|
}
|
|
4400
4393
|
function useThemeProps$3({
|
|
4401
4394
|
props,
|
|
@@ -4413,7 +4406,7 @@ function useThemeProps$3({
|
|
|
4413
4406
|
props
|
|
4414
4407
|
});
|
|
4415
4408
|
}
|
|
4416
|
-
const useEnhancedEffect = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
4409
|
+
const useEnhancedEffect$1 = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
4417
4410
|
function useMediaQueryOld(query, defaultMatches, matchMedia, ssrMatchMedia, noSsr) {
|
|
4418
4411
|
const [match2, setMatch] = React__namespace.useState(() => {
|
|
4419
4412
|
if (noSsr && matchMedia) {
|
|
@@ -4424,7 +4417,7 @@ function useMediaQueryOld(query, defaultMatches, matchMedia, ssrMatchMedia, noSs
|
|
|
4424
4417
|
}
|
|
4425
4418
|
return defaultMatches;
|
|
4426
4419
|
});
|
|
4427
|
-
useEnhancedEffect(() => {
|
|
4420
|
+
useEnhancedEffect$1(() => {
|
|
4428
4421
|
if (!matchMedia) {
|
|
4429
4422
|
return void 0;
|
|
4430
4423
|
}
|
|
@@ -4440,10 +4433,10 @@ function useMediaQueryOld(query, defaultMatches, matchMedia, ssrMatchMedia, noSs
|
|
|
4440
4433
|
}, [query, matchMedia]);
|
|
4441
4434
|
return match2;
|
|
4442
4435
|
}
|
|
4443
|
-
const safeReact$
|
|
4436
|
+
const safeReact$2 = {
|
|
4444
4437
|
...React__namespace
|
|
4445
4438
|
};
|
|
4446
|
-
const maybeReactUseSyncExternalStore = safeReact$
|
|
4439
|
+
const maybeReactUseSyncExternalStore = safeReact$2.useSyncExternalStore;
|
|
4447
4440
|
function useMediaQueryNew(query, defaultMatches, matchMedia, ssrMatchMedia, noSsr) {
|
|
4448
4441
|
const getDefaultSnapshot = React__namespace.useCallback(() => defaultMatches, [defaultMatches]);
|
|
4449
4442
|
const getServerSnapshot = React__namespace.useMemo(() => {
|
|
@@ -4558,7 +4551,7 @@ function decomposeColor(color2) {
|
|
|
4558
4551
|
const type = color2.substring(0, marker);
|
|
4559
4552
|
if (!["rgb", "rgba", "hsl", "hsla", "color"].includes(type)) {
|
|
4560
4553
|
throw new Error(process.env.NODE_ENV !== "production" ? `MUI: Unsupported \`${color2}\` color.
|
|
4561
|
-
The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().` : formatMuiErrorMessage(9, color2));
|
|
4554
|
+
The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().` : formatMuiErrorMessage$1(9, color2));
|
|
4562
4555
|
}
|
|
4563
4556
|
let values2 = color2.substring(marker + 1, color2.length - 1);
|
|
4564
4557
|
let colorSpace;
|
|
@@ -4570,7 +4563,7 @@ The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
|
|
4570
4563
|
}
|
|
4571
4564
|
if (!["srgb", "display-p3", "a98-rgb", "prophoto-rgb", "rec-2020"].includes(colorSpace)) {
|
|
4572
4565
|
throw new Error(process.env.NODE_ENV !== "production" ? `MUI: unsupported \`${colorSpace}\` color space.
|
|
4573
|
-
The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rgb, rec-2020.` : formatMuiErrorMessage(10, colorSpace));
|
|
4566
|
+
The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rgb, rec-2020.` : formatMuiErrorMessage$1(10, colorSpace));
|
|
4574
4567
|
}
|
|
4575
4568
|
} else {
|
|
4576
4569
|
values2 = values2.split(",");
|
|
@@ -4744,14 +4737,14 @@ function private_safeEmphasize(color2, coefficient, warning) {
|
|
|
4744
4737
|
return color2;
|
|
4745
4738
|
}
|
|
4746
4739
|
}
|
|
4747
|
-
const specialProperty = "exact-prop: ";
|
|
4748
|
-
function exactProp(propTypes2) {
|
|
4740
|
+
const specialProperty$1 = "exact-prop: ";
|
|
4741
|
+
function exactProp$1(propTypes2) {
|
|
4749
4742
|
if (process.env.NODE_ENV === "production") {
|
|
4750
4743
|
return propTypes2;
|
|
4751
4744
|
}
|
|
4752
4745
|
return {
|
|
4753
4746
|
...propTypes2,
|
|
4754
|
-
[specialProperty]: (props) => {
|
|
4747
|
+
[specialProperty$1]: (props) => {
|
|
4755
4748
|
const unsupportedProps = Object.keys(props).filter((prop) => !propTypes2.hasOwnProperty(prop));
|
|
4756
4749
|
if (unsupportedProps.length > 0) {
|
|
4757
4750
|
return new Error(`The following props are not supported: ${unsupportedProps.map((prop) => `\`${prop}\``).join(", ")}. Please remove them.`);
|
|
@@ -4824,7 +4817,7 @@ process.env.NODE_ENV !== "production" ? ThemeProvider$2.propTypes = {
|
|
|
4824
4817
|
theme: PropTypes.oneOfType([PropTypes.object, PropTypes.func]).isRequired
|
|
4825
4818
|
} : void 0;
|
|
4826
4819
|
if (process.env.NODE_ENV !== "production") {
|
|
4827
|
-
process.env.NODE_ENV !== "production" ? ThemeProvider$2.propTypes = exactProp(ThemeProvider$2.propTypes) : void 0;
|
|
4820
|
+
process.env.NODE_ENV !== "production" ? ThemeProvider$2.propTypes = exactProp$1(ThemeProvider$2.propTypes) : void 0;
|
|
4828
4821
|
}
|
|
4829
4822
|
const PropsContext = /* @__PURE__ */ React__namespace.createContext(void 0);
|
|
4830
4823
|
function DefaultPropsProvider({
|
|
@@ -4861,10 +4854,10 @@ function getThemeProps(params) {
|
|
|
4861
4854
|
}
|
|
4862
4855
|
const config2 = theme.components[name];
|
|
4863
4856
|
if (config2.defaultProps) {
|
|
4864
|
-
return resolveProps(config2.defaultProps, props, theme.components.mergeClassNameAndStyle);
|
|
4857
|
+
return resolveProps$1(config2.defaultProps, props, theme.components.mergeClassNameAndStyle);
|
|
4865
4858
|
}
|
|
4866
4859
|
if (!config2.styleOverrides && !config2.variants) {
|
|
4867
|
-
return resolveProps(config2, props, theme.components.mergeClassNameAndStyle);
|
|
4860
|
+
return resolveProps$1(config2, props, theme.components.mergeClassNameAndStyle);
|
|
4868
4861
|
}
|
|
4869
4862
|
return props;
|
|
4870
4863
|
}
|
|
@@ -4881,32 +4874,32 @@ function useDefaultProps$1({
|
|
|
4881
4874
|
}
|
|
4882
4875
|
});
|
|
4883
4876
|
}
|
|
4884
|
-
let globalId = 0;
|
|
4885
|
-
function useGlobalId(idOverride) {
|
|
4877
|
+
let globalId$1 = 0;
|
|
4878
|
+
function useGlobalId$1(idOverride) {
|
|
4886
4879
|
const [defaultId, setDefaultId] = React__namespace.useState(idOverride);
|
|
4887
4880
|
const id = idOverride || defaultId;
|
|
4888
4881
|
React__namespace.useEffect(() => {
|
|
4889
4882
|
if (defaultId == null) {
|
|
4890
|
-
globalId += 1;
|
|
4891
|
-
setDefaultId(`mui-${globalId}`);
|
|
4883
|
+
globalId$1 += 1;
|
|
4884
|
+
setDefaultId(`mui-${globalId$1}`);
|
|
4892
4885
|
}
|
|
4893
4886
|
}, [defaultId]);
|
|
4894
4887
|
return id;
|
|
4895
4888
|
}
|
|
4896
|
-
const safeReact = {
|
|
4889
|
+
const safeReact$1 = {
|
|
4897
4890
|
...React__namespace
|
|
4898
4891
|
};
|
|
4899
|
-
const maybeReactUseId = safeReact.useId;
|
|
4900
|
-
function useId(idOverride) {
|
|
4901
|
-
if (maybeReactUseId !== void 0) {
|
|
4902
|
-
const reactId = maybeReactUseId();
|
|
4903
|
-
return
|
|
4892
|
+
const maybeReactUseId$1 = safeReact$1.useId;
|
|
4893
|
+
function useId$1(idOverride) {
|
|
4894
|
+
if (maybeReactUseId$1 !== void 0) {
|
|
4895
|
+
const reactId = maybeReactUseId$1();
|
|
4896
|
+
return reactId;
|
|
4904
4897
|
}
|
|
4905
|
-
return useGlobalId(idOverride);
|
|
4898
|
+
return useGlobalId$1(idOverride);
|
|
4906
4899
|
}
|
|
4907
4900
|
function useLayerOrder(theme) {
|
|
4908
4901
|
const upperTheme = useTheme$3();
|
|
4909
|
-
const id = useId() || "";
|
|
4902
|
+
const id = useId$1() || "";
|
|
4910
4903
|
const {
|
|
4911
4904
|
modularCssLayers
|
|
4912
4905
|
} = theme;
|
|
@@ -4918,7 +4911,7 @@ function useLayerOrder(theme) {
|
|
|
4918
4911
|
} else {
|
|
4919
4912
|
layerOrder = `@layer ${layerOrder};`;
|
|
4920
4913
|
}
|
|
4921
|
-
useEnhancedEffect(() => {
|
|
4914
|
+
useEnhancedEffect$1(() => {
|
|
4922
4915
|
var _a, _b;
|
|
4923
4916
|
const head = document.querySelector("head");
|
|
4924
4917
|
if (!head) {
|
|
@@ -5018,7 +5011,7 @@ process.env.NODE_ENV !== "production" ? ThemeProvider$1.propTypes = {
|
|
|
5018
5011
|
themeId: PropTypes.string
|
|
5019
5012
|
} : void 0;
|
|
5020
5013
|
if (process.env.NODE_ENV !== "production") {
|
|
5021
|
-
process.env.NODE_ENV !== "production" ? ThemeProvider$1.propTypes = exactProp(ThemeProvider$1.propTypes) : void 0;
|
|
5014
|
+
process.env.NODE_ENV !== "production" ? ThemeProvider$1.propTypes = exactProp$1(ThemeProvider$1.propTypes) : void 0;
|
|
5022
5015
|
}
|
|
5023
5016
|
const arg = {
|
|
5024
5017
|
theme: void 0
|
|
@@ -5511,7 +5504,7 @@ function createCssVarsProvider(options) {
|
|
|
5511
5504
|
return resolveTheme ? resolveTheme(theme) : theme;
|
|
5512
5505
|
}, [restThemeProp, calculatedColorScheme, components, colorSchemes, cssVarPrefix]);
|
|
5513
5506
|
const colorSchemeSelector = restThemeProp.colorSchemeSelector;
|
|
5514
|
-
useEnhancedEffect(() => {
|
|
5507
|
+
useEnhancedEffect$1(() => {
|
|
5515
5508
|
if (colorScheme && colorSchemeNode && colorSchemeSelector && colorSchemeSelector !== "media") {
|
|
5516
5509
|
const selector = colorSchemeSelector;
|
|
5517
5510
|
let rule = colorSchemeSelector;
|
|
@@ -5803,7 +5796,7 @@ function prepareCssVars(theme, parserConfig = {}) {
|
|
|
5803
5796
|
css,
|
|
5804
5797
|
varsWithDefaults
|
|
5805
5798
|
} = cssVarsParser(scheme, parserConfig);
|
|
5806
|
-
themeVars = deepmerge(themeVars, varsWithDefaults);
|
|
5799
|
+
themeVars = deepmerge$1(themeVars, varsWithDefaults);
|
|
5807
5800
|
colorSchemesMap[key] = {
|
|
5808
5801
|
css,
|
|
5809
5802
|
vars
|
|
@@ -5815,7 +5808,7 @@ function prepareCssVars(theme, parserConfig = {}) {
|
|
|
5815
5808
|
vars,
|
|
5816
5809
|
varsWithDefaults
|
|
5817
5810
|
} = cssVarsParser(defaultScheme, parserConfig);
|
|
5818
|
-
themeVars = deepmerge(themeVars, varsWithDefaults);
|
|
5811
|
+
themeVars = deepmerge$1(themeVars, varsWithDefaults);
|
|
5819
5812
|
colorSchemesMap[defaultColorScheme] = {
|
|
5820
5813
|
css,
|
|
5821
5814
|
vars
|
|
@@ -5861,7 +5854,7 @@ function prepareCssVars(theme, parserConfig = {}) {
|
|
|
5861
5854
|
Object.entries(colorSchemesMap).forEach(([, {
|
|
5862
5855
|
vars: schemeVars
|
|
5863
5856
|
}]) => {
|
|
5864
|
-
vars = deepmerge(vars, schemeVars);
|
|
5857
|
+
vars = deepmerge$1(vars, schemeVars);
|
|
5865
5858
|
});
|
|
5866
5859
|
return vars;
|
|
5867
5860
|
};
|
|
@@ -5959,6 +5952,26 @@ function createGetColorSchemeSelector(selector) {
|
|
|
5959
5952
|
return "&";
|
|
5960
5953
|
};
|
|
5961
5954
|
}
|
|
5955
|
+
function composeClasses(slots, getUtilityClass, classes = void 0) {
|
|
5956
|
+
const output = {};
|
|
5957
|
+
for (const slotName in slots) {
|
|
5958
|
+
const slot = slots[slotName];
|
|
5959
|
+
let buffer = "";
|
|
5960
|
+
let start2 = true;
|
|
5961
|
+
for (let i = 0; i < slot.length; i += 1) {
|
|
5962
|
+
const value = slot[i];
|
|
5963
|
+
if (value) {
|
|
5964
|
+
buffer += (start2 === true ? "" : " ") + getUtilityClass(value);
|
|
5965
|
+
start2 = false;
|
|
5966
|
+
if (classes && classes[value]) {
|
|
5967
|
+
buffer += " " + classes[value];
|
|
5968
|
+
}
|
|
5969
|
+
}
|
|
5970
|
+
}
|
|
5971
|
+
output[slotName] = buffer;
|
|
5972
|
+
}
|
|
5973
|
+
return output;
|
|
5974
|
+
}
|
|
5962
5975
|
const defaultTheme$4 = createTheme$1();
|
|
5963
5976
|
const defaultCreateStyledComponent$2 = styled$1("div", {
|
|
5964
5977
|
name: "MuiContainer",
|
|
@@ -5967,7 +5980,7 @@ const defaultCreateStyledComponent$2 = styled$1("div", {
|
|
|
5967
5980
|
const {
|
|
5968
5981
|
ownerState
|
|
5969
5982
|
} = props;
|
|
5970
|
-
return [styles2.root, styles2[`maxWidth${capitalize(String(ownerState.maxWidth))}`], ownerState.fixed && styles2.fixed, ownerState.disableGutters && styles2.disableGutters];
|
|
5983
|
+
return [styles2.root, styles2[`maxWidth${capitalize$1(String(ownerState.maxWidth))}`], ownerState.fixed && styles2.fixed, ownerState.disableGutters && styles2.disableGutters];
|
|
5971
5984
|
}
|
|
5972
5985
|
});
|
|
5973
5986
|
const useThemePropsDefault$2 = (inProps) => useThemeProps$3({
|
|
@@ -5977,7 +5990,7 @@ const useThemePropsDefault$2 = (inProps) => useThemeProps$3({
|
|
|
5977
5990
|
});
|
|
5978
5991
|
const useUtilityClasses$1W = (ownerState, componentName) => {
|
|
5979
5992
|
const getContainerUtilityClass2 = (slot) => {
|
|
5980
|
-
return generateUtilityClass(componentName, slot);
|
|
5993
|
+
return generateUtilityClass$1(componentName, slot);
|
|
5981
5994
|
};
|
|
5982
5995
|
const {
|
|
5983
5996
|
classes,
|
|
@@ -5986,7 +5999,7 @@ const useUtilityClasses$1W = (ownerState, componentName) => {
|
|
|
5986
5999
|
maxWidth: maxWidth2
|
|
5987
6000
|
} = ownerState;
|
|
5988
6001
|
const slots = {
|
|
5989
|
-
root: ["root", maxWidth2 && `maxWidth${capitalize(String(maxWidth2))}`, fixed && "fixed", disableGutters && "disableGutters"]
|
|
6002
|
+
root: ["root", maxWidth2 && `maxWidth${capitalize$1(String(maxWidth2))}`, fixed && "fixed", disableGutters && "disableGutters"]
|
|
5990
6003
|
};
|
|
5991
6004
|
return composeClasses(slots, getContainerUtilityClass2, classes);
|
|
5992
6005
|
};
|
|
@@ -6089,7 +6102,7 @@ function createContainer(options = {}) {
|
|
|
6089
6102
|
} : void 0;
|
|
6090
6103
|
return Container2;
|
|
6091
6104
|
}
|
|
6092
|
-
function isMuiElement(element, muiNames) {
|
|
6105
|
+
function isMuiElement$1(element, muiNames) {
|
|
6093
6106
|
var _a, _b, _c;
|
|
6094
6107
|
return /* @__PURE__ */ React__namespace.isValidElement(element) && muiNames.indexOf(
|
|
6095
6108
|
// For server components `muiName` is available in element.type._payload.value.muiName
|
|
@@ -6393,7 +6406,7 @@ function createGrid(options = {}) {
|
|
|
6393
6406
|
const slots = {
|
|
6394
6407
|
root: ["root", container && "container", wrap !== "wrap" && `wrap-xs-${String(wrap)}`, ...generateDirectionClasses(direction), ...generateSizeClassNames(size), ...container ? generateSpacingClassNames(spacing, theme.breakpoints.keys[0]) : []]
|
|
6395
6408
|
};
|
|
6396
|
-
return composeClasses(slots, (slot) => generateUtilityClass(componentName, slot), {});
|
|
6409
|
+
return composeClasses(slots, (slot) => generateUtilityClass$1(componentName, slot), {});
|
|
6397
6410
|
};
|
|
6398
6411
|
function parseResponsiveProp(propValue, breakpoints, shouldUseValue = () => true) {
|
|
6399
6412
|
const parsedProp = {};
|
|
@@ -6468,7 +6481,7 @@ function createGrid(options = {}) {
|
|
|
6468
6481
|
...other,
|
|
6469
6482
|
children: React__namespace.Children.map(children, (child) => {
|
|
6470
6483
|
var _a;
|
|
6471
|
-
if (/* @__PURE__ */ React__namespace.isValidElement(child) && isMuiElement(child, ["Grid"]) && container && child.props.container) {
|
|
6484
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(child) && isMuiElement$1(child, ["Grid"]) && container && child.props.container) {
|
|
6472
6485
|
return /* @__PURE__ */ React__namespace.cloneElement(child, {
|
|
6473
6486
|
unstable_level: ((_a = child.props) == null ? void 0 : _a.unstable_level) ?? level + 1
|
|
6474
6487
|
});
|
|
@@ -6585,7 +6598,7 @@ const style = ({
|
|
|
6585
6598
|
}
|
|
6586
6599
|
};
|
|
6587
6600
|
};
|
|
6588
|
-
styles2 = deepmerge(styles2, handleBreakpoints({
|
|
6601
|
+
styles2 = deepmerge$1(styles2, handleBreakpoints({
|
|
6589
6602
|
theme
|
|
6590
6603
|
}, spacingValues, styleFromPropValue));
|
|
6591
6604
|
}
|
|
@@ -6603,7 +6616,7 @@ function createStack(options = {}) {
|
|
|
6603
6616
|
const slots = {
|
|
6604
6617
|
root: ["root"]
|
|
6605
6618
|
};
|
|
6606
|
-
return composeClasses(slots, (slot) => generateUtilityClass(componentName, slot), {});
|
|
6619
|
+
return composeClasses(slots, (slot) => generateUtilityClass$1(componentName, slot), {});
|
|
6607
6620
|
};
|
|
6608
6621
|
const StackRoot = createStyledComponent(style);
|
|
6609
6622
|
const Stack2 = /* @__PURE__ */ React__namespace.forwardRef(function Grid2(inProps, ref) {
|
|
@@ -6643,6 +6656,50 @@ function createStack(options = {}) {
|
|
|
6643
6656
|
} : void 0;
|
|
6644
6657
|
return Stack2;
|
|
6645
6658
|
}
|
|
6659
|
+
function formatMuiErrorMessage(code, ...args) {
|
|
6660
|
+
const url = new URL(`https://mui.com/production-error/?code=${code}`);
|
|
6661
|
+
args.forEach((arg2) => url.searchParams.append("args[]", arg2));
|
|
6662
|
+
return `Minified MUI error #${code}; visit ${url} for the full message.`;
|
|
6663
|
+
}
|
|
6664
|
+
function isPlainObject(item) {
|
|
6665
|
+
if (typeof item !== "object" || item === null) {
|
|
6666
|
+
return false;
|
|
6667
|
+
}
|
|
6668
|
+
const prototype = Object.getPrototypeOf(item);
|
|
6669
|
+
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in item) && !(Symbol.iterator in item);
|
|
6670
|
+
}
|
|
6671
|
+
function deepClone(source) {
|
|
6672
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(source) || reactIsExports.isValidElementType(source) || !isPlainObject(source)) {
|
|
6673
|
+
return source;
|
|
6674
|
+
}
|
|
6675
|
+
const output = {};
|
|
6676
|
+
Object.keys(source).forEach((key) => {
|
|
6677
|
+
output[key] = deepClone(source[key]);
|
|
6678
|
+
});
|
|
6679
|
+
return output;
|
|
6680
|
+
}
|
|
6681
|
+
function deepmerge(target, source, options = {
|
|
6682
|
+
clone: true
|
|
6683
|
+
}) {
|
|
6684
|
+
const output = options.clone ? {
|
|
6685
|
+
...target
|
|
6686
|
+
} : target;
|
|
6687
|
+
if (isPlainObject(target) && isPlainObject(source)) {
|
|
6688
|
+
Object.keys(source).forEach((key) => {
|
|
6689
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(source[key]) || reactIsExports.isValidElementType(source[key])) {
|
|
6690
|
+
output[key] = source[key];
|
|
6691
|
+
} else if (isPlainObject(source[key]) && // Avoid prototype pollution
|
|
6692
|
+
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject(target[key])) {
|
|
6693
|
+
output[key] = deepmerge(target[key], source[key], options);
|
|
6694
|
+
} else if (options.clone) {
|
|
6695
|
+
output[key] = isPlainObject(source[key]) ? deepClone(source[key]) : source[key];
|
|
6696
|
+
} else {
|
|
6697
|
+
output[key] = source[key];
|
|
6698
|
+
}
|
|
6699
|
+
});
|
|
6700
|
+
}
|
|
6701
|
+
return output;
|
|
6702
|
+
}
|
|
6646
6703
|
const common = {
|
|
6647
6704
|
black: "#000",
|
|
6648
6705
|
white: "#fff"
|
|
@@ -7096,6 +7153,40 @@ function prepareTypographyVars(typography) {
|
|
|
7096
7153
|
});
|
|
7097
7154
|
return vars;
|
|
7098
7155
|
}
|
|
7156
|
+
const defaultGenerator = (componentName) => componentName;
|
|
7157
|
+
const createClassNameGenerator = () => {
|
|
7158
|
+
let generate = defaultGenerator;
|
|
7159
|
+
return {
|
|
7160
|
+
configure(generator) {
|
|
7161
|
+
generate = generator;
|
|
7162
|
+
},
|
|
7163
|
+
generate(componentName) {
|
|
7164
|
+
return generate(componentName);
|
|
7165
|
+
},
|
|
7166
|
+
reset() {
|
|
7167
|
+
generate = defaultGenerator;
|
|
7168
|
+
}
|
|
7169
|
+
};
|
|
7170
|
+
};
|
|
7171
|
+
const ClassNameGenerator = createClassNameGenerator();
|
|
7172
|
+
const globalStateClasses = {
|
|
7173
|
+
active: "active",
|
|
7174
|
+
checked: "checked",
|
|
7175
|
+
completed: "completed",
|
|
7176
|
+
disabled: "disabled",
|
|
7177
|
+
error: "error",
|
|
7178
|
+
expanded: "expanded",
|
|
7179
|
+
focused: "focused",
|
|
7180
|
+
focusVisible: "focusVisible",
|
|
7181
|
+
open: "open",
|
|
7182
|
+
readOnly: "readOnly",
|
|
7183
|
+
required: "required",
|
|
7184
|
+
selected: "selected"
|
|
7185
|
+
};
|
|
7186
|
+
function generateUtilityClass(componentName, slot, globalStatePrefix = "Mui") {
|
|
7187
|
+
const globalStateClass = globalStateClasses[slot];
|
|
7188
|
+
return globalStateClass ? `${globalStatePrefix}-${globalStateClass}` : `${ClassNameGenerator.generate(componentName)}-${slot}`;
|
|
7189
|
+
}
|
|
7099
7190
|
function createMixins(breakpoints, mixins) {
|
|
7100
7191
|
return {
|
|
7101
7192
|
toolbar: {
|
|
@@ -8144,6 +8235,12 @@ function animate(property, element, to, options = {}, cb = () => {
|
|
|
8144
8235
|
requestAnimationFrame(step);
|
|
8145
8236
|
return cancel;
|
|
8146
8237
|
}
|
|
8238
|
+
function capitalize(string) {
|
|
8239
|
+
if (typeof string !== "string") {
|
|
8240
|
+
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `capitalize(string)` expects a string argument." : formatMuiErrorMessage(7));
|
|
8241
|
+
}
|
|
8242
|
+
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
8243
|
+
}
|
|
8147
8244
|
function createChainedFunction(...funcs) {
|
|
8148
8245
|
return funcs.reduce((acc, func) => {
|
|
8149
8246
|
if (func == null) {
|
|
@@ -8156,6 +8253,13 @@ function createChainedFunction(...funcs) {
|
|
|
8156
8253
|
}, () => {
|
|
8157
8254
|
});
|
|
8158
8255
|
}
|
|
8256
|
+
function generateUtilityClasses(componentName, slots, globalStatePrefix = "Mui") {
|
|
8257
|
+
const result = {};
|
|
8258
|
+
slots.forEach((slot) => {
|
|
8259
|
+
result[slot] = generateUtilityClass(componentName, slot, globalStatePrefix);
|
|
8260
|
+
});
|
|
8261
|
+
return result;
|
|
8262
|
+
}
|
|
8159
8263
|
function getSvgIconUtilityClass(slot) {
|
|
8160
8264
|
return generateUtilityClass("MuiSvgIcon", slot);
|
|
8161
8265
|
}
|
|
@@ -8169,7 +8273,7 @@ const useUtilityClasses$1V = (ownerState) => {
|
|
|
8169
8273
|
const slots = {
|
|
8170
8274
|
root: ["root", color2 !== "inherit" && `color${capitalize(color2)}`, `fontSize${capitalize(fontSize)}`]
|
|
8171
8275
|
};
|
|
8172
|
-
return composeClasses(slots, getSvgIconUtilityClass, classes);
|
|
8276
|
+
return composeClasses$1(slots, getSvgIconUtilityClass, classes);
|
|
8173
8277
|
};
|
|
8174
8278
|
const SvgIconRoot = styled("svg", {
|
|
8175
8279
|
name: "MuiSvgIcon",
|
|
@@ -8411,6 +8515,15 @@ function createSvgIcon(path, displayName) {
|
|
|
8411
8515
|
Component.muiName = SvgIcon.muiName;
|
|
8412
8516
|
return /* @__PURE__ */ React__namespace.memo(/* @__PURE__ */ React__namespace.forwardRef(Component));
|
|
8413
8517
|
}
|
|
8518
|
+
function isMuiElement(element, muiNames) {
|
|
8519
|
+
var _a, _b, _c;
|
|
8520
|
+
return /* @__PURE__ */ React__namespace.isValidElement(element) && muiNames.indexOf(
|
|
8521
|
+
// For server components `muiName` is available in element.type._payload.value.muiName
|
|
8522
|
+
// relevant info - https://github.com/facebook/react/blob/2807d781a08db8e9873687fccc25c0f12b4fb3d4/packages/react/src/ReactLazy.js#L45
|
|
8523
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
8524
|
+
element.type.muiName ?? ((_c = (_b = (_a = element.type) == null ? void 0 : _a._payload) == null ? void 0 : _b.value) == null ? void 0 : _c.muiName)
|
|
8525
|
+
) !== -1;
|
|
8526
|
+
}
|
|
8414
8527
|
function ownerDocument(node2) {
|
|
8415
8528
|
return node2 && node2.ownerDocument || document;
|
|
8416
8529
|
}
|
|
@@ -8448,6 +8561,30 @@ function setRef(ref, value) {
|
|
|
8448
8561
|
ref.current = value;
|
|
8449
8562
|
}
|
|
8450
8563
|
}
|
|
8564
|
+
const useEnhancedEffect = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
8565
|
+
let globalId = 0;
|
|
8566
|
+
function useGlobalId(idOverride) {
|
|
8567
|
+
const [defaultId, setDefaultId] = React__namespace.useState(idOverride);
|
|
8568
|
+
const id = idOverride || defaultId;
|
|
8569
|
+
React__namespace.useEffect(() => {
|
|
8570
|
+
if (defaultId == null) {
|
|
8571
|
+
globalId += 1;
|
|
8572
|
+
setDefaultId(`mui-${globalId}`);
|
|
8573
|
+
}
|
|
8574
|
+
}, [defaultId]);
|
|
8575
|
+
return id;
|
|
8576
|
+
}
|
|
8577
|
+
const safeReact = {
|
|
8578
|
+
...React__namespace
|
|
8579
|
+
};
|
|
8580
|
+
const maybeReactUseId = safeReact.useId;
|
|
8581
|
+
function useId(idOverride) {
|
|
8582
|
+
if (maybeReactUseId !== void 0) {
|
|
8583
|
+
const reactId = maybeReactUseId();
|
|
8584
|
+
return idOverride ?? reactId;
|
|
8585
|
+
}
|
|
8586
|
+
return useGlobalId(idOverride);
|
|
8587
|
+
}
|
|
8451
8588
|
function unsupportedProp(props, propName, componentName, location, propFullName) {
|
|
8452
8589
|
if (process.env.NODE_ENV === "production") {
|
|
8453
8590
|
return null;
|
|
@@ -10142,7 +10279,7 @@ const useUtilityClasses$1U = (ownerState) => {
|
|
|
10142
10279
|
const slots = {
|
|
10143
10280
|
root: ["root", disabled && "disabled", focusVisible && "focusVisible"]
|
|
10144
10281
|
};
|
|
10145
|
-
const composedClasses = composeClasses(slots, getButtonBaseUtilityClass, classes);
|
|
10282
|
+
const composedClasses = composeClasses$1(slots, getButtonBaseUtilityClass, classes);
|
|
10146
10283
|
if (focusVisible && focusVisibleClassName) {
|
|
10147
10284
|
composedClasses.root += ` ${focusVisibleClassName}`;
|
|
10148
10285
|
}
|
|
@@ -10560,7 +10697,7 @@ const useUtilityClasses$1T = (ownerState) => {
|
|
|
10560
10697
|
const slots = {
|
|
10561
10698
|
root: ["root", orientation, disabled && "disabled"]
|
|
10562
10699
|
};
|
|
10563
|
-
return composeClasses(slots, getTabScrollButtonUtilityClass, classes);
|
|
10700
|
+
return composeClasses$1(slots, getTabScrollButtonUtilityClass, classes);
|
|
10564
10701
|
};
|
|
10565
10702
|
const TabScrollButtonRoot = styled(ButtonBase, {
|
|
10566
10703
|
name: "MuiTabScrollButton",
|
|
@@ -10817,7 +10954,7 @@ const useUtilityClasses$1S = (ownerState) => {
|
|
|
10817
10954
|
scrollableX: [scrollableX && "scrollableX"],
|
|
10818
10955
|
hideScrollbar: [hideScrollbar && "hideScrollbar"]
|
|
10819
10956
|
};
|
|
10820
|
-
return composeClasses(slots, getTabsUtilityClass, classes);
|
|
10957
|
+
return composeClasses$1(slots, getTabsUtilityClass, classes);
|
|
10821
10958
|
};
|
|
10822
10959
|
const TabsRoot = styled("div", {
|
|
10823
10960
|
name: "MuiTabs",
|
|
@@ -12103,7 +12240,7 @@ const useUtilityClasses$1R = (ownerState) => {
|
|
|
12103
12240
|
const slots = {
|
|
12104
12241
|
root: ["root", hidden && "hidden"]
|
|
12105
12242
|
};
|
|
12106
|
-
return composeClasses(slots, getTabPanelUtilityClass, classes);
|
|
12243
|
+
return composeClasses$1(slots, getTabPanelUtilityClass, classes);
|
|
12107
12244
|
};
|
|
12108
12245
|
const TabPanelRoot = styled("div", {
|
|
12109
12246
|
name: "MuiTabPanel",
|
|
@@ -12208,7 +12345,7 @@ const useUtilityClasses$1Q = (ownerState) => {
|
|
|
12208
12345
|
wrapper: ["wrapper", `${orientation}`],
|
|
12209
12346
|
wrapperInner: ["wrapperInner", `${orientation}`]
|
|
12210
12347
|
};
|
|
12211
|
-
return composeClasses(slots, getCollapseUtilityClass, classes);
|
|
12348
|
+
return composeClasses$1(slots, getCollapseUtilityClass, classes);
|
|
12212
12349
|
};
|
|
12213
12350
|
const CollapseRoot = styled("div", {
|
|
12214
12351
|
name: "MuiCollapse",
|
|
@@ -12632,7 +12769,7 @@ const useUtilityClasses$1P = (ownerState) => {
|
|
|
12632
12769
|
const slots = {
|
|
12633
12770
|
root: ["root", variant, !square && "rounded", variant === "elevation" && `elevation${elevation}`]
|
|
12634
12771
|
};
|
|
12635
|
-
return composeClasses(slots, getPaperUtilityClass, classes);
|
|
12772
|
+
return composeClasses$1(slots, getPaperUtilityClass, classes);
|
|
12636
12773
|
};
|
|
12637
12774
|
const PaperRoot = styled("div", {
|
|
12638
12775
|
name: "MuiPaper",
|
|
@@ -12798,7 +12935,7 @@ const useUtilityClasses$1O = (ownerState) => {
|
|
|
12798
12935
|
heading: ["heading"],
|
|
12799
12936
|
region: ["region"]
|
|
12800
12937
|
};
|
|
12801
|
-
return composeClasses(slots, getAccordionUtilityClass, classes);
|
|
12938
|
+
return composeClasses$1(slots, getAccordionUtilityClass, classes);
|
|
12802
12939
|
};
|
|
12803
12940
|
const AccordionRoot = styled(Paper, {
|
|
12804
12941
|
name: "MuiAccordion",
|
|
@@ -13119,7 +13256,7 @@ const useUtilityClasses$1N = (ownerState) => {
|
|
|
13119
13256
|
const slots = {
|
|
13120
13257
|
root: ["root", !disableSpacing && "spacing"]
|
|
13121
13258
|
};
|
|
13122
|
-
return composeClasses(slots, getAccordionActionsUtilityClass, classes);
|
|
13259
|
+
return composeClasses$1(slots, getAccordionActionsUtilityClass, classes);
|
|
13123
13260
|
};
|
|
13124
13261
|
const AccordionActionsRoot = styled("div", {
|
|
13125
13262
|
name: "MuiAccordionActions",
|
|
@@ -13204,7 +13341,7 @@ const useUtilityClasses$1M = (ownerState) => {
|
|
|
13204
13341
|
const slots = {
|
|
13205
13342
|
root: ["root"]
|
|
13206
13343
|
};
|
|
13207
|
-
return composeClasses(slots, getAccordionDetailsUtilityClass, classes);
|
|
13344
|
+
return composeClasses$1(slots, getAccordionDetailsUtilityClass, classes);
|
|
13208
13345
|
};
|
|
13209
13346
|
const AccordionDetailsRoot = styled("div", {
|
|
13210
13347
|
name: "MuiAccordionDetails",
|
|
@@ -13271,7 +13408,7 @@ const useUtilityClasses$1L = (ownerState) => {
|
|
|
13271
13408
|
content: ["content", expanded && "expanded", !disableGutters && "contentGutters"],
|
|
13272
13409
|
expandIconWrapper: ["expandIconWrapper", expanded && "expanded"]
|
|
13273
13410
|
};
|
|
13274
|
-
return composeClasses(slots, getAccordionSummaryUtilityClass, classes);
|
|
13411
|
+
return composeClasses$1(slots, getAccordionSummaryUtilityClass, classes);
|
|
13275
13412
|
};
|
|
13276
13413
|
const AccordionSummaryRoot = styled(ButtonBase, {
|
|
13277
13414
|
name: "MuiAccordionSummary",
|
|
@@ -13536,7 +13673,7 @@ const useUtilityClasses$1K = (ownerState) => {
|
|
|
13536
13673
|
const slots = {
|
|
13537
13674
|
root: ["root", variant, ownerState.align !== "inherit" && `align${capitalize(align)}`, gutterBottom && "gutterBottom", noWrap && "noWrap", paragraph && "paragraph"]
|
|
13538
13675
|
};
|
|
13539
|
-
return composeClasses(slots, getTypographyUtilityClass, classes);
|
|
13676
|
+
return composeClasses$1(slots, getTypographyUtilityClass, classes);
|
|
13540
13677
|
};
|
|
13541
13678
|
const TypographyRoot = styled("span", {
|
|
13542
13679
|
name: "MuiTypography",
|
|
@@ -13779,7 +13916,7 @@ const useUtilityClasses$1J = (ownerState) => {
|
|
|
13779
13916
|
const slots = {
|
|
13780
13917
|
root: ["root"]
|
|
13781
13918
|
};
|
|
13782
|
-
return composeClasses(slots, getAlertTitleUtilityClass, classes);
|
|
13919
|
+
return composeClasses$1(slots, getAlertTitleUtilityClass, classes);
|
|
13783
13920
|
};
|
|
13784
13921
|
const AlertTitleRoot = styled(Typography, {
|
|
13785
13922
|
name: "MuiAlertTitle",
|
|
@@ -13847,7 +13984,7 @@ const useUtilityClasses$1I = (ownerState) => {
|
|
|
13847
13984
|
const slots = {
|
|
13848
13985
|
root: ["root", `color${capitalize(color2)}`, `position${capitalize(position2)}`]
|
|
13849
13986
|
};
|
|
13850
|
-
return composeClasses(slots, getAppBarUtilityClass, classes);
|
|
13987
|
+
return composeClasses$1(slots, getAppBarUtilityClass, classes);
|
|
13851
13988
|
};
|
|
13852
13989
|
const joinVars = (var1, var2) => var1 ? `${var1 == null ? void 0 : var1.replace(")", "")}, ${var2})` : var2;
|
|
13853
13990
|
const AppBarRoot = styled(Paper, {
|
|
@@ -16376,6 +16513,22 @@ function getReactElementRef(element) {
|
|
|
16376
16513
|
}
|
|
16377
16514
|
return (element == null ? void 0 : element.ref) || null;
|
|
16378
16515
|
}
|
|
16516
|
+
const specialProperty = "exact-prop: ";
|
|
16517
|
+
function exactProp(propTypes2) {
|
|
16518
|
+
if (process.env.NODE_ENV === "production") {
|
|
16519
|
+
return propTypes2;
|
|
16520
|
+
}
|
|
16521
|
+
return {
|
|
16522
|
+
...propTypes2,
|
|
16523
|
+
[specialProperty]: (props) => {
|
|
16524
|
+
const unsupportedProps = Object.keys(props).filter((prop) => !propTypes2.hasOwnProperty(prop));
|
|
16525
|
+
if (unsupportedProps.length > 0) {
|
|
16526
|
+
return new Error(`The following props are not supported: ${unsupportedProps.map((prop) => `\`${prop}\``).join(", ")}. Please remove them.`);
|
|
16527
|
+
}
|
|
16528
|
+
return null;
|
|
16529
|
+
}
|
|
16530
|
+
};
|
|
16531
|
+
}
|
|
16379
16532
|
function getContainer$1(container) {
|
|
16380
16533
|
return typeof container === "function" ? container() : container;
|
|
16381
16534
|
}
|
|
@@ -16478,7 +16631,7 @@ const useUtilityClasses$1H = (ownerState) => {
|
|
|
16478
16631
|
const slots = {
|
|
16479
16632
|
root: ["root"]
|
|
16480
16633
|
};
|
|
16481
|
-
return composeClasses(slots, getPopperUtilityClass, classes);
|
|
16634
|
+
return composeClasses$1(slots, getPopperUtilityClass, classes);
|
|
16482
16635
|
};
|
|
16483
16636
|
const defaultPopperOptions = {};
|
|
16484
16637
|
const PopperTooltip = /* @__PURE__ */ React__namespace.forwardRef(function PopperTooltip2(props, forwardedRef) {
|
|
@@ -16990,7 +17143,7 @@ const useUtilityClasses$1G = (ownerState) => {
|
|
|
16990
17143
|
const slots = {
|
|
16991
17144
|
root: ["root", color2 !== "default" && `color${capitalize(color2)}`, !disableGutters && "gutters", inset && "inset", !disableSticky && "sticky"]
|
|
16992
17145
|
};
|
|
16993
|
-
return composeClasses(slots, getListSubheaderUtilityClass, classes);
|
|
17146
|
+
return composeClasses$1(slots, getListSubheaderUtilityClass, classes);
|
|
16994
17147
|
};
|
|
16995
17148
|
const ListSubheaderRoot = styled("li", {
|
|
16996
17149
|
name: "MuiListSubheader",
|
|
@@ -17182,7 +17335,7 @@ const useUtilityClasses$1F = (ownerState) => {
|
|
|
17182
17335
|
track: ["track"],
|
|
17183
17336
|
circle: ["circle", `circle${capitalize(variant)}`, disableShrink && "circleDisableShrink"]
|
|
17184
17337
|
};
|
|
17185
|
-
return composeClasses(slots, getCircularProgressUtilityClass, classes);
|
|
17338
|
+
return composeClasses$1(slots, getCircularProgressUtilityClass, classes);
|
|
17186
17339
|
};
|
|
17187
17340
|
const CircularProgressRoot = styled("span", {
|
|
17188
17341
|
name: "MuiCircularProgress",
|
|
@@ -17441,7 +17594,7 @@ const useUtilityClasses$1E = (ownerState) => {
|
|
|
17441
17594
|
loadingIndicator: ["loadingIndicator"],
|
|
17442
17595
|
loadingWrapper: ["loadingWrapper"]
|
|
17443
17596
|
};
|
|
17444
|
-
return composeClasses(slots, getIconButtonUtilityClass, classes);
|
|
17597
|
+
return composeClasses$1(slots, getIconButtonUtilityClass, classes);
|
|
17445
17598
|
};
|
|
17446
17599
|
const IconButtonRoot = styled(ButtonBase, {
|
|
17447
17600
|
name: "MuiIconButton",
|
|
@@ -17745,7 +17898,7 @@ const useUtilityClasses$1D = (ownerState) => {
|
|
|
17745
17898
|
icon: ["icon", `icon${capitalize(size)}`, `iconColor${capitalize(iconColor)}`],
|
|
17746
17899
|
deleteIcon: ["deleteIcon", `deleteIcon${capitalize(size)}`, `deleteIconColor${capitalize(color2)}`, `deleteIcon${capitalize(variant)}Color${capitalize(color2)}`]
|
|
17747
17900
|
};
|
|
17748
|
-
return composeClasses(slots, getChipUtilityClass, classes);
|
|
17901
|
+
return composeClasses$1(slots, getChipUtilityClass, classes);
|
|
17749
17902
|
};
|
|
17750
17903
|
const ChipRoot = styled("div", {
|
|
17751
17904
|
name: "MuiChip",
|
|
@@ -18610,7 +18763,7 @@ const useUtilityClasses$1C = (ownerState) => {
|
|
|
18610
18763
|
root: ["root", `color${capitalize(color2)}`, disabled && "disabled", error && "error", fullWidth && "fullWidth", focused && "focused", formControl && "formControl", size && size !== "medium" && `size${capitalize(size)}`, multiline && "multiline", startAdornment && "adornedStart", endAdornment && "adornedEnd", hiddenLabel && "hiddenLabel", readOnly && "readOnly"],
|
|
18611
18764
|
input: ["input", disabled && "disabled", type === "search" && "inputTypeSearch", multiline && "inputMultiline", size === "small" && "inputSizeSmall", hiddenLabel && "inputHiddenLabel", startAdornment && "inputAdornedStart", endAdornment && "inputAdornedEnd", readOnly && "readOnly"]
|
|
18612
18765
|
};
|
|
18613
|
-
return composeClasses(slots, getInputBaseUtilityClass, classes);
|
|
18766
|
+
return composeClasses$1(slots, getInputBaseUtilityClass, classes);
|
|
18614
18767
|
};
|
|
18615
18768
|
const InputBaseRoot = styled("div", {
|
|
18616
18769
|
name: "MuiInputBase",
|
|
@@ -19347,7 +19500,7 @@ const useUtilityClasses$1B = (ownerState) => {
|
|
|
19347
19500
|
groupLabel: ["groupLabel"],
|
|
19348
19501
|
groupUl: ["groupUl"]
|
|
19349
19502
|
};
|
|
19350
|
-
return composeClasses(slots, getAutocompleteUtilityClass, classes);
|
|
19503
|
+
return composeClasses$1(slots, getAutocompleteUtilityClass, classes);
|
|
19351
19504
|
};
|
|
19352
19505
|
const AutocompleteRoot = styled("div", {
|
|
19353
19506
|
name: "MuiAutocomplete",
|
|
@@ -20500,7 +20653,7 @@ const useUtilityClasses$1A = (ownerState) => {
|
|
|
20500
20653
|
img: ["img"],
|
|
20501
20654
|
fallback: ["fallback"]
|
|
20502
20655
|
};
|
|
20503
|
-
return composeClasses(slots, getAvatarUtilityClass, classes);
|
|
20656
|
+
return composeClasses$1(slots, getAvatarUtilityClass, classes);
|
|
20504
20657
|
};
|
|
20505
20658
|
const AvatarRoot = styled("div", {
|
|
20506
20659
|
name: "MuiAvatar",
|
|
@@ -21016,7 +21169,7 @@ const useUtilityClasses$1z = (ownerState) => {
|
|
|
21016
21169
|
const slots = {
|
|
21017
21170
|
root: ["root", invisible && "invisible"]
|
|
21018
21171
|
};
|
|
21019
|
-
return composeClasses(slots, getBackdropUtilityClass, classes);
|
|
21172
|
+
return composeClasses$1(slots, getBackdropUtilityClass, classes);
|
|
21020
21173
|
};
|
|
21021
21174
|
const BackdropRoot = styled("div", {
|
|
21022
21175
|
name: "MuiBackdrop",
|
|
@@ -21274,7 +21427,7 @@ const useUtilityClasses$1y = (ownerState) => {
|
|
|
21274
21427
|
root: ["root"],
|
|
21275
21428
|
badge: ["badge", variant, invisible && "invisible", `anchorOrigin${capitalize(anchorOrigin.vertical)}${capitalize(anchorOrigin.horizontal)}`, `anchorOrigin${capitalize(anchorOrigin.vertical)}${capitalize(anchorOrigin.horizontal)}${capitalize(overlap)}`, `overlap${capitalize(overlap)}`, color2 !== "default" && `color${capitalize(color2)}`]
|
|
21276
21429
|
};
|
|
21277
|
-
return composeClasses(slots, getBadgeUtilityClass, classes);
|
|
21430
|
+
return composeClasses$1(slots, getBadgeUtilityClass, classes);
|
|
21278
21431
|
};
|
|
21279
21432
|
const BadgeRoot = styled("span", {
|
|
21280
21433
|
name: "MuiBadge",
|
|
@@ -21795,7 +21948,7 @@ const useUtilityClasses$1x = (ownerState) => {
|
|
|
21795
21948
|
ol: ["ol"],
|
|
21796
21949
|
separator: ["separator"]
|
|
21797
21950
|
};
|
|
21798
|
-
return composeClasses(slots, getBreadcrumbsUtilityClass, classes);
|
|
21951
|
+
return composeClasses$1(slots, getBreadcrumbsUtilityClass, classes);
|
|
21799
21952
|
};
|
|
21800
21953
|
const BreadcrumbsRoot = styled(Typography, {
|
|
21801
21954
|
name: "MuiBreadcrumbs",
|
|
@@ -22010,7 +22163,7 @@ const useUtilityClasses$1w = (ownerState) => {
|
|
|
22010
22163
|
const slots = {
|
|
22011
22164
|
root: ["root"]
|
|
22012
22165
|
};
|
|
22013
|
-
return composeClasses(slots, getCardUtilityClass, classes);
|
|
22166
|
+
return composeClasses$1(slots, getCardUtilityClass, classes);
|
|
22014
22167
|
};
|
|
22015
22168
|
const CardRoot = styled(Paper, {
|
|
22016
22169
|
name: "MuiCard",
|
|
@@ -22085,7 +22238,7 @@ const useUtilityClasses$1v = (ownerState) => {
|
|
|
22085
22238
|
root: ["root"],
|
|
22086
22239
|
focusHighlight: ["focusHighlight"]
|
|
22087
22240
|
};
|
|
22088
|
-
return composeClasses(slots, getCardActionAreaUtilityClass, classes);
|
|
22241
|
+
return composeClasses$1(slots, getCardActionAreaUtilityClass, classes);
|
|
22089
22242
|
};
|
|
22090
22243
|
const CardActionAreaRoot = styled(ButtonBase, {
|
|
22091
22244
|
name: "MuiCardActionArea",
|
|
@@ -22229,7 +22382,7 @@ const useUtilityClasses$1u = (ownerState) => {
|
|
|
22229
22382
|
const slots = {
|
|
22230
22383
|
root: ["root", !disableSpacing && "spacing"]
|
|
22231
22384
|
};
|
|
22232
|
-
return composeClasses(slots, getCardActionsUtilityClass, classes);
|
|
22385
|
+
return composeClasses$1(slots, getCardActionsUtilityClass, classes);
|
|
22233
22386
|
};
|
|
22234
22387
|
const CardActionsRoot = styled("div", {
|
|
22235
22388
|
name: "MuiCardActions",
|
|
@@ -22315,7 +22468,7 @@ const useUtilityClasses$1t = (ownerState) => {
|
|
|
22315
22468
|
const slots = {
|
|
22316
22469
|
root: ["root"]
|
|
22317
22470
|
};
|
|
22318
|
-
return composeClasses(slots, getCardContentUtilityClass, classes);
|
|
22471
|
+
return composeClasses$1(slots, getCardContentUtilityClass, classes);
|
|
22319
22472
|
};
|
|
22320
22473
|
const CardContentRoot = styled("div", {
|
|
22321
22474
|
name: "MuiCardContent",
|
|
@@ -22392,7 +22545,7 @@ const useUtilityClasses$1s = (ownerState) => {
|
|
|
22392
22545
|
title: ["title"],
|
|
22393
22546
|
subheader: ["subheader"]
|
|
22394
22547
|
};
|
|
22395
|
-
return composeClasses(slots, getCardHeaderUtilityClass, classes);
|
|
22548
|
+
return composeClasses$1(slots, getCardHeaderUtilityClass, classes);
|
|
22396
22549
|
};
|
|
22397
22550
|
const CardHeaderRoot = styled("div", {
|
|
22398
22551
|
name: "MuiCardHeader",
|
|
@@ -22645,7 +22798,7 @@ const useUtilityClasses$1r = (ownerState) => {
|
|
|
22645
22798
|
const slots = {
|
|
22646
22799
|
root: ["root", isMediaComponent && "media", isImageComponent && "img"]
|
|
22647
22800
|
};
|
|
22648
|
-
return composeClasses(slots, getCardMediaUtilityClass, classes);
|
|
22801
|
+
return composeClasses$1(slots, getCardMediaUtilityClass, classes);
|
|
22649
22802
|
};
|
|
22650
22803
|
const CardMediaRoot = styled("div", {
|
|
22651
22804
|
name: "MuiCardMedia",
|
|
@@ -22784,7 +22937,7 @@ const useUtilityClasses$1q = (ownerState) => {
|
|
|
22784
22937
|
root: ["root", checked && "checked", disabled && "disabled", edge && `edge${capitalize(edge)}`],
|
|
22785
22938
|
input: ["input"]
|
|
22786
22939
|
};
|
|
22787
|
-
return composeClasses(slots, getSwitchBaseUtilityClass, classes);
|
|
22940
|
+
return composeClasses$1(slots, getSwitchBaseUtilityClass, classes);
|
|
22788
22941
|
};
|
|
22789
22942
|
const SwitchBaseRoot = styled(ButtonBase, {
|
|
22790
22943
|
name: "MuiSwitchBase"
|
|
@@ -23132,7 +23285,7 @@ const useUtilityClasses$1p = (ownerState) => {
|
|
|
23132
23285
|
const slots = {
|
|
23133
23286
|
root: ["root", indeterminate && "indeterminate", `color${capitalize(color2)}`, `size${capitalize(size)}`]
|
|
23134
23287
|
};
|
|
23135
|
-
const composedClasses = composeClasses(slots, getCheckboxUtilityClass, classes);
|
|
23288
|
+
const composedClasses = composeClasses$1(slots, getCheckboxUtilityClass, classes);
|
|
23136
23289
|
return {
|
|
23137
23290
|
...classes,
|
|
23138
23291
|
// forward the disabled and checked classes to the SwitchBase
|
|
@@ -23779,7 +23932,7 @@ const useUtilityClasses$1o = (ownerState) => {
|
|
|
23779
23932
|
const slots = {
|
|
23780
23933
|
root: ["root", !disableSpacing && "spacing"]
|
|
23781
23934
|
};
|
|
23782
|
-
return composeClasses(slots, getDialogActionsUtilityClass, classes);
|
|
23935
|
+
return composeClasses$1(slots, getDialogActionsUtilityClass, classes);
|
|
23783
23936
|
};
|
|
23784
23937
|
const DialogActionsRoot = styled("div", {
|
|
23785
23938
|
name: "MuiDialogActions",
|
|
@@ -23872,7 +24025,7 @@ const useUtilityClasses$1n = (ownerState) => {
|
|
|
23872
24025
|
const slots = {
|
|
23873
24026
|
root: ["root", dividers && "dividers"]
|
|
23874
24027
|
};
|
|
23875
|
-
return composeClasses(slots, getDialogContentUtilityClass, classes);
|
|
24028
|
+
return composeClasses$1(slots, getDialogContentUtilityClass, classes);
|
|
23876
24029
|
};
|
|
23877
24030
|
const DialogContentRoot = styled("div", {
|
|
23878
24031
|
name: "MuiDialogContent",
|
|
@@ -23971,7 +24124,7 @@ const useUtilityClasses$1m = (ownerState) => {
|
|
|
23971
24124
|
const slots = {
|
|
23972
24125
|
root: ["root"]
|
|
23973
24126
|
};
|
|
23974
|
-
const composedClasses = composeClasses(slots, getDialogContentTextUtilityClass, classes);
|
|
24127
|
+
const composedClasses = composeClasses$1(slots, getDialogContentTextUtilityClass, classes);
|
|
23975
24128
|
return {
|
|
23976
24129
|
...classes,
|
|
23977
24130
|
// forward classes to the Typography
|
|
@@ -24038,7 +24191,7 @@ const useUtilityClasses$1l = (ownerState) => {
|
|
|
24038
24191
|
const slots = {
|
|
24039
24192
|
root: ["root"]
|
|
24040
24193
|
};
|
|
24041
|
-
return composeClasses(slots, getDialogTitleUtilityClass, classes);
|
|
24194
|
+
return composeClasses$1(slots, getDialogTitleUtilityClass, classes);
|
|
24042
24195
|
};
|
|
24043
24196
|
const DialogTitleRoot = styled(Typography, {
|
|
24044
24197
|
name: "MuiDialogTitle",
|
|
@@ -24117,7 +24270,7 @@ const useUtilityClasses$1k = (ownerState) => {
|
|
|
24117
24270
|
root: ["root", absolute && "absolute", variant, light2 && "light", orientation === "vertical" && "vertical", flexItem && "flexItem", children && "withChildren", children && orientation === "vertical" && "withChildrenVertical", textAlign === "right" && orientation !== "vertical" && "textAlignRight", textAlign === "left" && orientation !== "vertical" && "textAlignLeft"],
|
|
24118
24271
|
wrapper: ["wrapper", orientation === "vertical" && "wrapperVertical"]
|
|
24119
24272
|
};
|
|
24120
|
-
return composeClasses(slots, getDividerUtilityClass, classes);
|
|
24273
|
+
return composeClasses$1(slots, getDividerUtilityClass, classes);
|
|
24121
24274
|
};
|
|
24122
24275
|
const DividerRoot = styled("div", {
|
|
24123
24276
|
name: "MuiDivider",
|
|
@@ -25031,7 +25184,7 @@ const useUtilityClasses$1j = (ownerState) => {
|
|
|
25031
25184
|
root: ["root", !open && exited && "hidden"],
|
|
25032
25185
|
backdrop: ["backdrop"]
|
|
25033
25186
|
};
|
|
25034
|
-
return composeClasses(slots, getModalUtilityClass, classes);
|
|
25187
|
+
return composeClasses$1(slots, getModalUtilityClass, classes);
|
|
25035
25188
|
};
|
|
25036
25189
|
const ModalRoot = styled("div", {
|
|
25037
25190
|
name: "MuiModal",
|
|
@@ -25704,7 +25857,7 @@ const useUtilityClasses$1i = (ownerState) => {
|
|
|
25704
25857
|
modal: ["modal"],
|
|
25705
25858
|
paper: ["paper", `paperAnchor${capitalize(anchor)}`, variant !== "temporary" && `paperAnchorDocked${capitalize(anchor)}`]
|
|
25706
25859
|
};
|
|
25707
|
-
return composeClasses(slots, getDrawerUtilityClass, classes);
|
|
25860
|
+
return composeClasses$1(slots, getDrawerUtilityClass, classes);
|
|
25708
25861
|
};
|
|
25709
25862
|
const DrawerRoot = styled(Modal, {
|
|
25710
25863
|
name: "MuiDrawer",
|
|
@@ -26106,7 +26259,7 @@ const useUtilityClasses$1h = (ownerState) => {
|
|
|
26106
26259
|
const slots = {
|
|
26107
26260
|
root: ["root", margin2 !== "none" && `margin${capitalize(margin2)}`, fullWidth && "fullWidth"]
|
|
26108
26261
|
};
|
|
26109
|
-
return composeClasses(slots, getFormControlUtilityClasses, classes);
|
|
26262
|
+
return composeClasses$1(slots, getFormControlUtilityClasses, classes);
|
|
26110
26263
|
};
|
|
26111
26264
|
const FormControlRoot = styled("div", {
|
|
26112
26265
|
name: "MuiFormControl",
|
|
@@ -26375,7 +26528,7 @@ const useUtilityClasses$1g = (ownerState) => {
|
|
|
26375
26528
|
label: ["label", disabled && "disabled"],
|
|
26376
26529
|
asterisk: ["asterisk", error && "error"]
|
|
26377
26530
|
};
|
|
26378
|
-
return composeClasses(slots, getFormControlLabelUtilityClasses, classes);
|
|
26531
|
+
return composeClasses$1(slots, getFormControlLabelUtilityClasses, classes);
|
|
26379
26532
|
};
|
|
26380
26533
|
const FormControlLabelRoot = styled("label", {
|
|
26381
26534
|
name: "MuiFormControlLabel",
|
|
@@ -26635,7 +26788,7 @@ const useUtilityClasses$1f = (ownerState) => {
|
|
|
26635
26788
|
const slots = {
|
|
26636
26789
|
root: ["root", row && "row", error && "error"]
|
|
26637
26790
|
};
|
|
26638
|
-
return composeClasses(slots, getFormGroupUtilityClass, classes);
|
|
26791
|
+
return composeClasses$1(slots, getFormGroupUtilityClass, classes);
|
|
26639
26792
|
};
|
|
26640
26793
|
const FormGroupRoot = styled("div", {
|
|
26641
26794
|
name: "MuiFormGroup",
|
|
@@ -26734,7 +26887,7 @@ const useUtilityClasses$1e = (ownerState) => {
|
|
|
26734
26887
|
const slots = {
|
|
26735
26888
|
root: ["root", disabled && "disabled", error && "error", size && `size${capitalize(size)}`, contained && "contained", focused && "focused", filled && "filled", required && "required"]
|
|
26736
26889
|
};
|
|
26737
|
-
return composeClasses(slots, getFormHelperTextUtilityClasses, classes);
|
|
26890
|
+
return composeClasses$1(slots, getFormHelperTextUtilityClasses, classes);
|
|
26738
26891
|
};
|
|
26739
26892
|
const FormHelperTextRoot = styled("p", {
|
|
26740
26893
|
name: "MuiFormHelperText",
|
|
@@ -26908,7 +27061,7 @@ const useUtilityClasses$1d = (ownerState) => {
|
|
|
26908
27061
|
root: ["root", `color${capitalize(color2)}`, disabled && "disabled", error && "error", filled && "filled", focused && "focused", required && "required"],
|
|
26909
27062
|
asterisk: ["asterisk", error && "error"]
|
|
26910
27063
|
};
|
|
26911
|
-
return composeClasses(slots, getFormLabelUtilityClasses, classes);
|
|
27064
|
+
return composeClasses$1(slots, getFormLabelUtilityClasses, classes);
|
|
26912
27065
|
};
|
|
26913
27066
|
const FormLabelRoot = styled("label", {
|
|
26914
27067
|
name: "MuiFormLabel",
|
|
@@ -27443,7 +27596,7 @@ const useUtilityClasses$1c = (ownerState) => {
|
|
|
27443
27596
|
root: ["root", !disableUnderline && "underline"],
|
|
27444
27597
|
input: ["input"]
|
|
27445
27598
|
};
|
|
27446
|
-
const composedClasses = composeClasses(slots, getInputUtilityClass, classes);
|
|
27599
|
+
const composedClasses = composeClasses$1(slots, getInputUtilityClass, classes);
|
|
27447
27600
|
return {
|
|
27448
27601
|
...classes,
|
|
27449
27602
|
// forward classes to the InputBase
|
|
@@ -27798,7 +27951,7 @@ const useUtilityClasses$1b = (ownerState) => {
|
|
|
27798
27951
|
root: ["root", formControl && "formControl", !disableAnimation && "animated", shrink && "shrink", size && size !== "medium" && `size${capitalize(size)}`, variant],
|
|
27799
27952
|
asterisk: [required && "asterisk"]
|
|
27800
27953
|
};
|
|
27801
|
-
const composedClasses = composeClasses(slots, getInputLabelUtilityClasses, classes);
|
|
27954
|
+
const composedClasses = composeClasses$1(slots, getInputLabelUtilityClasses, classes);
|
|
27802
27955
|
return {
|
|
27803
27956
|
...classes,
|
|
27804
27957
|
// forward the focused, disabled, etc. classes to the FormLabel
|
|
@@ -28124,7 +28277,7 @@ const useUtilityClasses$1a = (ownerState) => {
|
|
|
28124
28277
|
bar1: ["bar", "bar1", `barColor${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar1Indeterminate", variant === "determinate" && "bar1Determinate", variant === "buffer" && "bar1Buffer"],
|
|
28125
28278
|
bar2: ["bar", "bar2", variant !== "buffer" && `barColor${capitalize(color2)}`, variant === "buffer" && `color${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar2Indeterminate", variant === "buffer" && "bar2Buffer"]
|
|
28126
28279
|
};
|
|
28127
|
-
return composeClasses(slots, getLinearProgressUtilityClass, classes);
|
|
28280
|
+
return composeClasses$1(slots, getLinearProgressUtilityClass, classes);
|
|
28128
28281
|
};
|
|
28129
28282
|
const getColorShade = (theme, color2) => {
|
|
28130
28283
|
if (theme.vars) {
|
|
@@ -28522,7 +28675,7 @@ const useUtilityClasses$19 = (ownerState) => {
|
|
|
28522
28675
|
const slots = {
|
|
28523
28676
|
root: ["root", `underline${capitalize(underline)}`, component === "button" && "button", focusVisible && "focusVisible"]
|
|
28524
28677
|
};
|
|
28525
|
-
return composeClasses(slots, getLinkUtilityClass, classes);
|
|
28678
|
+
return composeClasses$1(slots, getLinkUtilityClass, classes);
|
|
28526
28679
|
};
|
|
28527
28680
|
const LinkRoot = styled(Typography, {
|
|
28528
28681
|
name: "MuiLink",
|
|
@@ -28792,7 +28945,7 @@ const useUtilityClasses$18 = (ownerState) => {
|
|
|
28792
28945
|
const slots = {
|
|
28793
28946
|
root: ["root", !disablePadding && "padding", dense && "dense", subheader && "subheader"]
|
|
28794
28947
|
};
|
|
28795
|
-
return composeClasses(slots, getListUtilityClass, classes);
|
|
28948
|
+
return composeClasses$1(slots, getListUtilityClass, classes);
|
|
28796
28949
|
};
|
|
28797
28950
|
const ListRoot = styled("ul", {
|
|
28798
28951
|
name: "MuiList",
|
|
@@ -28931,7 +29084,7 @@ const useUtilityClasses$17 = (ownerState) => {
|
|
|
28931
29084
|
const slots = {
|
|
28932
29085
|
root: ["root", dense && "dense", !disableGutters && "gutters", divider && "divider", disabled && "disabled", alignItems === "flex-start" && "alignItemsFlexStart", selected && "selected"]
|
|
28933
29086
|
};
|
|
28934
|
-
const composedClasses = composeClasses(slots, getListItemButtonUtilityClass, classes);
|
|
29087
|
+
const composedClasses = composeClasses$1(slots, getListItemButtonUtilityClass, classes);
|
|
28935
29088
|
return {
|
|
28936
29089
|
...classes,
|
|
28937
29090
|
...composedClasses
|
|
@@ -29168,7 +29321,7 @@ const useUtilityClasses$16 = (ownerState) => {
|
|
|
29168
29321
|
const slots = {
|
|
29169
29322
|
root: ["root", disableGutters && "disableGutters"]
|
|
29170
29323
|
};
|
|
29171
|
-
return composeClasses(slots, getListItemSecondaryActionClassesUtilityClass, classes);
|
|
29324
|
+
return composeClasses$1(slots, getListItemSecondaryActionClassesUtilityClass, classes);
|
|
29172
29325
|
};
|
|
29173
29326
|
const ListItemSecondaryActionRoot = styled("div", {
|
|
29174
29327
|
name: "MuiListItemSecondaryAction",
|
|
@@ -29258,7 +29411,7 @@ const useUtilityClasses$15 = (ownerState) => {
|
|
|
29258
29411
|
root: ["root", dense && "dense", !disableGutters && "gutters", !disablePadding && "padding", divider && "divider", alignItems === "flex-start" && "alignItemsFlexStart", hasSecondaryAction && "secondaryAction"],
|
|
29259
29412
|
container: ["container"]
|
|
29260
29413
|
};
|
|
29261
|
-
return composeClasses(slots, getListItemUtilityClass, classes);
|
|
29414
|
+
return composeClasses$1(slots, getListItemUtilityClass, classes);
|
|
29262
29415
|
};
|
|
29263
29416
|
const ListItemRoot = styled("div", {
|
|
29264
29417
|
name: "MuiListItem",
|
|
@@ -29602,7 +29755,7 @@ const useUtilityClasses$14 = (ownerState) => {
|
|
|
29602
29755
|
const slots = {
|
|
29603
29756
|
root: ["root", alignItems === "flex-start" && "alignItemsFlexStart"]
|
|
29604
29757
|
};
|
|
29605
|
-
return composeClasses(slots, getListItemIconUtilityClass, classes);
|
|
29758
|
+
return composeClasses$1(slots, getListItemIconUtilityClass, classes);
|
|
29606
29759
|
};
|
|
29607
29760
|
const ListItemIconRoot = styled("div", {
|
|
29608
29761
|
name: "MuiListItemIcon",
|
|
@@ -29691,7 +29844,7 @@ const useUtilityClasses$13 = (ownerState) => {
|
|
|
29691
29844
|
primary: ["primary"],
|
|
29692
29845
|
secondary: ["secondary"]
|
|
29693
29846
|
};
|
|
29694
|
-
return composeClasses(slots, getListItemTextUtilityClass, classes);
|
|
29847
|
+
return composeClasses$1(slots, getListItemTextUtilityClass, classes);
|
|
29695
29848
|
};
|
|
29696
29849
|
const ListItemTextRoot = styled("div", {
|
|
29697
29850
|
name: "MuiListItemText",
|
|
@@ -30174,7 +30327,7 @@ const useUtilityClasses$12 = (ownerState) => {
|
|
|
30174
30327
|
root: ["root"],
|
|
30175
30328
|
paper: ["paper"]
|
|
30176
30329
|
};
|
|
30177
|
-
return composeClasses(slots, getPopoverUtilityClass, classes);
|
|
30330
|
+
return composeClasses$1(slots, getPopoverUtilityClass, classes);
|
|
30178
30331
|
};
|
|
30179
30332
|
const PopoverRoot = styled(Modal, {
|
|
30180
30333
|
name: "MuiPopover",
|
|
@@ -30692,7 +30845,7 @@ const useUtilityClasses$11 = (ownerState) => {
|
|
|
30692
30845
|
paper: ["paper"],
|
|
30693
30846
|
list: ["list"]
|
|
30694
30847
|
};
|
|
30695
|
-
return composeClasses(slots, getMenuUtilityClass, classes);
|
|
30848
|
+
return composeClasses$1(slots, getMenuUtilityClass, classes);
|
|
30696
30849
|
};
|
|
30697
30850
|
const MenuRoot = styled(Popover, {
|
|
30698
30851
|
shouldForwardProp: (prop) => rootShouldForwardProp(prop) || prop === "classes",
|
|
@@ -31009,7 +31162,7 @@ const useUtilityClasses$10 = (ownerState) => {
|
|
|
31009
31162
|
const slots = {
|
|
31010
31163
|
root: ["root", dense && "dense", disabled && "disabled", !disableGutters && "gutters", divider && "divider", selected && "selected"]
|
|
31011
31164
|
};
|
|
31012
|
-
const composedClasses = composeClasses(slots, getMenuItemUtilityClass, classes);
|
|
31165
|
+
const composedClasses = composeClasses$1(slots, getMenuItemUtilityClass, classes);
|
|
31013
31166
|
return {
|
|
31014
31167
|
...classes,
|
|
31015
31168
|
...composedClasses
|
|
@@ -31269,7 +31422,7 @@ const useUtilityClasses$$ = (ownerState) => {
|
|
|
31269
31422
|
dotActive: ["dotActive"],
|
|
31270
31423
|
progress: ["progress"]
|
|
31271
31424
|
};
|
|
31272
|
-
return composeClasses(slots, getMobileStepperUtilityClass, classes);
|
|
31425
|
+
return composeClasses$1(slots, getMobileStepperUtilityClass, classes);
|
|
31273
31426
|
};
|
|
31274
31427
|
const MobileStepperRoot = styled(Paper, {
|
|
31275
31428
|
name: "MuiMobileStepper",
|
|
@@ -31705,7 +31858,7 @@ const useUtilityClasses$_ = (ownerState) => {
|
|
|
31705
31858
|
}[type]],
|
|
31706
31859
|
icon: ["icon"]
|
|
31707
31860
|
};
|
|
31708
|
-
return composeClasses(slots, getPaginationItemUtilityClass, classes);
|
|
31861
|
+
return composeClasses$1(slots, getPaginationItemUtilityClass, classes);
|
|
31709
31862
|
};
|
|
31710
31863
|
const PaginationItemEllipsis = styled("div", {
|
|
31711
31864
|
name: "MuiPaginationItem",
|
|
@@ -32134,7 +32287,7 @@ const useUtilityClasses$Z = (ownerState) => {
|
|
|
32134
32287
|
root: ["root", variant],
|
|
32135
32288
|
ul: ["ul"]
|
|
32136
32289
|
};
|
|
32137
|
-
return composeClasses(slots, getPaginationUtilityClass, classes);
|
|
32290
|
+
return composeClasses$1(slots, getPaginationUtilityClass, classes);
|
|
32138
32291
|
};
|
|
32139
32292
|
const PaginationRoot = styled("nav", {
|
|
32140
32293
|
name: "MuiPagination",
|
|
@@ -32457,7 +32610,7 @@ const useUtilityClasses$Y = (ownerState) => {
|
|
|
32457
32610
|
};
|
|
32458
32611
|
return {
|
|
32459
32612
|
...classes,
|
|
32460
|
-
...composeClasses(slots, getRadioUtilityClass, classes)
|
|
32613
|
+
...composeClasses$1(slots, getRadioUtilityClass, classes)
|
|
32461
32614
|
};
|
|
32462
32615
|
};
|
|
32463
32616
|
const RadioRoot = styled(SwitchBase, {
|
|
@@ -32744,7 +32897,7 @@ const useUtilityClasses$X = (props) => {
|
|
|
32744
32897
|
const slots = {
|
|
32745
32898
|
root: ["root", row && "row", error && "error"]
|
|
32746
32899
|
};
|
|
32747
|
-
return composeClasses(slots, getRadioGroupUtilityClass, classes);
|
|
32900
|
+
return composeClasses$1(slots, getRadioGroupUtilityClass, classes);
|
|
32748
32901
|
};
|
|
32749
32902
|
const RadioGroup = /* @__PURE__ */ React__namespace.forwardRef(function RadioGroup2(props, ref) {
|
|
32750
32903
|
const {
|
|
@@ -32852,7 +33005,7 @@ const useUtilityClasses$W = (ownerState) => {
|
|
|
32852
33005
|
select: ["select", variant, disabled && "disabled", multiple && "multiple", error && "error"],
|
|
32853
33006
|
icon: ["icon", `icon${capitalize(variant)}`, open && "iconOpen", disabled && "disabled"]
|
|
32854
33007
|
};
|
|
32855
|
-
return composeClasses(slots, getNativeSelectUtilityClasses, classes);
|
|
33008
|
+
return composeClasses$1(slots, getNativeSelectUtilityClasses, classes);
|
|
32856
33009
|
};
|
|
32857
33010
|
const StyledSelectSelect = styled("select", {
|
|
32858
33011
|
name: "MuiNativeSelect"
|
|
@@ -33154,7 +33307,7 @@ const useUtilityClasses$V = (ownerState) => {
|
|
|
33154
33307
|
icon: ["icon", `icon${capitalize(variant)}`, open && "iconOpen", disabled && "disabled"],
|
|
33155
33308
|
nativeInput: ["nativeInput"]
|
|
33156
33309
|
};
|
|
33157
|
-
return composeClasses(slots, getSelectUtilityClasses, classes);
|
|
33310
|
+
return composeClasses$1(slots, getSelectUtilityClasses, classes);
|
|
33158
33311
|
};
|
|
33159
33312
|
const SelectInput = /* @__PURE__ */ React__namespace.forwardRef(function SelectInput2(props, ref) {
|
|
33160
33313
|
var _a, _b, _c, _d;
|
|
@@ -33717,7 +33870,7 @@ const useUtilityClasses$U = (ownerState) => {
|
|
|
33717
33870
|
root: ["root", !disableUnderline && "underline", startAdornment && "adornedStart", endAdornment && "adornedEnd", size === "small" && `size${capitalize(size)}`, hiddenLabel && "hiddenLabel", multiline && "multiline"],
|
|
33718
33871
|
input: ["input"]
|
|
33719
33872
|
};
|
|
33720
|
-
const composedClasses = composeClasses(slots, getFilledInputUtilityClass, classes);
|
|
33873
|
+
const composedClasses = composeClasses$1(slots, getFilledInputUtilityClass, classes);
|
|
33721
33874
|
return {
|
|
33722
33875
|
...classes,
|
|
33723
33876
|
// forward classes to the InputBase
|
|
@@ -34360,7 +34513,7 @@ const useUtilityClasses$T = (ownerState) => {
|
|
|
34360
34513
|
notchedOutline: ["notchedOutline"],
|
|
34361
34514
|
input: ["input"]
|
|
34362
34515
|
};
|
|
34363
|
-
const composedClasses = composeClasses(slots, getOutlinedInputUtilityClass, classes);
|
|
34516
|
+
const composedClasses = composeClasses$1(slots, getOutlinedInputUtilityClass, classes);
|
|
34364
34517
|
return {
|
|
34365
34518
|
...classes,
|
|
34366
34519
|
// forward classes to the InputBase
|
|
@@ -34768,7 +34921,7 @@ const useUtilityClasses$S = (ownerState) => {
|
|
|
34768
34921
|
const slots = {
|
|
34769
34922
|
root: ["root"]
|
|
34770
34923
|
};
|
|
34771
|
-
const composedClasses = composeClasses(slots, getSelectUtilityClasses, classes);
|
|
34924
|
+
const composedClasses = composeClasses$1(slots, getSelectUtilityClasses, classes);
|
|
34772
34925
|
return {
|
|
34773
34926
|
...classes,
|
|
34774
34927
|
...composedClasses
|
|
@@ -35053,7 +35206,7 @@ const useUtilityClasses$R = (ownerState) => {
|
|
|
35053
35206
|
const slots = {
|
|
35054
35207
|
root: ["root", variant, animation, hasChildren && "withChildren", hasChildren && !width2 && "fitContent", hasChildren && !height2 && "heightAuto"]
|
|
35055
35208
|
};
|
|
35056
|
-
return composeClasses(slots, getSkeletonUtilityClass, classes);
|
|
35209
|
+
return composeClasses$1(slots, getSkeletonUtilityClass, classes);
|
|
35057
35210
|
};
|
|
35058
35211
|
const pulseKeyframe = react.keyframes`
|
|
35059
35212
|
0% {
|
|
@@ -35410,7 +35563,7 @@ const useUtilityClasses$Q = (ownerState) => {
|
|
|
35410
35563
|
action: ["action"],
|
|
35411
35564
|
message: ["message"]
|
|
35412
35565
|
};
|
|
35413
|
-
return composeClasses(slots, getSnackbarContentUtilityClass, classes);
|
|
35566
|
+
return composeClasses$1(slots, getSnackbarContentUtilityClass, classes);
|
|
35414
35567
|
};
|
|
35415
35568
|
const SnackbarContentRoot = styled(Paper, {
|
|
35416
35569
|
name: "MuiSnackbarContent",
|
|
@@ -35525,7 +35678,7 @@ const useUtilityClasses$P = (ownerState) => {
|
|
|
35525
35678
|
const slots = {
|
|
35526
35679
|
root: ["root", `anchorOrigin${capitalize(anchorOrigin.vertical)}${capitalize(anchorOrigin.horizontal)}`]
|
|
35527
35680
|
};
|
|
35528
|
-
return composeClasses(slots, getSnackbarUtilityClass, classes);
|
|
35681
|
+
return composeClasses$1(slots, getSnackbarUtilityClass, classes);
|
|
35529
35682
|
};
|
|
35530
35683
|
const SnackbarRoot = styled("div", {
|
|
35531
35684
|
name: "MuiSnackbar",
|
|
@@ -36008,7 +36161,7 @@ const useUtilityClasses$O = (ownerState) => {
|
|
|
36008
36161
|
const slots = {
|
|
36009
36162
|
root: ["root", orientation, alternativeLabel && "alternativeLabel", completed && "completed"]
|
|
36010
36163
|
};
|
|
36011
|
-
return composeClasses(slots, getStepUtilityClass, classes);
|
|
36164
|
+
return composeClasses$1(slots, getStepUtilityClass, classes);
|
|
36012
36165
|
};
|
|
36013
36166
|
const StepRoot = styled("div", {
|
|
36014
36167
|
name: "MuiStep",
|
|
@@ -36182,7 +36335,7 @@ const useUtilityClasses$N = (ownerState) => {
|
|
|
36182
36335
|
root: ["root", active && "active", completed && "completed", error && "error"],
|
|
36183
36336
|
text: ["text"]
|
|
36184
36337
|
};
|
|
36185
|
-
return composeClasses(slots, getStepIconUtilityClass, classes);
|
|
36338
|
+
return composeClasses$1(slots, getStepIconUtilityClass, classes);
|
|
36186
36339
|
};
|
|
36187
36340
|
const StepIconRoot = styled(SvgIcon, {
|
|
36188
36341
|
name: "MuiStepIcon",
|
|
@@ -36334,7 +36487,7 @@ const useUtilityClasses$M = (ownerState) => {
|
|
|
36334
36487
|
iconContainer: ["iconContainer", active && "active", completed && "completed", error && "error", disabled && "disabled", alternativeLabel && "alternativeLabel"],
|
|
36335
36488
|
labelContainer: ["labelContainer", alternativeLabel && "alternativeLabel"]
|
|
36336
36489
|
};
|
|
36337
|
-
return composeClasses(slots, getStepLabelUtilityClass, classes);
|
|
36490
|
+
return composeClasses$1(slots, getStepLabelUtilityClass, classes);
|
|
36338
36491
|
};
|
|
36339
36492
|
const StepLabelRoot = styled("span", {
|
|
36340
36493
|
name: "MuiStepLabel",
|
|
@@ -36592,7 +36745,7 @@ const useUtilityClasses$L = (ownerState) => {
|
|
|
36592
36745
|
root: ["root", orientation],
|
|
36593
36746
|
touchRipple: ["touchRipple"]
|
|
36594
36747
|
};
|
|
36595
|
-
return composeClasses(slots, getStepButtonUtilityClass, classes);
|
|
36748
|
+
return composeClasses$1(slots, getStepButtonUtilityClass, classes);
|
|
36596
36749
|
};
|
|
36597
36750
|
const StepButtonRoot = styled(ButtonBase, {
|
|
36598
36751
|
name: "MuiStepButton",
|
|
@@ -36721,7 +36874,7 @@ const useUtilityClasses$K = (ownerState) => {
|
|
|
36721
36874
|
root: ["root", orientation, alternativeLabel && "alternativeLabel", active && "active", completed && "completed", disabled && "disabled"],
|
|
36722
36875
|
line: ["line", `line${capitalize(orientation)}`]
|
|
36723
36876
|
};
|
|
36724
|
-
return composeClasses(slots, getStepConnectorUtilityClass, classes);
|
|
36877
|
+
return composeClasses$1(slots, getStepConnectorUtilityClass, classes);
|
|
36725
36878
|
};
|
|
36726
36879
|
const StepConnectorRoot = styled("div", {
|
|
36727
36880
|
name: "MuiStepConnector",
|
|
@@ -36856,7 +37009,7 @@ const useUtilityClasses$J = (ownerState) => {
|
|
|
36856
37009
|
const slots = {
|
|
36857
37010
|
root: ["root", orientation, nonLinear && "nonLinear", alternativeLabel && "alternativeLabel"]
|
|
36858
37011
|
};
|
|
36859
|
-
return composeClasses(slots, getStepperUtilityClass, classes);
|
|
37012
|
+
return composeClasses$1(slots, getStepperUtilityClass, classes);
|
|
36860
37013
|
};
|
|
36861
37014
|
const StepperRoot = styled("div", {
|
|
36862
37015
|
name: "MuiStepper",
|
|
@@ -37019,7 +37172,7 @@ const useUtilityClasses$I = (ownerState) => {
|
|
|
37019
37172
|
track: ["track"],
|
|
37020
37173
|
input: ["input"]
|
|
37021
37174
|
};
|
|
37022
|
-
const composedClasses = composeClasses(slots, getSwitchUtilityClass, classes);
|
|
37175
|
+
const composedClasses = composeClasses$1(slots, getSwitchUtilityClass, classes);
|
|
37023
37176
|
return {
|
|
37024
37177
|
...classes,
|
|
37025
37178
|
// forward the disabled and checked classes to the SwitchBase
|
|
@@ -37410,7 +37563,7 @@ const useUtilityClasses$H = (ownerState) => {
|
|
|
37410
37563
|
root: ["root", icon && label && "labelIcon", `textColor${capitalize(textColor)}`, fullWidth && "fullWidth", wrapped && "wrapped", selected && "selected", disabled && "disabled"],
|
|
37411
37564
|
icon: ["iconWrapper", "icon"]
|
|
37412
37565
|
};
|
|
37413
|
-
return composeClasses(slots, getTabUtilityClass, classes);
|
|
37566
|
+
return composeClasses$1(slots, getTabUtilityClass, classes);
|
|
37414
37567
|
};
|
|
37415
37568
|
const TabRoot = styled(ButtonBase, {
|
|
37416
37569
|
name: "MuiTab",
|
|
@@ -37734,7 +37887,7 @@ const useUtilityClasses$G = (ownerState) => {
|
|
|
37734
37887
|
const slots = {
|
|
37735
37888
|
root: ["root", stickyHeader && "stickyHeader"]
|
|
37736
37889
|
};
|
|
37737
|
-
return composeClasses(slots, getTableUtilityClass, classes);
|
|
37890
|
+
return composeClasses$1(slots, getTableUtilityClass, classes);
|
|
37738
37891
|
};
|
|
37739
37892
|
const TableRoot = styled("table", {
|
|
37740
37893
|
name: "MuiTable",
|
|
@@ -37864,7 +38017,7 @@ const useUtilityClasses$F = (ownerState) => {
|
|
|
37864
38017
|
const slots = {
|
|
37865
38018
|
root: ["root"]
|
|
37866
38019
|
};
|
|
37867
|
-
return composeClasses(slots, getTableBodyUtilityClass, classes);
|
|
38020
|
+
return composeClasses$1(slots, getTableBodyUtilityClass, classes);
|
|
37868
38021
|
};
|
|
37869
38022
|
const TableBodyRoot = styled("tbody", {
|
|
37870
38023
|
name: "MuiTableBody",
|
|
@@ -37946,7 +38099,7 @@ const useUtilityClasses$E = (ownerState) => {
|
|
|
37946
38099
|
const slots = {
|
|
37947
38100
|
root: ["root", variant, stickyHeader && "stickyHeader", align !== "inherit" && `align${capitalize(align)}`, padding2 !== "normal" && `padding${capitalize(padding2)}`, `size${capitalize(size)}`]
|
|
37948
38101
|
};
|
|
37949
|
-
return composeClasses(slots, getTableCellUtilityClass, classes);
|
|
38102
|
+
return composeClasses$1(slots, getTableCellUtilityClass, classes);
|
|
37950
38103
|
};
|
|
37951
38104
|
const TableCellRoot = styled("td", {
|
|
37952
38105
|
name: "MuiTableCell",
|
|
@@ -38192,7 +38345,7 @@ const useUtilityClasses$D = (ownerState) => {
|
|
|
38192
38345
|
const slots = {
|
|
38193
38346
|
root: ["root"]
|
|
38194
38347
|
};
|
|
38195
|
-
return composeClasses(slots, getTableContainerUtilityClass, classes);
|
|
38348
|
+
return composeClasses$1(slots, getTableContainerUtilityClass, classes);
|
|
38196
38349
|
};
|
|
38197
38350
|
const TableContainerRoot = styled("div", {
|
|
38198
38351
|
name: "MuiTableContainer",
|
|
@@ -38262,7 +38415,7 @@ const useUtilityClasses$C = (ownerState) => {
|
|
|
38262
38415
|
const slots = {
|
|
38263
38416
|
root: ["root"]
|
|
38264
38417
|
};
|
|
38265
|
-
return composeClasses(slots, getTableFooterUtilityClass, classes);
|
|
38418
|
+
return composeClasses$1(slots, getTableFooterUtilityClass, classes);
|
|
38266
38419
|
};
|
|
38267
38420
|
const TableFooterRoot = styled("tfoot", {
|
|
38268
38421
|
name: "MuiTableFooter",
|
|
@@ -38339,7 +38492,7 @@ const useUtilityClasses$B = (ownerState) => {
|
|
|
38339
38492
|
const slots = {
|
|
38340
38493
|
root: ["root"]
|
|
38341
38494
|
};
|
|
38342
|
-
return composeClasses(slots, getTableHeadUtilityClass, classes);
|
|
38495
|
+
return composeClasses$1(slots, getTableHeadUtilityClass, classes);
|
|
38343
38496
|
};
|
|
38344
38497
|
const TableHeadRoot = styled("thead", {
|
|
38345
38498
|
name: "MuiTableHead",
|
|
@@ -38418,7 +38571,7 @@ const useUtilityClasses$A = (ownerState) => {
|
|
|
38418
38571
|
const slots = {
|
|
38419
38572
|
root: ["root", !disableGutters && "gutters", variant]
|
|
38420
38573
|
};
|
|
38421
|
-
return composeClasses(slots, getToolbarUtilityClass, classes);
|
|
38574
|
+
return composeClasses$1(slots, getToolbarUtilityClass, classes);
|
|
38422
38575
|
};
|
|
38423
38576
|
const ToolbarRoot = styled("div", {
|
|
38424
38577
|
name: "MuiToolbar",
|
|
@@ -38537,7 +38690,7 @@ const useUtilityClasses$z = (ownerState) => {
|
|
|
38537
38690
|
const slots = {
|
|
38538
38691
|
root: ["root"]
|
|
38539
38692
|
};
|
|
38540
|
-
return composeClasses(slots, getTablePaginationActionsUtilityClass, classes);
|
|
38693
|
+
return composeClasses$1(slots, getTablePaginationActionsUtilityClass, classes);
|
|
38541
38694
|
};
|
|
38542
38695
|
const TablePaginationActionsRoot = styled("div", {
|
|
38543
38696
|
name: "MuiTablePaginationActions",
|
|
@@ -38860,7 +39013,7 @@ const useUtilityClasses$y = (ownerState) => {
|
|
|
38860
39013
|
displayedRows: ["displayedRows"],
|
|
38861
39014
|
actions: ["actions"]
|
|
38862
39015
|
};
|
|
38863
|
-
return composeClasses(slots, getTablePaginationUtilityClass, classes);
|
|
39016
|
+
return composeClasses$1(slots, getTablePaginationUtilityClass, classes);
|
|
38864
39017
|
};
|
|
38865
39018
|
const TablePagination = /* @__PURE__ */ React__namespace.forwardRef(function TablePagination2(inProps, ref) {
|
|
38866
39019
|
const props = useDefaultProps({
|
|
@@ -39233,7 +39386,7 @@ const useUtilityClasses$x = (ownerState) => {
|
|
|
39233
39386
|
const slots = {
|
|
39234
39387
|
root: ["root", selected && "selected", hover && "hover", head && "head", footer && "footer"]
|
|
39235
39388
|
};
|
|
39236
|
-
return composeClasses(slots, getTableRowUtilityClass, classes);
|
|
39389
|
+
return composeClasses$1(slots, getTableRowUtilityClass, classes);
|
|
39237
39390
|
};
|
|
39238
39391
|
const TableRowRoot = styled("tr", {
|
|
39239
39392
|
name: "MuiTableRow",
|
|
@@ -39348,7 +39501,7 @@ const useUtilityClasses$w = (ownerState) => {
|
|
|
39348
39501
|
root: ["root", active && "active", `direction${capitalize(direction)}`],
|
|
39349
39502
|
icon: ["icon", `iconDirection${capitalize(direction)}`]
|
|
39350
39503
|
};
|
|
39351
|
-
return composeClasses(slots, getTableSortLabelUtilityClass, classes);
|
|
39504
|
+
return composeClasses$1(slots, getTableSortLabelUtilityClass, classes);
|
|
39352
39505
|
};
|
|
39353
39506
|
const TableSortLabelRoot = styled(ButtonBase, {
|
|
39354
39507
|
name: "MuiTableSortLabel",
|
|
@@ -39546,7 +39699,7 @@ const useUtilityClasses$v = (ownerState) => {
|
|
|
39546
39699
|
const slots = {
|
|
39547
39700
|
root: ["root"]
|
|
39548
39701
|
};
|
|
39549
|
-
return composeClasses(slots, getTextFieldUtilityClass, classes);
|
|
39702
|
+
return composeClasses$1(slots, getTextFieldUtilityClass, classes);
|
|
39550
39703
|
};
|
|
39551
39704
|
const TextFieldRoot = styled(FormControl, {
|
|
39552
39705
|
name: "MuiTextField",
|
|
@@ -39935,6 +40088,50 @@ process.env.NODE_ENV !== "production" ? TextField.propTypes = {
|
|
|
39935
40088
|
*/
|
|
39936
40089
|
variant: PropTypes.oneOf(["filled", "outlined", "standard"])
|
|
39937
40090
|
} : void 0;
|
|
40091
|
+
function resolveProps(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
40092
|
+
const output = {
|
|
40093
|
+
...props
|
|
40094
|
+
};
|
|
40095
|
+
for (const key in defaultProps2) {
|
|
40096
|
+
if (Object.prototype.hasOwnProperty.call(defaultProps2, key)) {
|
|
40097
|
+
const propName = key;
|
|
40098
|
+
if (propName === "components" || propName === "slots") {
|
|
40099
|
+
output[propName] = {
|
|
40100
|
+
...defaultProps2[propName],
|
|
40101
|
+
...output[propName]
|
|
40102
|
+
};
|
|
40103
|
+
} else if (propName === "componentsProps" || propName === "slotProps") {
|
|
40104
|
+
const defaultSlotProps = defaultProps2[propName];
|
|
40105
|
+
const slotProps = props[propName];
|
|
40106
|
+
if (!slotProps) {
|
|
40107
|
+
output[propName] = defaultSlotProps || {};
|
|
40108
|
+
} else if (!defaultSlotProps) {
|
|
40109
|
+
output[propName] = slotProps;
|
|
40110
|
+
} else {
|
|
40111
|
+
output[propName] = {
|
|
40112
|
+
...slotProps
|
|
40113
|
+
};
|
|
40114
|
+
for (const slotKey in defaultSlotProps) {
|
|
40115
|
+
if (Object.prototype.hasOwnProperty.call(defaultSlotProps, slotKey)) {
|
|
40116
|
+
const slotPropName = slotKey;
|
|
40117
|
+
output[propName][slotPropName] = resolveProps(defaultSlotProps[slotPropName], slotProps[slotPropName], mergeClassNameAndStyle);
|
|
40118
|
+
}
|
|
40119
|
+
}
|
|
40120
|
+
}
|
|
40121
|
+
} else if (propName === "className" && mergeClassNameAndStyle && props.className) {
|
|
40122
|
+
output.className = clsx(defaultProps2 == null ? void 0 : defaultProps2.className, props == null ? void 0 : props.className);
|
|
40123
|
+
} else if (propName === "style" && mergeClassNameAndStyle && props.style) {
|
|
40124
|
+
output.style = {
|
|
40125
|
+
...defaultProps2 == null ? void 0 : defaultProps2.style,
|
|
40126
|
+
...props == null ? void 0 : props.style
|
|
40127
|
+
};
|
|
40128
|
+
} else if (output[propName] === void 0) {
|
|
40129
|
+
output[propName] = defaultProps2[propName];
|
|
40130
|
+
}
|
|
40131
|
+
}
|
|
40132
|
+
}
|
|
40133
|
+
return output;
|
|
40134
|
+
}
|
|
39938
40135
|
function getToggleButtonUtilityClass(slot) {
|
|
39939
40136
|
return generateUtilityClass("MuiToggleButton", slot);
|
|
39940
40137
|
}
|
|
@@ -39968,7 +40165,7 @@ const useUtilityClasses$u = (ownerState) => {
|
|
|
39968
40165
|
const slots = {
|
|
39969
40166
|
root: ["root", selected && "selected", disabled && "disabled", fullWidth && "fullWidth", `size${capitalize(size)}`, color2]
|
|
39970
40167
|
};
|
|
39971
|
-
return composeClasses(slots, getToggleButtonUtilityClass, classes);
|
|
40168
|
+
return composeClasses$1(slots, getToggleButtonUtilityClass, classes);
|
|
39972
40169
|
};
|
|
39973
40170
|
const ToggleButtonRoot = styled(ButtonBase, {
|
|
39974
40171
|
name: "MuiToggleButton",
|
|
@@ -40223,7 +40420,7 @@ const useUtilityClasses$t = (ownerState) => {
|
|
|
40223
40420
|
lastButton: ["lastButton"],
|
|
40224
40421
|
middleButton: ["middleButton"]
|
|
40225
40422
|
};
|
|
40226
|
-
return composeClasses(slots, getToggleButtonGroupUtilityClass, classes);
|
|
40423
|
+
return composeClasses$1(slots, getToggleButtonGroupUtilityClass, classes);
|
|
40227
40424
|
};
|
|
40228
40425
|
const ToggleButtonGroupRoot = styled("div", {
|
|
40229
40426
|
name: "MuiToggleButtonGroup",
|
|
@@ -40492,7 +40689,7 @@ const useUtilityClasses$s = (ownerState) => {
|
|
|
40492
40689
|
tooltip: ["tooltip", arrow2 && "tooltipArrow", touch && "touch", `tooltipPlacement${capitalize(placement.split("-")[0])}`],
|
|
40493
40690
|
arrow: ["arrow"]
|
|
40494
40691
|
};
|
|
40495
|
-
return composeClasses(slots, getTooltipUtilityClass, classes);
|
|
40692
|
+
return composeClasses$1(slots, getTooltipUtilityClass, classes);
|
|
40496
40693
|
};
|
|
40497
40694
|
const TooltipPopper = styled(Popper2, {
|
|
40498
40695
|
name: "MuiTooltip",
|
|
@@ -41535,7 +41732,7 @@ const useUtilityClasses$r = (ownerState) => {
|
|
|
41535
41732
|
loadingIndicator: ["loadingIndicator"],
|
|
41536
41733
|
loadingWrapper: ["loadingWrapper"]
|
|
41537
41734
|
};
|
|
41538
|
-
const composedClasses = composeClasses(slots, getButtonUtilityClass, classes);
|
|
41735
|
+
const composedClasses = composeClasses$1(slots, getButtonUtilityClass, classes);
|
|
41539
41736
|
return {
|
|
41540
41737
|
...classes,
|
|
41541
41738
|
// forward the focused, disabled, etc. classes to the ButtonBase
|
|
@@ -42365,7 +42562,7 @@ const useUtilityClasses$q = (ownerState) => {
|
|
|
42365
42562
|
message: ["message"],
|
|
42366
42563
|
action: ["action"]
|
|
42367
42564
|
};
|
|
42368
|
-
return composeClasses(slots, getAlertUtilityClass, classes);
|
|
42565
|
+
return composeClasses$1(slots, getAlertUtilityClass, classes);
|
|
42369
42566
|
};
|
|
42370
42567
|
const AlertRoot = styled(Paper, {
|
|
42371
42568
|
name: "MuiAlert",
|
|
@@ -44715,7 +44912,7 @@ const useUtilityClasses$p = (classes) => {
|
|
|
44715
44912
|
title: ["title"],
|
|
44716
44913
|
content: ["content"]
|
|
44717
44914
|
};
|
|
44718
|
-
return composeClasses(slots, getPickersToolbarUtilityClass, classes);
|
|
44915
|
+
return composeClasses$1(slots, getPickersToolbarUtilityClass, classes);
|
|
44719
44916
|
};
|
|
44720
44917
|
const PickersToolbarRoot = styled("div", {
|
|
44721
44918
|
name: "MuiPickersToolbar",
|
|
@@ -45193,7 +45390,7 @@ const useUtilityClasses$o = (classes) => {
|
|
|
45193
45390
|
root: ["root"],
|
|
45194
45391
|
title: ["title"]
|
|
45195
45392
|
};
|
|
45196
|
-
return composeClasses(slots, getDatePickerToolbarUtilityClass, classes);
|
|
45393
|
+
return composeClasses$1(slots, getDatePickerToolbarUtilityClass, classes);
|
|
45197
45394
|
};
|
|
45198
45395
|
const DatePickerToolbarRoot = styled(PickersToolbar, {
|
|
45199
45396
|
name: "MuiDatePickerToolbar",
|
|
@@ -45474,7 +45671,7 @@ const useUtilityClasses$n = (classes) => {
|
|
|
45474
45671
|
root: ["root"],
|
|
45475
45672
|
paper: ["paper"]
|
|
45476
45673
|
};
|
|
45477
|
-
return composeClasses(slots, getPickerPopperUtilityClass, classes);
|
|
45674
|
+
return composeClasses$1(slots, getPickerPopperUtilityClass, classes);
|
|
45478
45675
|
};
|
|
45479
45676
|
const PickerPopperRoot = styled(Popper2, {
|
|
45480
45677
|
name: "MuiPickerPopper",
|
|
@@ -46665,7 +46862,7 @@ const useUtilityClasses$m = (classes, ownerState) => {
|
|
|
46665
46862
|
landscape: ["landscape"],
|
|
46666
46863
|
shortcuts: ["shortcuts"]
|
|
46667
46864
|
};
|
|
46668
|
-
return composeClasses(slots, getPickersLayoutUtilityClass, classes);
|
|
46865
|
+
return composeClasses$1(slots, getPickersLayoutUtilityClass, classes);
|
|
46669
46866
|
};
|
|
46670
46867
|
const usePickerLayout = (props) => {
|
|
46671
46868
|
const {
|
|
@@ -46739,7 +46936,7 @@ const useUtilityClasses$l = (classes, ownerState) => {
|
|
|
46739
46936
|
root: ["root", pickerOrientation === "landscape" && "landscape"],
|
|
46740
46937
|
contentWrapper: ["contentWrapper"]
|
|
46741
46938
|
};
|
|
46742
|
-
return composeClasses(slots, getPickersLayoutUtilityClass, classes);
|
|
46939
|
+
return composeClasses$1(slots, getPickersLayoutUtilityClass, classes);
|
|
46743
46940
|
};
|
|
46744
46941
|
const PickersLayoutRoot = styled("div", {
|
|
46745
46942
|
name: "MuiPickersLayout",
|
|
@@ -48803,7 +49000,7 @@ const useUtilityClasses$k = (ownerState) => {
|
|
|
48803
49000
|
const slots = {
|
|
48804
49001
|
root: ["root", disablePointerEvents && "disablePointerEvents", position2 && `position${capitalize(position2)}`, variant, hiddenLabel && "hiddenLabel", size && `size${capitalize(size)}`]
|
|
48805
49002
|
};
|
|
48806
|
-
return composeClasses(slots, getInputAdornmentUtilityClass, classes);
|
|
49003
|
+
return composeClasses$1(slots, getInputAdornmentUtilityClass, classes);
|
|
48807
49004
|
};
|
|
48808
49005
|
const InputAdornmentRoot = styled("div", {
|
|
48809
49006
|
name: "MuiInputAdornment",
|
|
@@ -49055,7 +49252,7 @@ const useUtilityClasses$j = (classes) => {
|
|
|
49055
49252
|
section: ["section"],
|
|
49056
49253
|
sectionContent: ["sectionContent"]
|
|
49057
49254
|
};
|
|
49058
|
-
return composeClasses(slots, getPickersSectionListUtilityClass, classes);
|
|
49255
|
+
return composeClasses$1(slots, getPickersSectionListUtilityClass, classes);
|
|
49059
49256
|
};
|
|
49060
49257
|
function PickersSection(props) {
|
|
49061
49258
|
const {
|
|
@@ -49447,7 +49644,7 @@ const useUtilityClasses$i = (classes, ownerState) => {
|
|
|
49447
49644
|
sectionAfter: ["sectionAfter"],
|
|
49448
49645
|
activeBar: ["activeBar"]
|
|
49449
49646
|
};
|
|
49450
|
-
return composeClasses(slots, getPickersInputBaseUtilityClass, classes);
|
|
49647
|
+
return composeClasses$1(slots, getPickersInputBaseUtilityClass, classes);
|
|
49451
49648
|
};
|
|
49452
49649
|
function resolveSectionElementWidth(sectionElement, rootRef, index, dateRangePosition) {
|
|
49453
49650
|
var _a;
|
|
@@ -49919,7 +50116,7 @@ const useUtilityClasses$h = (classes) => {
|
|
|
49919
50116
|
notchedOutline: ["notchedOutline"],
|
|
49920
50117
|
input: ["input"]
|
|
49921
50118
|
};
|
|
49922
|
-
const composedClasses = composeClasses(slots, getPickersOutlinedInputUtilityClass, classes);
|
|
50119
|
+
const composedClasses = composeClasses$1(slots, getPickersOutlinedInputUtilityClass, classes);
|
|
49923
50120
|
return _extends({}, classes, composedClasses);
|
|
49924
50121
|
};
|
|
49925
50122
|
const PickersOutlinedInput = /* @__PURE__ */ React__namespace.forwardRef(function PickersOutlinedInput2(inProps, ref) {
|
|
@@ -50206,7 +50403,7 @@ const useUtilityClasses$g = (classes, ownerState) => {
|
|
|
50206
50403
|
root: ["root", inputHasUnderline && "underline"],
|
|
50207
50404
|
input: ["input"]
|
|
50208
50405
|
};
|
|
50209
|
-
const composedClasses = composeClasses(slots, getPickersFilledInputUtilityClass, classes);
|
|
50406
|
+
const composedClasses = composeClasses$1(slots, getPickersFilledInputUtilityClass, classes);
|
|
50210
50407
|
return _extends({}, classes, composedClasses);
|
|
50211
50408
|
};
|
|
50212
50409
|
const PickersFilledInput = /* @__PURE__ */ React__namespace.forwardRef(function PickersFilledInput2(inProps, ref) {
|
|
@@ -50420,7 +50617,7 @@ const useUtilityClasses$f = (classes, ownerState) => {
|
|
|
50420
50617
|
root: ["root", !inputHasUnderline && "underline"],
|
|
50421
50618
|
input: ["input"]
|
|
50422
50619
|
};
|
|
50423
|
-
const composedClasses = composeClasses(slots, getPickersInputUtilityClass, classes);
|
|
50620
|
+
const composedClasses = composeClasses$1(slots, getPickersInputUtilityClass, classes);
|
|
50424
50621
|
return _extends({}, classes, composedClasses);
|
|
50425
50622
|
};
|
|
50426
50623
|
const PickersInput = /* @__PURE__ */ React__namespace.forwardRef(function PickersInput2(inProps, ref) {
|
|
@@ -50550,7 +50747,7 @@ const useUtilityClasses$e = (classes, ownerState) => {
|
|
|
50550
50747
|
const slots = {
|
|
50551
50748
|
root: ["root", isFieldFocused2 && !isFieldDisabled && "focused", isFieldDisabled && "disabled", isFieldRequired && "required"]
|
|
50552
50749
|
};
|
|
50553
|
-
return composeClasses(slots, getPickersTextFieldUtilityClass, classes);
|
|
50750
|
+
return composeClasses$1(slots, getPickersTextFieldUtilityClass, classes);
|
|
50554
50751
|
};
|
|
50555
50752
|
const PickersTextField = /* @__PURE__ */ React__namespace.forwardRef(function PickersTextField2(inProps, ref) {
|
|
50556
50753
|
const props = useThemeProps$2({
|
|
@@ -51596,7 +51793,7 @@ const useUtilityClasses$d = (classes) => {
|
|
|
51596
51793
|
const slots = {
|
|
51597
51794
|
root: ["root"]
|
|
51598
51795
|
};
|
|
51599
|
-
return composeClasses(slots, getPickersFadeTransitionGroupUtilityClass, classes);
|
|
51796
|
+
return composeClasses$1(slots, getPickersFadeTransitionGroupUtilityClass, classes);
|
|
51600
51797
|
};
|
|
51601
51798
|
const PickersFadeTransitionGroupRoot = styled(TransitionGroup, {
|
|
51602
51799
|
name: "MuiPickersFadeTransitionGroup",
|
|
@@ -51688,7 +51885,7 @@ const useUtilityClasses$c = (classes, ownerState) => {
|
|
|
51688
51885
|
root: ["root", isDaySelected && !isHiddenDaySpacingFiller && "selected", isDayDisabled && "disabled", !disableMargin && "dayWithMargin", !disableHighlightToday && isDayCurrent && "today", isDayOutsideMonth && showDaysOutsideCurrentMonth && "dayOutsideMonth", isHiddenDaySpacingFiller && "hiddenDaySpacingFiller"],
|
|
51689
51886
|
hiddenDaySpacingFiller: ["hiddenDaySpacingFiller"]
|
|
51690
51887
|
};
|
|
51691
|
-
return composeClasses(slots, getPickersDayUtilityClass, classes);
|
|
51888
|
+
return composeClasses$1(slots, getPickersDayUtilityClass, classes);
|
|
51692
51889
|
};
|
|
51693
51890
|
const styleArg = ({
|
|
51694
51891
|
theme
|
|
@@ -52030,7 +52227,7 @@ const useUtilityClasses$b = (classes, ownerState) => {
|
|
|
52030
52227
|
enter: [`slideEnter-${slideDirection}`],
|
|
52031
52228
|
exitActive: [`slideExitActiveLeft-${slideDirection}`]
|
|
52032
52229
|
};
|
|
52033
|
-
return composeClasses(slots, getPickersSlideTransitionUtilityClass, classes);
|
|
52230
|
+
return composeClasses$1(slots, getPickersSlideTransitionUtilityClass, classes);
|
|
52034
52231
|
};
|
|
52035
52232
|
const PickersSlideTransitionRoot = styled(TransitionGroup, {
|
|
52036
52233
|
name: "MuiPickersSlideTransition",
|
|
@@ -52161,7 +52358,7 @@ const useUtilityClasses$a = (classes) => {
|
|
|
52161
52358
|
weekNumberLabel: ["weekNumberLabel"],
|
|
52162
52359
|
weekNumber: ["weekNumber"]
|
|
52163
52360
|
};
|
|
52164
|
-
return composeClasses(slots, getDayCalendarUtilityClass, classes);
|
|
52361
|
+
return composeClasses$1(slots, getDayCalendarUtilityClass, classes);
|
|
52165
52362
|
};
|
|
52166
52363
|
const weeksContainerHeight = (DAY_SIZE + DAY_MARGIN * 2) * 6;
|
|
52167
52364
|
const PickersCalendarDayRoot = styled("div", {
|
|
@@ -52555,7 +52752,7 @@ const useUtilityClasses$9 = (classes, ownerState) => {
|
|
|
52555
52752
|
const slots = {
|
|
52556
52753
|
button: ["button", ownerState.isMonthDisabled && "disabled", ownerState.isMonthSelected && "selected"]
|
|
52557
52754
|
};
|
|
52558
|
-
return composeClasses(slots, getMonthCalendarUtilityClass, classes);
|
|
52755
|
+
return composeClasses$1(slots, getMonthCalendarUtilityClass, classes);
|
|
52559
52756
|
};
|
|
52560
52757
|
const DefaultMonthButton = styled("button", {
|
|
52561
52758
|
name: "MuiMonthCalendar",
|
|
@@ -52654,7 +52851,7 @@ const useUtilityClasses$8 = (classes) => {
|
|
|
52654
52851
|
const slots = {
|
|
52655
52852
|
root: ["root"]
|
|
52656
52853
|
};
|
|
52657
|
-
return composeClasses(slots, getMonthCalendarUtilityClass, classes);
|
|
52854
|
+
return composeClasses$1(slots, getMonthCalendarUtilityClass, classes);
|
|
52658
52855
|
};
|
|
52659
52856
|
function useMonthCalendarDefaultizedProps(props, name) {
|
|
52660
52857
|
const themeProps = useThemeProps$2({
|
|
@@ -52991,7 +53188,7 @@ const useUtilityClasses$7 = (classes, ownerState) => {
|
|
|
52991
53188
|
const slots = {
|
|
52992
53189
|
button: ["button", ownerState.isYearDisabled && "disabled", ownerState.isYearSelected && "selected"]
|
|
52993
53190
|
};
|
|
52994
|
-
return composeClasses(slots, getYearCalendarUtilityClass, classes);
|
|
53191
|
+
return composeClasses$1(slots, getYearCalendarUtilityClass, classes);
|
|
52995
53192
|
};
|
|
52996
53193
|
const DefaultYearButton = styled("button", {
|
|
52997
53194
|
name: "MuiYearCalendar",
|
|
@@ -53090,7 +53287,7 @@ const useUtilityClasses$6 = (classes) => {
|
|
|
53090
53287
|
const slots = {
|
|
53091
53288
|
root: ["root"]
|
|
53092
53289
|
};
|
|
53093
|
-
return composeClasses(slots, getYearCalendarUtilityClass, classes);
|
|
53290
|
+
return composeClasses$1(slots, getYearCalendarUtilityClass, classes);
|
|
53094
53291
|
};
|
|
53095
53292
|
function useYearCalendarDefaultizedProps(props, name) {
|
|
53096
53293
|
const themeProps = useThemeProps$2({
|
|
@@ -53507,7 +53704,7 @@ const useUtilityClasses$5 = (classes) => {
|
|
|
53507
53704
|
leftArrowIcon: ["leftArrowIcon"],
|
|
53508
53705
|
rightArrowIcon: ["rightArrowIcon"]
|
|
53509
53706
|
};
|
|
53510
|
-
return composeClasses(slots, getPickersArrowSwitcherUtilityClass, classes);
|
|
53707
|
+
return composeClasses$1(slots, getPickersArrowSwitcherUtilityClass, classes);
|
|
53511
53708
|
};
|
|
53512
53709
|
const PickersArrowSwitcher = /* @__PURE__ */ React__namespace.forwardRef(function PickersArrowSwitcher2(inProps, ref) {
|
|
53513
53710
|
const isRtl = useRtl();
|
|
@@ -53655,7 +53852,7 @@ const useUtilityClasses$4 = (classes) => {
|
|
|
53655
53852
|
switchViewButton: ["switchViewButton"],
|
|
53656
53853
|
switchViewIcon: ["switchViewIcon"]
|
|
53657
53854
|
};
|
|
53658
|
-
return composeClasses(slots, getPickersCalendarHeaderUtilityClass, classes);
|
|
53855
|
+
return composeClasses$1(slots, getPickersCalendarHeaderUtilityClass, classes);
|
|
53659
53856
|
};
|
|
53660
53857
|
const PickersCalendarHeaderRoot = styled("div", {
|
|
53661
53858
|
name: "MuiPickersCalendarHeader",
|
|
@@ -53898,7 +54095,7 @@ const useUtilityClasses$3 = (classes) => {
|
|
|
53898
54095
|
root: ["root"],
|
|
53899
54096
|
viewTransitionContainer: ["viewTransitionContainer"]
|
|
53900
54097
|
};
|
|
53901
|
-
return composeClasses(slots, getDateCalendarUtilityClass, classes);
|
|
54098
|
+
return composeClasses$1(slots, getDateCalendarUtilityClass, classes);
|
|
53902
54099
|
};
|
|
53903
54100
|
function useDateCalendarDefaultizedProps(props, name) {
|
|
53904
54101
|
const themeProps = useThemeProps$2({
|
|
@@ -54895,7 +55092,7 @@ const useUtilityClasses$2 = (ownerState) => {
|
|
|
54895
55092
|
container: ["container", `scroll${capitalize(scroll)}`],
|
|
54896
55093
|
paper: ["paper", `paperScroll${capitalize(scroll)}`, `paperWidth${capitalize(String(maxWidth2))}`, fullWidth && "paperFullWidth", fullScreen && "paperFullScreen"]
|
|
54897
55094
|
};
|
|
54898
|
-
return composeClasses(slots, getDialogUtilityClass, classes);
|
|
55095
|
+
return composeClasses$1(slots, getDialogUtilityClass, classes);
|
|
54899
55096
|
};
|
|
54900
55097
|
const DialogRoot = styled(Modal, {
|
|
54901
55098
|
name: "MuiDialog",
|
|
@@ -56306,6 +56503,7 @@ const Dropzone = ({
|
|
|
56306
56503
|
};
|
|
56307
56504
|
const EllipsisWithTooltip = ({
|
|
56308
56505
|
children,
|
|
56506
|
+
slotProps = {},
|
|
56309
56507
|
tooltipProps,
|
|
56310
56508
|
typographyProps
|
|
56311
56509
|
}) => {
|
|
@@ -56332,20 +56530,20 @@ const EllipsisWithTooltip = ({
|
|
|
56332
56530
|
};
|
|
56333
56531
|
}, []);
|
|
56334
56532
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
56335
|
-
|
|
56533
|
+
Tooltip,
|
|
56336
56534
|
{
|
|
56337
56535
|
disableHoverListener: !isTextEllipsized,
|
|
56338
56536
|
title: children,
|
|
56339
|
-
...tooltipProps,
|
|
56537
|
+
...slotProps.tooltip ?? tooltipProps,
|
|
56340
56538
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
56341
|
-
|
|
56539
|
+
Typography,
|
|
56342
56540
|
{
|
|
56343
56541
|
ref: textRef,
|
|
56344
56542
|
noWrap: true,
|
|
56345
56543
|
overflow: "hidden",
|
|
56346
56544
|
textOverflow: "ellipsis",
|
|
56347
|
-
...typographyProps,
|
|
56348
56545
|
maxWidth: "100%",
|
|
56546
|
+
...slotProps.text ?? typographyProps,
|
|
56349
56547
|
children
|
|
56350
56548
|
}
|
|
56351
56549
|
)
|
|
@@ -56354,15 +56552,15 @@ const EllipsisWithTooltip = ({
|
|
|
56354
56552
|
};
|
|
56355
56553
|
const EmptyState = ({
|
|
56356
56554
|
image,
|
|
56357
|
-
imageProps,
|
|
56358
56555
|
imageSrc,
|
|
56359
56556
|
title,
|
|
56360
56557
|
description,
|
|
56361
|
-
descriptionProps,
|
|
56362
56558
|
footer,
|
|
56363
|
-
svgProps,
|
|
56364
|
-
titleProps,
|
|
56365
56559
|
imageHeight = 200,
|
|
56560
|
+
slotProps = {},
|
|
56561
|
+
imageProps,
|
|
56562
|
+
descriptionProps,
|
|
56563
|
+
titleProps,
|
|
56366
56564
|
...otherProps
|
|
56367
56565
|
}) => {
|
|
56368
56566
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -56372,10 +56570,35 @@ const EmptyState = ({
|
|
|
56372
56570
|
alignItems: "center",
|
|
56373
56571
|
margin: "0 auto",
|
|
56374
56572
|
...otherProps,
|
|
56573
|
+
...slotProps.root,
|
|
56375
56574
|
children: [
|
|
56376
|
-
/* @__PURE__ */ jsxRuntime.jsx(Box, { height: imageHeight, width: "auto", children: image ?? /* @__PURE__ */ jsxRuntime.jsx(
|
|
56377
|
-
|
|
56378
|
-
|
|
56575
|
+
/* @__PURE__ */ jsxRuntime.jsx(Box, { height: imageHeight, width: "auto", children: image ?? /* @__PURE__ */ jsxRuntime.jsx(
|
|
56576
|
+
"img",
|
|
56577
|
+
{
|
|
56578
|
+
src: imageSrc,
|
|
56579
|
+
height: "100%",
|
|
56580
|
+
...slotProps.image ?? imageProps
|
|
56581
|
+
}
|
|
56582
|
+
) }),
|
|
56583
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
56584
|
+
Typography,
|
|
56585
|
+
{
|
|
56586
|
+
variant: "h2",
|
|
56587
|
+
fontWeight: 500,
|
|
56588
|
+
mt: 3,
|
|
56589
|
+
...slotProps.title ?? titleProps,
|
|
56590
|
+
children: title
|
|
56591
|
+
}
|
|
56592
|
+
),
|
|
56593
|
+
description ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
56594
|
+
Typography,
|
|
56595
|
+
{
|
|
56596
|
+
color: "textSecondary",
|
|
56597
|
+
mt: 2,
|
|
56598
|
+
...slotProps.description ?? descriptionProps,
|
|
56599
|
+
children: description
|
|
56600
|
+
}
|
|
56601
|
+
) : null,
|
|
56379
56602
|
footer ? /* @__PURE__ */ jsxRuntime.jsx(Box, { mt: 3, children: footer }) : null
|
|
56380
56603
|
]
|
|
56381
56604
|
}
|
|
@@ -56831,36 +57054,46 @@ const Heading = ({
|
|
|
56831
57054
|
title,
|
|
56832
57055
|
IconComponent,
|
|
56833
57056
|
iconColor,
|
|
56834
|
-
iconProps,
|
|
56835
57057
|
iconSize = 28,
|
|
57058
|
+
slotProps = {},
|
|
57059
|
+
iconProps,
|
|
56836
57060
|
titleProps,
|
|
56837
57061
|
...otherProps
|
|
56838
57062
|
}) => {
|
|
56839
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
56840
|
-
|
|
56841
|
-
|
|
56842
|
-
|
|
56843
|
-
|
|
56844
|
-
|
|
56845
|
-
|
|
56846
|
-
|
|
56847
|
-
|
|
56848
|
-
|
|
56849
|
-
|
|
56850
|
-
|
|
56851
|
-
|
|
56852
|
-
|
|
56853
|
-
|
|
56854
|
-
|
|
56855
|
-
|
|
56856
|
-
|
|
56857
|
-
|
|
56858
|
-
|
|
56859
|
-
|
|
56860
|
-
|
|
56861
|
-
|
|
56862
|
-
|
|
56863
|
-
|
|
57063
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57064
|
+
Stack,
|
|
57065
|
+
{
|
|
57066
|
+
direction: "row",
|
|
57067
|
+
alignItems: "center",
|
|
57068
|
+
spacing: 1,
|
|
57069
|
+
...otherProps,
|
|
57070
|
+
...slotProps.root,
|
|
57071
|
+
children: [
|
|
57072
|
+
IconComponent ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
57073
|
+
IconComponent,
|
|
57074
|
+
{
|
|
57075
|
+
sx: {
|
|
57076
|
+
fontSize: iconSize,
|
|
57077
|
+
padding: "2px",
|
|
57078
|
+
borderRadius: 1,
|
|
57079
|
+
color: iconColor == null ? void 0 : iconColor[500],
|
|
57080
|
+
backgroundColor: iconColor == null ? void 0 : iconColor[50]
|
|
57081
|
+
},
|
|
57082
|
+
...slotProps.icon ?? iconProps
|
|
57083
|
+
}
|
|
57084
|
+
) : null,
|
|
57085
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
57086
|
+
Typography,
|
|
57087
|
+
{
|
|
57088
|
+
component: "h3",
|
|
57089
|
+
variant: "h2",
|
|
57090
|
+
...slotProps.text ?? titleProps,
|
|
57091
|
+
children: title
|
|
57092
|
+
}
|
|
57093
|
+
)
|
|
57094
|
+
]
|
|
57095
|
+
}
|
|
57096
|
+
);
|
|
56864
57097
|
};
|
|
56865
57098
|
const AddPhotoAlternateIcon = createSvgIcon(/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
56866
57099
|
d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8zM5 19l3-4 2 3 3-4 4 5z"
|
|
@@ -57074,21 +57307,39 @@ const ImagePicker = ({
|
|
|
57074
57307
|
}
|
|
57075
57308
|
);
|
|
57076
57309
|
};
|
|
57077
|
-
const Loader = (
|
|
57078
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "cs-loader", color: "primary.main", children: /* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "cs-loader-inner", children: [
|
|
57310
|
+
const Loader = (props) => {
|
|
57311
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Box, { className: "cs-loader", color: "primary.main", ...props, children: /* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "cs-loader-inner", children: [
|
|
57079
57312
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57080
57313
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57081
57314
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57082
57315
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" })
|
|
57083
57316
|
] }) });
|
|
57084
57317
|
};
|
|
57085
|
-
const LoaderBackdrop = ({
|
|
57086
|
-
|
|
57087
|
-
|
|
57088
|
-
|
|
57089
|
-
|
|
57090
|
-
|
|
57091
|
-
|
|
57318
|
+
const LoaderBackdrop = ({
|
|
57319
|
+
slotProps = {}
|
|
57320
|
+
}) => {
|
|
57321
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
57322
|
+
Backdrop,
|
|
57323
|
+
{
|
|
57324
|
+
open: true,
|
|
57325
|
+
sx: { bgcolor: "background.default" },
|
|
57326
|
+
...slotProps.backdrop,
|
|
57327
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57328
|
+
Box,
|
|
57329
|
+
{
|
|
57330
|
+
className: "cs-loader-backdrop-inner",
|
|
57331
|
+
color: "primary.main",
|
|
57332
|
+
...slotProps.loader,
|
|
57333
|
+
children: [
|
|
57334
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57335
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57336
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57337
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" })
|
|
57338
|
+
]
|
|
57339
|
+
}
|
|
57340
|
+
)
|
|
57341
|
+
}
|
|
57342
|
+
);
|
|
57092
57343
|
};
|
|
57093
57344
|
const PasswordInput = (props) => {
|
|
57094
57345
|
const [showPassword, setShowPassword] = React.useState(false);
|
|
@@ -62281,7 +62532,7 @@ const useUtilityClasses$1 = (classesProp) => {
|
|
|
62281
62532
|
focused: ["focused"],
|
|
62282
62533
|
disabled: ["disabled"]
|
|
62283
62534
|
};
|
|
62284
|
-
return composeClasses(slots, getTreeItemUtilityClass, classes);
|
|
62535
|
+
return composeClasses$1(slots, getTreeItemUtilityClass, classes);
|
|
62285
62536
|
};
|
|
62286
62537
|
const TreeItem = /* @__PURE__ */ React__namespace.forwardRef(function TreeItem2(inProps, forwardedRef) {
|
|
62287
62538
|
const props = useThemeProps$1({
|
|
@@ -62561,7 +62812,7 @@ const useUtilityClasses = (ownerState) => {
|
|
|
62561
62812
|
// itemDragAndDropOverlay: ['itemDragAndDropOverlay'], => feature not available on this component
|
|
62562
62813
|
// itemErrorIcon: ['itemErrorIcon'], => feature not available on this component
|
|
62563
62814
|
};
|
|
62564
|
-
return composeClasses(slots, getRichTreeViewUtilityClass, classes);
|
|
62815
|
+
return composeClasses$1(slots, getRichTreeViewUtilityClass, classes);
|
|
62565
62816
|
}, [classes]);
|
|
62566
62817
|
};
|
|
62567
62818
|
const RichTreeViewRoot = styled("ul", {
|