@cgi-learning-hub/ui 1.11.0 → 1.11.1-dev.1765209149
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 +477 -222
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +478 -223
- package/dist/ui.css +0 -138
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1229,7 +1229,7 @@ function clsx() {
|
|
|
1229
1229
|
return n;
|
|
1230
1230
|
}
|
|
1231
1231
|
const refType = PropTypes.oneOfType([PropTypes.func, PropTypes.object]);
|
|
1232
|
-
function composeClasses(slots, getUtilityClass, classes = void 0) {
|
|
1232
|
+
function composeClasses$1(slots, getUtilityClass, classes = void 0) {
|
|
1233
1233
|
const output = {};
|
|
1234
1234
|
for (const slotName in slots) {
|
|
1235
1235
|
const slot = slots[slotName];
|
|
@@ -1431,49 +1431,49 @@ function useSlotProps(parameters) {
|
|
|
1431
1431
|
}, ownerState);
|
|
1432
1432
|
return props;
|
|
1433
1433
|
}
|
|
1434
|
-
function formatMuiErrorMessage(code, ...args) {
|
|
1434
|
+
function formatMuiErrorMessage$1(code, ...args) {
|
|
1435
1435
|
const url = new URL(`https://mui.com/production-error/?code=${code}`);
|
|
1436
1436
|
args.forEach((arg2) => url.searchParams.append("args[]", arg2));
|
|
1437
1437
|
return `Minified MUI error #${code}; visit ${url} for the full message.`;
|
|
1438
1438
|
}
|
|
1439
|
-
function capitalize(string) {
|
|
1439
|
+
function capitalize$1(string) {
|
|
1440
1440
|
if (typeof string !== "string") {
|
|
1441
|
-
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `capitalize(string)` expects a string argument." : formatMuiErrorMessage(7));
|
|
1441
|
+
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `capitalize(string)` expects a string argument." : formatMuiErrorMessage$1(7));
|
|
1442
1442
|
}
|
|
1443
1443
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
1444
1444
|
}
|
|
1445
|
-
function isPlainObject(item) {
|
|
1445
|
+
function isPlainObject$1(item) {
|
|
1446
1446
|
if (typeof item !== "object" || item === null) {
|
|
1447
1447
|
return false;
|
|
1448
1448
|
}
|
|
1449
1449
|
const prototype = Object.getPrototypeOf(item);
|
|
1450
1450
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in item) && !(Symbol.iterator in item);
|
|
1451
1451
|
}
|
|
1452
|
-
function deepClone(source) {
|
|
1453
|
-
if (/* @__PURE__ */ React__namespace.isValidElement(source) || reactIsExports.isValidElementType(source) || !isPlainObject(source)) {
|
|
1452
|
+
function deepClone$1(source) {
|
|
1453
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(source) || reactIsExports.isValidElementType(source) || !isPlainObject$1(source)) {
|
|
1454
1454
|
return source;
|
|
1455
1455
|
}
|
|
1456
1456
|
const output = {};
|
|
1457
1457
|
Object.keys(source).forEach((key) => {
|
|
1458
|
-
output[key] = deepClone(source[key]);
|
|
1458
|
+
output[key] = deepClone$1(source[key]);
|
|
1459
1459
|
});
|
|
1460
1460
|
return output;
|
|
1461
1461
|
}
|
|
1462
|
-
function deepmerge(target, source, options = {
|
|
1462
|
+
function deepmerge$1(target, source, options = {
|
|
1463
1463
|
clone: true
|
|
1464
1464
|
}) {
|
|
1465
1465
|
const output = options.clone ? {
|
|
1466
1466
|
...target
|
|
1467
1467
|
} : target;
|
|
1468
|
-
if (isPlainObject(target) && isPlainObject(source)) {
|
|
1468
|
+
if (isPlainObject$1(target) && isPlainObject$1(source)) {
|
|
1469
1469
|
Object.keys(source).forEach((key) => {
|
|
1470
1470
|
if (/* @__PURE__ */ React__namespace.isValidElement(source[key]) || reactIsExports.isValidElementType(source[key])) {
|
|
1471
1471
|
output[key] = source[key];
|
|
1472
|
-
} else if (isPlainObject(source[key]) && // Avoid prototype pollution
|
|
1473
|
-
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject(target[key])) {
|
|
1474
|
-
output[key] = deepmerge(target[key], source[key], options);
|
|
1472
|
+
} else if (isPlainObject$1(source[key]) && // Avoid prototype pollution
|
|
1473
|
+
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject$1(target[key])) {
|
|
1474
|
+
output[key] = deepmerge$1(target[key], source[key], options);
|
|
1475
1475
|
} else if (options.clone) {
|
|
1476
|
-
output[key] = isPlainObject(source[key]) ? deepClone(source[key]) : source[key];
|
|
1476
|
+
output[key] = isPlainObject$1(source[key]) ? deepClone$1(source[key]) : source[key];
|
|
1477
1477
|
} else {
|
|
1478
1478
|
output[key] = source[key];
|
|
1479
1479
|
}
|
|
@@ -1485,7 +1485,7 @@ function merge(acc, item) {
|
|
|
1485
1485
|
if (!item) {
|
|
1486
1486
|
return acc;
|
|
1487
1487
|
}
|
|
1488
|
-
return deepmerge(acc, item, {
|
|
1488
|
+
return deepmerge$1(acc, item, {
|
|
1489
1489
|
clone: false
|
|
1490
1490
|
// No need to clone deep, it's way faster.
|
|
1491
1491
|
});
|
|
@@ -1519,7 +1519,7 @@ function getContainerQuery(theme, shorthand) {
|
|
|
1519
1519
|
if (!matches) {
|
|
1520
1520
|
if (process.env.NODE_ENV !== "production") {
|
|
1521
1521
|
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>\`.
|
|
1522
|
-
For example, \`@sm\` or \`@600\` or \`@40rem/sidebar\`.` : formatMuiErrorMessage(18, `(${shorthand})`));
|
|
1522
|
+
For example, \`@sm\` or \`@600\` or \`@40rem/sidebar\`.` : formatMuiErrorMessage$1(18, `(${shorthand})`));
|
|
1523
1523
|
}
|
|
1524
1524
|
return null;
|
|
1525
1525
|
}
|
|
@@ -1632,7 +1632,7 @@ function removeUnusedBreakpoints(breakpointKeys, style2) {
|
|
|
1632
1632
|
}
|
|
1633
1633
|
function mergeBreakpointsInOrder(breakpointsInput, ...styles2) {
|
|
1634
1634
|
const emptyBreakpoints = createEmptyBreakpointObject(breakpointsInput);
|
|
1635
|
-
const mergedOutput = [emptyBreakpoints, ...styles2].reduce((prev2, next2) => deepmerge(prev2, next2), {});
|
|
1635
|
+
const mergedOutput = [emptyBreakpoints, ...styles2].reduce((prev2, next2) => deepmerge$1(prev2, next2), {});
|
|
1636
1636
|
return removeUnusedBreakpoints(Object.keys(emptyBreakpoints), mergedOutput);
|
|
1637
1637
|
}
|
|
1638
1638
|
function computeBreakpointsBase(breakpointValues, themeBreakpoints) {
|
|
@@ -1728,7 +1728,7 @@ function style$2(options) {
|
|
|
1728
1728
|
const styleFromPropValue = (propValueFinal) => {
|
|
1729
1729
|
let value = getStyleValue$1(themeMapping, transform, propValueFinal);
|
|
1730
1730
|
if (propValueFinal === value && typeof propValueFinal === "string") {
|
|
1731
|
-
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize(propValueFinal)}`, propValueFinal);
|
|
1731
|
+
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize$1(propValueFinal)}`, propValueFinal);
|
|
1732
1732
|
}
|
|
1733
1733
|
if (cssProperty === false) {
|
|
1734
1734
|
return value;
|
|
@@ -2435,7 +2435,7 @@ function unstable_createStyleFunctionSx() {
|
|
|
2435
2435
|
const styleFromPropValue = (propValueFinal) => {
|
|
2436
2436
|
let value = getStyleValue$1(themeMapping, transform, propValueFinal);
|
|
2437
2437
|
if (propValueFinal === value && typeof propValueFinal === "string") {
|
|
2438
|
-
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize(propValueFinal)}`, propValueFinal);
|
|
2438
|
+
value = getStyleValue$1(themeMapping, transform, `${prop}${propValueFinal === "default" ? "" : capitalize$1(propValueFinal)}`, propValueFinal);
|
|
2439
2439
|
}
|
|
2440
2440
|
if (cssProperty === false) {
|
|
2441
2441
|
return value;
|
|
@@ -2539,7 +2539,7 @@ function extendSxProp$1(props) {
|
|
|
2539
2539
|
} else if (typeof inSx === "function") {
|
|
2540
2540
|
finalSx = (...args) => {
|
|
2541
2541
|
const result = inSx(...args);
|
|
2542
|
-
if (!isPlainObject(result)) {
|
|
2542
|
+
if (!isPlainObject$1(result)) {
|
|
2543
2543
|
return systemProps;
|
|
2544
2544
|
}
|
|
2545
2545
|
return {
|
|
@@ -3841,7 +3841,7 @@ function createTheme$1(options = {}, ...args) {
|
|
|
3841
3841
|
} = options;
|
|
3842
3842
|
const breakpoints = createBreakpoints(breakpointsInput);
|
|
3843
3843
|
const spacing = createSpacing(spacingInput);
|
|
3844
|
-
let muiTheme = deepmerge({
|
|
3844
|
+
let muiTheme = deepmerge$1({
|
|
3845
3845
|
breakpoints,
|
|
3846
3846
|
direction: "ltr",
|
|
3847
3847
|
components: {},
|
|
@@ -3858,7 +3858,7 @@ function createTheme$1(options = {}, ...args) {
|
|
|
3858
3858
|
}, other);
|
|
3859
3859
|
muiTheme = cssContainerQueries(muiTheme);
|
|
3860
3860
|
muiTheme.applyStyles = applyStyles$2;
|
|
3861
|
-
muiTheme = args.reduce((acc, argument) => deepmerge(acc, argument), muiTheme);
|
|
3861
|
+
muiTheme = args.reduce((acc, argument) => deepmerge$1(acc, argument), muiTheme);
|
|
3862
3862
|
muiTheme.unstable_sxConfig = {
|
|
3863
3863
|
...defaultSxConfig,
|
|
3864
3864
|
...other?.unstable_sxConfig
|
|
@@ -3934,9 +3934,9 @@ process.env.NODE_ENV !== "production" ? GlobalStyles$1.propTypes = {
|
|
|
3934
3934
|
*/
|
|
3935
3935
|
themeId: PropTypes.string
|
|
3936
3936
|
} : void 0;
|
|
3937
|
-
const defaultGenerator = (componentName) => componentName;
|
|
3938
|
-
const createClassNameGenerator = () => {
|
|
3939
|
-
let generate = defaultGenerator;
|
|
3937
|
+
const defaultGenerator$1 = (componentName) => componentName;
|
|
3938
|
+
const createClassNameGenerator$1 = () => {
|
|
3939
|
+
let generate = defaultGenerator$1;
|
|
3940
3940
|
return {
|
|
3941
3941
|
configure(generator) {
|
|
3942
3942
|
generate = generator;
|
|
@@ -3945,11 +3945,11 @@ const createClassNameGenerator = () => {
|
|
|
3945
3945
|
return generate(componentName);
|
|
3946
3946
|
},
|
|
3947
3947
|
reset() {
|
|
3948
|
-
generate = defaultGenerator;
|
|
3948
|
+
generate = defaultGenerator$1;
|
|
3949
3949
|
}
|
|
3950
3950
|
};
|
|
3951
3951
|
};
|
|
3952
|
-
const ClassNameGenerator = createClassNameGenerator();
|
|
3952
|
+
const ClassNameGenerator$1 = createClassNameGenerator$1();
|
|
3953
3953
|
function createBox(options = {}) {
|
|
3954
3954
|
const {
|
|
3955
3955
|
themeId,
|
|
@@ -3977,7 +3977,7 @@ function createBox(options = {}) {
|
|
|
3977
3977
|
});
|
|
3978
3978
|
return Box2;
|
|
3979
3979
|
}
|
|
3980
|
-
const globalStateClasses = {
|
|
3980
|
+
const globalStateClasses$1 = {
|
|
3981
3981
|
active: "active",
|
|
3982
3982
|
checked: "checked",
|
|
3983
3983
|
completed: "completed",
|
|
@@ -3991,16 +3991,9 @@ const globalStateClasses = {
|
|
|
3991
3991
|
required: "required",
|
|
3992
3992
|
selected: "selected"
|
|
3993
3993
|
};
|
|
3994
|
-
function generateUtilityClass(componentName, slot, globalStatePrefix = "Mui") {
|
|
3995
|
-
const globalStateClass = globalStateClasses[slot];
|
|
3996
|
-
return globalStateClass ? `${globalStatePrefix}-${globalStateClass}` : `${ClassNameGenerator.generate(componentName)}-${slot}`;
|
|
3997
|
-
}
|
|
3998
|
-
function generateUtilityClasses(componentName, slots, globalStatePrefix = "Mui") {
|
|
3999
|
-
const result = {};
|
|
4000
|
-
slots.forEach((slot) => {
|
|
4001
|
-
result[slot] = generateUtilityClass(componentName, slot, globalStatePrefix);
|
|
4002
|
-
});
|
|
4003
|
-
return result;
|
|
3994
|
+
function generateUtilityClass$1(componentName, slot, globalStatePrefix = "Mui") {
|
|
3995
|
+
const globalStateClass = globalStateClasses$1[slot];
|
|
3996
|
+
return globalStateClass ? `${globalStatePrefix}-${globalStateClass}` : `${ClassNameGenerator$1.generate(componentName)}-${slot}`;
|
|
4004
3997
|
}
|
|
4005
3998
|
function getFunctionComponentName(Component, fallback = "") {
|
|
4006
3999
|
return Component.displayName || Component.name || fallback;
|
|
@@ -4179,7 +4172,7 @@ function createStyled(input = {}) {
|
|
|
4179
4172
|
return processStyle(props, style2, props.theme.modularCssLayers ? layerName : void 0);
|
|
4180
4173
|
};
|
|
4181
4174
|
}
|
|
4182
|
-
if (isPlainObject(style2)) {
|
|
4175
|
+
if (isPlainObject$1(style2)) {
|
|
4183
4176
|
const serialized = preprocessStyles(style2);
|
|
4184
4177
|
return function styleObjectProcessor(props) {
|
|
4185
4178
|
if (!serialized.variants) {
|
|
@@ -4252,7 +4245,7 @@ function createStyled(input = {}) {
|
|
|
4252
4245
|
}
|
|
4253
4246
|
function generateDisplayName(componentName, componentSlot, tag) {
|
|
4254
4247
|
if (componentName) {
|
|
4255
|
-
return `${componentName}${capitalize(componentSlot || "")}`;
|
|
4248
|
+
return `${componentName}${capitalize$1(componentSlot || "")}`;
|
|
4256
4249
|
}
|
|
4257
4250
|
return `Styled(${getDisplayName(tag)})`;
|
|
4258
4251
|
}
|
|
@@ -4284,7 +4277,7 @@ function lowercaseFirstLetter(string) {
|
|
|
4284
4277
|
return string.charAt(0).toLowerCase() + string.slice(1);
|
|
4285
4278
|
}
|
|
4286
4279
|
const styled$1 = createStyled();
|
|
4287
|
-
function resolveProps(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
4280
|
+
function resolveProps$1(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
4288
4281
|
const output = {
|
|
4289
4282
|
...props
|
|
4290
4283
|
};
|
|
@@ -4310,7 +4303,7 @@ function resolveProps(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
|
4310
4303
|
for (const slotKey in defaultSlotProps) {
|
|
4311
4304
|
if (Object.prototype.hasOwnProperty.call(defaultSlotProps, slotKey)) {
|
|
4312
4305
|
const slotPropName = slotKey;
|
|
4313
|
-
output[propName][slotPropName] = resolveProps(defaultSlotProps[slotPropName], slotProps[slotPropName], mergeClassNameAndStyle);
|
|
4306
|
+
output[propName][slotPropName] = resolveProps$1(defaultSlotProps[slotPropName], slotProps[slotPropName], mergeClassNameAndStyle);
|
|
4314
4307
|
}
|
|
4315
4308
|
}
|
|
4316
4309
|
}
|
|
@@ -4337,7 +4330,7 @@ function getThemeProps$1(params) {
|
|
|
4337
4330
|
if (!theme || !theme.components || !theme.components[name] || !theme.components[name].defaultProps) {
|
|
4338
4331
|
return props;
|
|
4339
4332
|
}
|
|
4340
|
-
return resolveProps(theme.components[name].defaultProps, props);
|
|
4333
|
+
return resolveProps$1(theme.components[name].defaultProps, props);
|
|
4341
4334
|
}
|
|
4342
4335
|
function useThemeProps$3({
|
|
4343
4336
|
props,
|
|
@@ -4355,7 +4348,7 @@ function useThemeProps$3({
|
|
|
4355
4348
|
props
|
|
4356
4349
|
});
|
|
4357
4350
|
}
|
|
4358
|
-
const useEnhancedEffect = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
4351
|
+
const useEnhancedEffect$1 = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
4359
4352
|
function useMediaQueryOld(query, defaultMatches, matchMedia, ssrMatchMedia, noSsr) {
|
|
4360
4353
|
const [match2, setMatch] = React__namespace.useState(() => {
|
|
4361
4354
|
if (noSsr && matchMedia) {
|
|
@@ -4366,7 +4359,7 @@ function useMediaQueryOld(query, defaultMatches, matchMedia, ssrMatchMedia, noSs
|
|
|
4366
4359
|
}
|
|
4367
4360
|
return defaultMatches;
|
|
4368
4361
|
});
|
|
4369
|
-
useEnhancedEffect(() => {
|
|
4362
|
+
useEnhancedEffect$1(() => {
|
|
4370
4363
|
if (!matchMedia) {
|
|
4371
4364
|
return void 0;
|
|
4372
4365
|
}
|
|
@@ -4382,10 +4375,10 @@ function useMediaQueryOld(query, defaultMatches, matchMedia, ssrMatchMedia, noSs
|
|
|
4382
4375
|
}, [query, matchMedia]);
|
|
4383
4376
|
return match2;
|
|
4384
4377
|
}
|
|
4385
|
-
const safeReact$
|
|
4378
|
+
const safeReact$2 = {
|
|
4386
4379
|
...React__namespace
|
|
4387
4380
|
};
|
|
4388
|
-
const maybeReactUseSyncExternalStore = safeReact$
|
|
4381
|
+
const maybeReactUseSyncExternalStore = safeReact$2.useSyncExternalStore;
|
|
4389
4382
|
function useMediaQueryNew(query, defaultMatches, matchMedia, ssrMatchMedia, noSsr) {
|
|
4390
4383
|
const getDefaultSnapshot = React__namespace.useCallback(() => defaultMatches, [defaultMatches]);
|
|
4391
4384
|
const getServerSnapshot = React__namespace.useMemo(() => {
|
|
@@ -4500,7 +4493,7 @@ function decomposeColor(color2) {
|
|
|
4500
4493
|
const type = color2.substring(0, marker);
|
|
4501
4494
|
if (!["rgb", "rgba", "hsl", "hsla", "color"].includes(type)) {
|
|
4502
4495
|
throw new Error(process.env.NODE_ENV !== "production" ? `MUI: Unsupported \`${color2}\` color.
|
|
4503
|
-
The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().` : formatMuiErrorMessage(9, color2));
|
|
4496
|
+
The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().` : formatMuiErrorMessage$1(9, color2));
|
|
4504
4497
|
}
|
|
4505
4498
|
let values2 = color2.substring(marker + 1, color2.length - 1);
|
|
4506
4499
|
let colorSpace;
|
|
@@ -4512,7 +4505,7 @@ The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
|
|
4512
4505
|
}
|
|
4513
4506
|
if (!["srgb", "display-p3", "a98-rgb", "prophoto-rgb", "rec-2020"].includes(colorSpace)) {
|
|
4514
4507
|
throw new Error(process.env.NODE_ENV !== "production" ? `MUI: unsupported \`${colorSpace}\` color space.
|
|
4515
|
-
The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rgb, rec-2020.` : formatMuiErrorMessage(10, colorSpace));
|
|
4508
|
+
The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rgb, rec-2020.` : formatMuiErrorMessage$1(10, colorSpace));
|
|
4516
4509
|
}
|
|
4517
4510
|
} else {
|
|
4518
4511
|
values2 = values2.split(",");
|
|
@@ -4686,14 +4679,14 @@ function private_safeEmphasize(color2, coefficient, warning) {
|
|
|
4686
4679
|
return color2;
|
|
4687
4680
|
}
|
|
4688
4681
|
}
|
|
4689
|
-
const specialProperty = "exact-prop: ";
|
|
4690
|
-
function exactProp(propTypes2) {
|
|
4682
|
+
const specialProperty$1 = "exact-prop: ";
|
|
4683
|
+
function exactProp$1(propTypes2) {
|
|
4691
4684
|
if (process.env.NODE_ENV === "production") {
|
|
4692
4685
|
return propTypes2;
|
|
4693
4686
|
}
|
|
4694
4687
|
return {
|
|
4695
4688
|
...propTypes2,
|
|
4696
|
-
[specialProperty]: (props) => {
|
|
4689
|
+
[specialProperty$1]: (props) => {
|
|
4697
4690
|
const unsupportedProps = Object.keys(props).filter((prop) => !propTypes2.hasOwnProperty(prop));
|
|
4698
4691
|
if (unsupportedProps.length > 0) {
|
|
4699
4692
|
return new Error(`The following props are not supported: ${unsupportedProps.map((prop) => `\`${prop}\``).join(", ")}. Please remove them.`);
|
|
@@ -4766,7 +4759,7 @@ process.env.NODE_ENV !== "production" ? ThemeProvider$2.propTypes = {
|
|
|
4766
4759
|
theme: PropTypes.oneOfType([PropTypes.object, PropTypes.func]).isRequired
|
|
4767
4760
|
} : void 0;
|
|
4768
4761
|
if (process.env.NODE_ENV !== "production") {
|
|
4769
|
-
process.env.NODE_ENV !== "production" ? ThemeProvider$2.propTypes = exactProp(ThemeProvider$2.propTypes) : void 0;
|
|
4762
|
+
process.env.NODE_ENV !== "production" ? ThemeProvider$2.propTypes = exactProp$1(ThemeProvider$2.propTypes) : void 0;
|
|
4770
4763
|
}
|
|
4771
4764
|
const PropsContext = /* @__PURE__ */ React__namespace.createContext(void 0);
|
|
4772
4765
|
function DefaultPropsProvider({
|
|
@@ -4803,10 +4796,10 @@ function getThemeProps(params) {
|
|
|
4803
4796
|
}
|
|
4804
4797
|
const config2 = theme.components[name];
|
|
4805
4798
|
if (config2.defaultProps) {
|
|
4806
|
-
return resolveProps(config2.defaultProps, props, theme.components.mergeClassNameAndStyle);
|
|
4799
|
+
return resolveProps$1(config2.defaultProps, props, theme.components.mergeClassNameAndStyle);
|
|
4807
4800
|
}
|
|
4808
4801
|
if (!config2.styleOverrides && !config2.variants) {
|
|
4809
|
-
return resolveProps(config2, props, theme.components.mergeClassNameAndStyle);
|
|
4802
|
+
return resolveProps$1(config2, props, theme.components.mergeClassNameAndStyle);
|
|
4810
4803
|
}
|
|
4811
4804
|
return props;
|
|
4812
4805
|
}
|
|
@@ -4823,32 +4816,32 @@ function useDefaultProps$1({
|
|
|
4823
4816
|
}
|
|
4824
4817
|
});
|
|
4825
4818
|
}
|
|
4826
|
-
let globalId = 0;
|
|
4827
|
-
function useGlobalId(idOverride) {
|
|
4819
|
+
let globalId$1 = 0;
|
|
4820
|
+
function useGlobalId$1(idOverride) {
|
|
4828
4821
|
const [defaultId, setDefaultId] = React__namespace.useState(idOverride);
|
|
4829
4822
|
const id = idOverride || defaultId;
|
|
4830
4823
|
React__namespace.useEffect(() => {
|
|
4831
4824
|
if (defaultId == null) {
|
|
4832
|
-
globalId += 1;
|
|
4833
|
-
setDefaultId(`mui-${globalId}`);
|
|
4825
|
+
globalId$1 += 1;
|
|
4826
|
+
setDefaultId(`mui-${globalId$1}`);
|
|
4834
4827
|
}
|
|
4835
4828
|
}, [defaultId]);
|
|
4836
4829
|
return id;
|
|
4837
4830
|
}
|
|
4838
|
-
const safeReact = {
|
|
4831
|
+
const safeReact$1 = {
|
|
4839
4832
|
...React__namespace
|
|
4840
4833
|
};
|
|
4841
|
-
const maybeReactUseId = safeReact.useId;
|
|
4842
|
-
function useId(idOverride) {
|
|
4843
|
-
if (maybeReactUseId !== void 0) {
|
|
4844
|
-
const reactId = maybeReactUseId();
|
|
4845
|
-
return
|
|
4834
|
+
const maybeReactUseId$1 = safeReact$1.useId;
|
|
4835
|
+
function useId$1(idOverride) {
|
|
4836
|
+
if (maybeReactUseId$1 !== void 0) {
|
|
4837
|
+
const reactId = maybeReactUseId$1();
|
|
4838
|
+
return reactId;
|
|
4846
4839
|
}
|
|
4847
|
-
return useGlobalId(idOverride);
|
|
4840
|
+
return useGlobalId$1(idOverride);
|
|
4848
4841
|
}
|
|
4849
4842
|
function useLayerOrder(theme) {
|
|
4850
4843
|
const upperTheme = useTheme$3();
|
|
4851
|
-
const id = useId() || "";
|
|
4844
|
+
const id = useId$1() || "";
|
|
4852
4845
|
const {
|
|
4853
4846
|
modularCssLayers
|
|
4854
4847
|
} = theme;
|
|
@@ -4860,7 +4853,7 @@ function useLayerOrder(theme) {
|
|
|
4860
4853
|
} else {
|
|
4861
4854
|
layerOrder = `@layer ${layerOrder};`;
|
|
4862
4855
|
}
|
|
4863
|
-
useEnhancedEffect(() => {
|
|
4856
|
+
useEnhancedEffect$1(() => {
|
|
4864
4857
|
const head = document.querySelector("head");
|
|
4865
4858
|
if (!head) {
|
|
4866
4859
|
return;
|
|
@@ -4959,7 +4952,7 @@ process.env.NODE_ENV !== "production" ? ThemeProvider$1.propTypes = {
|
|
|
4959
4952
|
themeId: PropTypes.string
|
|
4960
4953
|
} : void 0;
|
|
4961
4954
|
if (process.env.NODE_ENV !== "production") {
|
|
4962
|
-
process.env.NODE_ENV !== "production" ? ThemeProvider$1.propTypes = exactProp(ThemeProvider$1.propTypes) : void 0;
|
|
4955
|
+
process.env.NODE_ENV !== "production" ? ThemeProvider$1.propTypes = exactProp$1(ThemeProvider$1.propTypes) : void 0;
|
|
4963
4956
|
}
|
|
4964
4957
|
const arg = {
|
|
4965
4958
|
theme: void 0
|
|
@@ -5014,7 +5007,7 @@ function InitColorSchemeScript(options) {
|
|
|
5014
5007
|
}
|
|
5015
5008
|
setter += `
|
|
5016
5009
|
${colorSchemeNode}.setAttribute('${attr}'.replace('%s', colorScheme), ${value ? `${value}.replace('%s', colorScheme)` : '""'});`;
|
|
5017
|
-
} else {
|
|
5010
|
+
} else if (attribute !== ".%s") {
|
|
5018
5011
|
setter += `${colorSchemeNode}.setAttribute('${attribute}', colorScheme);`;
|
|
5019
5012
|
}
|
|
5020
5013
|
return /* @__PURE__ */ jsxRuntime.jsx("script", {
|
|
@@ -5450,7 +5443,7 @@ function createCssVarsProvider(options) {
|
|
|
5450
5443
|
return resolveTheme ? resolveTheme(theme) : theme;
|
|
5451
5444
|
}, [restThemeProp, calculatedColorScheme, components, colorSchemes, cssVarPrefix]);
|
|
5452
5445
|
const colorSchemeSelector = restThemeProp.colorSchemeSelector;
|
|
5453
|
-
useEnhancedEffect(() => {
|
|
5446
|
+
useEnhancedEffect$1(() => {
|
|
5454
5447
|
if (colorScheme && colorSchemeNode && colorSchemeSelector && colorSchemeSelector !== "media") {
|
|
5455
5448
|
const selector = colorSchemeSelector;
|
|
5456
5449
|
let rule = colorSchemeSelector;
|
|
@@ -5742,7 +5735,7 @@ function prepareCssVars(theme, parserConfig = {}) {
|
|
|
5742
5735
|
css,
|
|
5743
5736
|
varsWithDefaults
|
|
5744
5737
|
} = cssVarsParser(scheme, parserConfig);
|
|
5745
|
-
themeVars = deepmerge(themeVars, varsWithDefaults);
|
|
5738
|
+
themeVars = deepmerge$1(themeVars, varsWithDefaults);
|
|
5746
5739
|
colorSchemesMap[key] = {
|
|
5747
5740
|
css,
|
|
5748
5741
|
vars
|
|
@@ -5754,7 +5747,7 @@ function prepareCssVars(theme, parserConfig = {}) {
|
|
|
5754
5747
|
vars,
|
|
5755
5748
|
varsWithDefaults
|
|
5756
5749
|
} = cssVarsParser(defaultScheme, parserConfig);
|
|
5757
|
-
themeVars = deepmerge(themeVars, varsWithDefaults);
|
|
5750
|
+
themeVars = deepmerge$1(themeVars, varsWithDefaults);
|
|
5758
5751
|
colorSchemesMap[defaultColorScheme] = {
|
|
5759
5752
|
css,
|
|
5760
5753
|
vars
|
|
@@ -5799,7 +5792,7 @@ function prepareCssVars(theme, parserConfig = {}) {
|
|
|
5799
5792
|
Object.entries(colorSchemesMap).forEach(([, {
|
|
5800
5793
|
vars: schemeVars
|
|
5801
5794
|
}]) => {
|
|
5802
|
-
vars = deepmerge(vars, schemeVars);
|
|
5795
|
+
vars = deepmerge$1(vars, schemeVars);
|
|
5803
5796
|
});
|
|
5804
5797
|
return vars;
|
|
5805
5798
|
};
|
|
@@ -5895,6 +5888,26 @@ function createGetColorSchemeSelector(selector) {
|
|
|
5895
5888
|
return "&";
|
|
5896
5889
|
};
|
|
5897
5890
|
}
|
|
5891
|
+
function composeClasses(slots, getUtilityClass, classes = void 0) {
|
|
5892
|
+
const output = {};
|
|
5893
|
+
for (const slotName in slots) {
|
|
5894
|
+
const slot = slots[slotName];
|
|
5895
|
+
let buffer = "";
|
|
5896
|
+
let start2 = true;
|
|
5897
|
+
for (let i = 0; i < slot.length; i += 1) {
|
|
5898
|
+
const value = slot[i];
|
|
5899
|
+
if (value) {
|
|
5900
|
+
buffer += (start2 === true ? "" : " ") + getUtilityClass(value);
|
|
5901
|
+
start2 = false;
|
|
5902
|
+
if (classes && classes[value]) {
|
|
5903
|
+
buffer += " " + classes[value];
|
|
5904
|
+
}
|
|
5905
|
+
}
|
|
5906
|
+
}
|
|
5907
|
+
output[slotName] = buffer;
|
|
5908
|
+
}
|
|
5909
|
+
return output;
|
|
5910
|
+
}
|
|
5898
5911
|
const defaultTheme$4 = createTheme$1();
|
|
5899
5912
|
const defaultCreateStyledComponent$2 = styled$1("div", {
|
|
5900
5913
|
name: "MuiContainer",
|
|
@@ -5903,7 +5916,7 @@ const defaultCreateStyledComponent$2 = styled$1("div", {
|
|
|
5903
5916
|
const {
|
|
5904
5917
|
ownerState
|
|
5905
5918
|
} = props;
|
|
5906
|
-
return [styles2.root, styles2[`maxWidth${capitalize(String(ownerState.maxWidth))}`], ownerState.fixed && styles2.fixed, ownerState.disableGutters && styles2.disableGutters];
|
|
5919
|
+
return [styles2.root, styles2[`maxWidth${capitalize$1(String(ownerState.maxWidth))}`], ownerState.fixed && styles2.fixed, ownerState.disableGutters && styles2.disableGutters];
|
|
5907
5920
|
}
|
|
5908
5921
|
});
|
|
5909
5922
|
const useThemePropsDefault$2 = (inProps) => useThemeProps$3({
|
|
@@ -5913,7 +5926,7 @@ const useThemePropsDefault$2 = (inProps) => useThemeProps$3({
|
|
|
5913
5926
|
});
|
|
5914
5927
|
const useUtilityClasses$1X = (ownerState, componentName) => {
|
|
5915
5928
|
const getContainerUtilityClass2 = (slot) => {
|
|
5916
|
-
return generateUtilityClass(componentName, slot);
|
|
5929
|
+
return generateUtilityClass$1(componentName, slot);
|
|
5917
5930
|
};
|
|
5918
5931
|
const {
|
|
5919
5932
|
classes,
|
|
@@ -5922,7 +5935,7 @@ const useUtilityClasses$1X = (ownerState, componentName) => {
|
|
|
5922
5935
|
maxWidth: maxWidth2
|
|
5923
5936
|
} = ownerState;
|
|
5924
5937
|
const slots = {
|
|
5925
|
-
root: ["root", maxWidth2 && `maxWidth${capitalize(String(maxWidth2))}`, fixed && "fixed", disableGutters && "disableGutters"]
|
|
5938
|
+
root: ["root", maxWidth2 && `maxWidth${capitalize$1(String(maxWidth2))}`, fixed && "fixed", disableGutters && "disableGutters"]
|
|
5926
5939
|
};
|
|
5927
5940
|
return composeClasses(slots, getContainerUtilityClass2, classes);
|
|
5928
5941
|
};
|
|
@@ -6025,7 +6038,7 @@ function createContainer(options = {}) {
|
|
|
6025
6038
|
} : void 0;
|
|
6026
6039
|
return Container2;
|
|
6027
6040
|
}
|
|
6028
|
-
function isMuiElement(element, muiNames) {
|
|
6041
|
+
function isMuiElement$1(element, muiNames) {
|
|
6029
6042
|
return /* @__PURE__ */ React__namespace.isValidElement(element) && muiNames.indexOf(
|
|
6030
6043
|
// For server components `muiName` is available in element.type._payload.value.muiName
|
|
6031
6044
|
// relevant info - https://github.com/facebook/react/blob/2807d781a08db8e9873687fccc25c0f12b4fb3d4/packages/react/src/ReactLazy.js#L45
|
|
@@ -6326,7 +6339,7 @@ function createGrid(options = {}) {
|
|
|
6326
6339
|
const slots = {
|
|
6327
6340
|
root: ["root", container && "container", wrap !== "wrap" && `wrap-xs-${String(wrap)}`, ...generateDirectionClasses(direction), ...generateSizeClassNames(size), ...container ? generateSpacingClassNames(spacing, theme.breakpoints.keys[0]) : []]
|
|
6328
6341
|
};
|
|
6329
|
-
return composeClasses(slots, (slot) => generateUtilityClass(componentName, slot), {});
|
|
6342
|
+
return composeClasses(slots, (slot) => generateUtilityClass$1(componentName, slot), {});
|
|
6330
6343
|
};
|
|
6331
6344
|
function parseResponsiveProp(propValue, breakpoints, shouldUseValue = () => true) {
|
|
6332
6345
|
const parsedProp = {};
|
|
@@ -6400,7 +6413,7 @@ function createGrid(options = {}) {
|
|
|
6400
6413
|
className: clsx(classes.root, className),
|
|
6401
6414
|
...other,
|
|
6402
6415
|
children: React__namespace.Children.map(children, (child) => {
|
|
6403
|
-
if (/* @__PURE__ */ React__namespace.isValidElement(child) && isMuiElement(child, ["Grid"]) && container && child.props.container) {
|
|
6416
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(child) && isMuiElement$1(child, ["Grid"]) && container && child.props.container) {
|
|
6404
6417
|
return /* @__PURE__ */ React__namespace.cloneElement(child, {
|
|
6405
6418
|
unstable_level: child.props?.unstable_level ?? level + 1
|
|
6406
6419
|
});
|
|
@@ -6517,7 +6530,7 @@ const style = ({
|
|
|
6517
6530
|
}
|
|
6518
6531
|
};
|
|
6519
6532
|
};
|
|
6520
|
-
styles2 = deepmerge(styles2, handleBreakpoints({
|
|
6533
|
+
styles2 = deepmerge$1(styles2, handleBreakpoints({
|
|
6521
6534
|
theme
|
|
6522
6535
|
}, spacingValues, styleFromPropValue));
|
|
6523
6536
|
}
|
|
@@ -6535,7 +6548,7 @@ function createStack(options = {}) {
|
|
|
6535
6548
|
const slots = {
|
|
6536
6549
|
root: ["root"]
|
|
6537
6550
|
};
|
|
6538
|
-
return composeClasses(slots, (slot) => generateUtilityClass(componentName, slot), {});
|
|
6551
|
+
return composeClasses(slots, (slot) => generateUtilityClass$1(componentName, slot), {});
|
|
6539
6552
|
};
|
|
6540
6553
|
const StackRoot = createStyledComponent(style);
|
|
6541
6554
|
const Stack2 = /* @__PURE__ */ React__namespace.forwardRef(function Grid2(inProps, ref) {
|
|
@@ -6575,6 +6588,50 @@ function createStack(options = {}) {
|
|
|
6575
6588
|
} : void 0;
|
|
6576
6589
|
return Stack2;
|
|
6577
6590
|
}
|
|
6591
|
+
function formatMuiErrorMessage(code, ...args) {
|
|
6592
|
+
const url = new URL(`https://mui.com/production-error/?code=${code}`);
|
|
6593
|
+
args.forEach((arg2) => url.searchParams.append("args[]", arg2));
|
|
6594
|
+
return `Minified MUI error #${code}; visit ${url} for the full message.`;
|
|
6595
|
+
}
|
|
6596
|
+
function isPlainObject(item) {
|
|
6597
|
+
if (typeof item !== "object" || item === null) {
|
|
6598
|
+
return false;
|
|
6599
|
+
}
|
|
6600
|
+
const prototype = Object.getPrototypeOf(item);
|
|
6601
|
+
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in item) && !(Symbol.iterator in item);
|
|
6602
|
+
}
|
|
6603
|
+
function deepClone(source) {
|
|
6604
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(source) || reactIsExports.isValidElementType(source) || !isPlainObject(source)) {
|
|
6605
|
+
return source;
|
|
6606
|
+
}
|
|
6607
|
+
const output = {};
|
|
6608
|
+
Object.keys(source).forEach((key) => {
|
|
6609
|
+
output[key] = deepClone(source[key]);
|
|
6610
|
+
});
|
|
6611
|
+
return output;
|
|
6612
|
+
}
|
|
6613
|
+
function deepmerge(target, source, options = {
|
|
6614
|
+
clone: true
|
|
6615
|
+
}) {
|
|
6616
|
+
const output = options.clone ? {
|
|
6617
|
+
...target
|
|
6618
|
+
} : target;
|
|
6619
|
+
if (isPlainObject(target) && isPlainObject(source)) {
|
|
6620
|
+
Object.keys(source).forEach((key) => {
|
|
6621
|
+
if (/* @__PURE__ */ React__namespace.isValidElement(source[key]) || reactIsExports.isValidElementType(source[key])) {
|
|
6622
|
+
output[key] = source[key];
|
|
6623
|
+
} else if (isPlainObject(source[key]) && // Avoid prototype pollution
|
|
6624
|
+
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject(target[key])) {
|
|
6625
|
+
output[key] = deepmerge(target[key], source[key], options);
|
|
6626
|
+
} else if (options.clone) {
|
|
6627
|
+
output[key] = isPlainObject(source[key]) ? deepClone(source[key]) : source[key];
|
|
6628
|
+
} else {
|
|
6629
|
+
output[key] = source[key];
|
|
6630
|
+
}
|
|
6631
|
+
});
|
|
6632
|
+
}
|
|
6633
|
+
return output;
|
|
6634
|
+
}
|
|
6578
6635
|
const common = {
|
|
6579
6636
|
black: "#000",
|
|
6580
6637
|
white: "#fff"
|
|
@@ -7028,6 +7085,40 @@ function prepareTypographyVars(typography) {
|
|
|
7028
7085
|
});
|
|
7029
7086
|
return vars;
|
|
7030
7087
|
}
|
|
7088
|
+
const defaultGenerator = (componentName) => componentName;
|
|
7089
|
+
const createClassNameGenerator = () => {
|
|
7090
|
+
let generate = defaultGenerator;
|
|
7091
|
+
return {
|
|
7092
|
+
configure(generator) {
|
|
7093
|
+
generate = generator;
|
|
7094
|
+
},
|
|
7095
|
+
generate(componentName) {
|
|
7096
|
+
return generate(componentName);
|
|
7097
|
+
},
|
|
7098
|
+
reset() {
|
|
7099
|
+
generate = defaultGenerator;
|
|
7100
|
+
}
|
|
7101
|
+
};
|
|
7102
|
+
};
|
|
7103
|
+
const ClassNameGenerator = createClassNameGenerator();
|
|
7104
|
+
const globalStateClasses = {
|
|
7105
|
+
active: "active",
|
|
7106
|
+
checked: "checked",
|
|
7107
|
+
completed: "completed",
|
|
7108
|
+
disabled: "disabled",
|
|
7109
|
+
error: "error",
|
|
7110
|
+
expanded: "expanded",
|
|
7111
|
+
focused: "focused",
|
|
7112
|
+
focusVisible: "focusVisible",
|
|
7113
|
+
open: "open",
|
|
7114
|
+
readOnly: "readOnly",
|
|
7115
|
+
required: "required",
|
|
7116
|
+
selected: "selected"
|
|
7117
|
+
};
|
|
7118
|
+
function generateUtilityClass(componentName, slot, globalStatePrefix = "Mui") {
|
|
7119
|
+
const globalStateClass = globalStateClasses[slot];
|
|
7120
|
+
return globalStateClass ? `${globalStatePrefix}-${globalStateClass}` : `${ClassNameGenerator.generate(componentName)}-${slot}`;
|
|
7121
|
+
}
|
|
7031
7122
|
function createMixins(breakpoints, mixins) {
|
|
7032
7123
|
return {
|
|
7033
7124
|
toolbar: {
|
|
@@ -8075,6 +8166,12 @@ function animate(property, element, to, options = {}, cb = () => {
|
|
|
8075
8166
|
requestAnimationFrame(step);
|
|
8076
8167
|
return cancel;
|
|
8077
8168
|
}
|
|
8169
|
+
function capitalize(string) {
|
|
8170
|
+
if (typeof string !== "string") {
|
|
8171
|
+
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `capitalize(string)` expects a string argument." : formatMuiErrorMessage(7));
|
|
8172
|
+
}
|
|
8173
|
+
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
8174
|
+
}
|
|
8078
8175
|
function createChainedFunction(...funcs) {
|
|
8079
8176
|
return funcs.reduce((acc, func) => {
|
|
8080
8177
|
if (func == null) {
|
|
@@ -8087,6 +8184,13 @@ function createChainedFunction(...funcs) {
|
|
|
8087
8184
|
}, () => {
|
|
8088
8185
|
});
|
|
8089
8186
|
}
|
|
8187
|
+
function generateUtilityClasses(componentName, slots, globalStatePrefix = "Mui") {
|
|
8188
|
+
const result = {};
|
|
8189
|
+
slots.forEach((slot) => {
|
|
8190
|
+
result[slot] = generateUtilityClass(componentName, slot, globalStatePrefix);
|
|
8191
|
+
});
|
|
8192
|
+
return result;
|
|
8193
|
+
}
|
|
8090
8194
|
function getSvgIconUtilityClass(slot) {
|
|
8091
8195
|
return generateUtilityClass("MuiSvgIcon", slot);
|
|
8092
8196
|
}
|
|
@@ -8100,7 +8204,7 @@ const useUtilityClasses$1W = (ownerState) => {
|
|
|
8100
8204
|
const slots = {
|
|
8101
8205
|
root: ["root", color2 !== "inherit" && `color${capitalize(color2)}`, `fontSize${capitalize(fontSize)}`]
|
|
8102
8206
|
};
|
|
8103
|
-
return composeClasses(slots, getSvgIconUtilityClass, classes);
|
|
8207
|
+
return composeClasses$1(slots, getSvgIconUtilityClass, classes);
|
|
8104
8208
|
};
|
|
8105
8209
|
const SvgIconRoot = styled("svg", {
|
|
8106
8210
|
name: "MuiSvgIcon",
|
|
@@ -8336,6 +8440,14 @@ function createSvgIcon(path, displayName) {
|
|
|
8336
8440
|
Component.muiName = SvgIcon.muiName;
|
|
8337
8441
|
return /* @__PURE__ */ React__namespace.memo(/* @__PURE__ */ React__namespace.forwardRef(Component));
|
|
8338
8442
|
}
|
|
8443
|
+
function isMuiElement(element, muiNames) {
|
|
8444
|
+
return /* @__PURE__ */ React__namespace.isValidElement(element) && muiNames.indexOf(
|
|
8445
|
+
// For server components `muiName` is available in element.type._payload.value.muiName
|
|
8446
|
+
// relevant info - https://github.com/facebook/react/blob/2807d781a08db8e9873687fccc25c0f12b4fb3d4/packages/react/src/ReactLazy.js#L45
|
|
8447
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
8448
|
+
element.type.muiName ?? element.type?._payload?.value?.muiName
|
|
8449
|
+
) !== -1;
|
|
8450
|
+
}
|
|
8339
8451
|
function ownerDocument(node2) {
|
|
8340
8452
|
return node2 && node2.ownerDocument || document;
|
|
8341
8453
|
}
|
|
@@ -8373,6 +8485,30 @@ function setRef(ref, value) {
|
|
|
8373
8485
|
ref.current = value;
|
|
8374
8486
|
}
|
|
8375
8487
|
}
|
|
8488
|
+
const useEnhancedEffect = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
8489
|
+
let globalId = 0;
|
|
8490
|
+
function useGlobalId(idOverride) {
|
|
8491
|
+
const [defaultId, setDefaultId] = React__namespace.useState(idOverride);
|
|
8492
|
+
const id = idOverride || defaultId;
|
|
8493
|
+
React__namespace.useEffect(() => {
|
|
8494
|
+
if (defaultId == null) {
|
|
8495
|
+
globalId += 1;
|
|
8496
|
+
setDefaultId(`mui-${globalId}`);
|
|
8497
|
+
}
|
|
8498
|
+
}, [defaultId]);
|
|
8499
|
+
return id;
|
|
8500
|
+
}
|
|
8501
|
+
const safeReact = {
|
|
8502
|
+
...React__namespace
|
|
8503
|
+
};
|
|
8504
|
+
const maybeReactUseId = safeReact.useId;
|
|
8505
|
+
function useId(idOverride) {
|
|
8506
|
+
if (maybeReactUseId !== void 0) {
|
|
8507
|
+
const reactId = maybeReactUseId();
|
|
8508
|
+
return idOverride ?? reactId;
|
|
8509
|
+
}
|
|
8510
|
+
return useGlobalId(idOverride);
|
|
8511
|
+
}
|
|
8376
8512
|
function unsupportedProp(props, propName, componentName, location, propFullName) {
|
|
8377
8513
|
if (process.env.NODE_ENV === "production") {
|
|
8378
8514
|
return null;
|
|
@@ -10056,7 +10192,7 @@ const useUtilityClasses$1V = (ownerState) => {
|
|
|
10056
10192
|
const slots = {
|
|
10057
10193
|
root: ["root", disabled && "disabled", focusVisible && "focusVisible"]
|
|
10058
10194
|
};
|
|
10059
|
-
const composedClasses = composeClasses(slots, getButtonBaseUtilityClass, classes);
|
|
10195
|
+
const composedClasses = composeClasses$1(slots, getButtonBaseUtilityClass, classes);
|
|
10060
10196
|
if (focusVisible && focusVisibleClassName) {
|
|
10061
10197
|
composedClasses.root += ` ${focusVisibleClassName}`;
|
|
10062
10198
|
}
|
|
@@ -10474,7 +10610,7 @@ const useUtilityClasses$1U = (ownerState) => {
|
|
|
10474
10610
|
const slots = {
|
|
10475
10611
|
root: ["root", orientation, disabled && "disabled"]
|
|
10476
10612
|
};
|
|
10477
|
-
return composeClasses(slots, getTabScrollButtonUtilityClass, classes);
|
|
10613
|
+
return composeClasses$1(slots, getTabScrollButtonUtilityClass, classes);
|
|
10478
10614
|
};
|
|
10479
10615
|
const TabScrollButtonRoot = styled(ButtonBase, {
|
|
10480
10616
|
name: "MuiTabScrollButton",
|
|
@@ -10731,7 +10867,7 @@ const useUtilityClasses$1T = (ownerState) => {
|
|
|
10731
10867
|
scrollableX: [scrollableX && "scrollableX"],
|
|
10732
10868
|
hideScrollbar: [hideScrollbar && "hideScrollbar"]
|
|
10733
10869
|
};
|
|
10734
|
-
return composeClasses(slots, getTabsUtilityClass, classes);
|
|
10870
|
+
return composeClasses$1(slots, getTabsUtilityClass, classes);
|
|
10735
10871
|
};
|
|
10736
10872
|
const TabsRoot = styled("div", {
|
|
10737
10873
|
name: "MuiTabs",
|
|
@@ -12016,7 +12152,7 @@ const useUtilityClasses$1S = (ownerState) => {
|
|
|
12016
12152
|
const slots = {
|
|
12017
12153
|
root: ["root", hidden && "hidden"]
|
|
12018
12154
|
};
|
|
12019
|
-
return composeClasses(slots, getTabPanelUtilityClass, classes);
|
|
12155
|
+
return composeClasses$1(slots, getTabPanelUtilityClass, classes);
|
|
12020
12156
|
};
|
|
12021
12157
|
const TabPanelRoot = styled("div", {
|
|
12022
12158
|
name: "MuiTabPanel",
|
|
@@ -12121,7 +12257,7 @@ const useUtilityClasses$1R = (ownerState) => {
|
|
|
12121
12257
|
wrapper: ["wrapper", `${orientation}`],
|
|
12122
12258
|
wrapperInner: ["wrapperInner", `${orientation}`]
|
|
12123
12259
|
};
|
|
12124
|
-
return composeClasses(slots, getCollapseUtilityClass, classes);
|
|
12260
|
+
return composeClasses$1(slots, getCollapseUtilityClass, classes);
|
|
12125
12261
|
};
|
|
12126
12262
|
const CollapseRoot = styled("div", {
|
|
12127
12263
|
name: "MuiCollapse",
|
|
@@ -12587,7 +12723,7 @@ const useUtilityClasses$1Q = (ownerState) => {
|
|
|
12587
12723
|
const slots = {
|
|
12588
12724
|
root: ["root", variant, !square && "rounded", variant === "elevation" && `elevation${elevation}`]
|
|
12589
12725
|
};
|
|
12590
|
-
return composeClasses(slots, getPaperUtilityClass, classes);
|
|
12726
|
+
return composeClasses$1(slots, getPaperUtilityClass, classes);
|
|
12591
12727
|
};
|
|
12592
12728
|
const PaperRoot = styled("div", {
|
|
12593
12729
|
name: "MuiPaper",
|
|
@@ -12752,7 +12888,7 @@ const useUtilityClasses$1P = (ownerState) => {
|
|
|
12752
12888
|
heading: ["heading"],
|
|
12753
12889
|
region: ["region"]
|
|
12754
12890
|
};
|
|
12755
|
-
return composeClasses(slots, getAccordionUtilityClass, classes);
|
|
12891
|
+
return composeClasses$1(slots, getAccordionUtilityClass, classes);
|
|
12756
12892
|
};
|
|
12757
12893
|
const AccordionRoot = styled(Paper, {
|
|
12758
12894
|
name: "MuiAccordion",
|
|
@@ -13073,7 +13209,7 @@ const useUtilityClasses$1O = (ownerState) => {
|
|
|
13073
13209
|
const slots = {
|
|
13074
13210
|
root: ["root", !disableSpacing && "spacing"]
|
|
13075
13211
|
};
|
|
13076
|
-
return composeClasses(slots, getAccordionActionsUtilityClass, classes);
|
|
13212
|
+
return composeClasses$1(slots, getAccordionActionsUtilityClass, classes);
|
|
13077
13213
|
};
|
|
13078
13214
|
const AccordionActionsRoot = styled("div", {
|
|
13079
13215
|
name: "MuiAccordionActions",
|
|
@@ -13158,7 +13294,7 @@ const useUtilityClasses$1N = (ownerState) => {
|
|
|
13158
13294
|
const slots = {
|
|
13159
13295
|
root: ["root"]
|
|
13160
13296
|
};
|
|
13161
|
-
return composeClasses(slots, getAccordionDetailsUtilityClass, classes);
|
|
13297
|
+
return composeClasses$1(slots, getAccordionDetailsUtilityClass, classes);
|
|
13162
13298
|
};
|
|
13163
13299
|
const AccordionDetailsRoot = styled("div", {
|
|
13164
13300
|
name: "MuiAccordionDetails",
|
|
@@ -13225,7 +13361,7 @@ const useUtilityClasses$1M = (ownerState) => {
|
|
|
13225
13361
|
content: ["content", expanded && "expanded", !disableGutters && "contentGutters"],
|
|
13226
13362
|
expandIconWrapper: ["expandIconWrapper", expanded && "expanded"]
|
|
13227
13363
|
};
|
|
13228
|
-
return composeClasses(slots, getAccordionSummaryUtilityClass, classes);
|
|
13364
|
+
return composeClasses$1(slots, getAccordionSummaryUtilityClass, classes);
|
|
13229
13365
|
};
|
|
13230
13366
|
const AccordionSummaryRoot = styled(ButtonBase, {
|
|
13231
13367
|
name: "MuiAccordionSummary",
|
|
@@ -13489,7 +13625,7 @@ const useUtilityClasses$1L = (ownerState) => {
|
|
|
13489
13625
|
const slots = {
|
|
13490
13626
|
root: ["root", variant, ownerState.align !== "inherit" && `align${capitalize(align)}`, gutterBottom && "gutterBottom", noWrap && "noWrap", paragraph && "paragraph"]
|
|
13491
13627
|
};
|
|
13492
|
-
return composeClasses(slots, getTypographyUtilityClass, classes);
|
|
13628
|
+
return composeClasses$1(slots, getTypographyUtilityClass, classes);
|
|
13493
13629
|
};
|
|
13494
13630
|
const TypographyRoot = styled("span", {
|
|
13495
13631
|
name: "MuiTypography",
|
|
@@ -13729,7 +13865,7 @@ const useUtilityClasses$1K = (ownerState) => {
|
|
|
13729
13865
|
const slots = {
|
|
13730
13866
|
root: ["root"]
|
|
13731
13867
|
};
|
|
13732
|
-
return composeClasses(slots, getAlertTitleUtilityClass, classes);
|
|
13868
|
+
return composeClasses$1(slots, getAlertTitleUtilityClass, classes);
|
|
13733
13869
|
};
|
|
13734
13870
|
const AlertTitleRoot = styled(Typography, {
|
|
13735
13871
|
name: "MuiAlertTitle",
|
|
@@ -13797,7 +13933,7 @@ const useUtilityClasses$1J = (ownerState) => {
|
|
|
13797
13933
|
const slots = {
|
|
13798
13934
|
root: ["root", `color${capitalize(color2)}`, `position${capitalize(position2)}`]
|
|
13799
13935
|
};
|
|
13800
|
-
return composeClasses(slots, getAppBarUtilityClass, classes);
|
|
13936
|
+
return composeClasses$1(slots, getAppBarUtilityClass, classes);
|
|
13801
13937
|
};
|
|
13802
13938
|
const joinVars = (var1, var2) => var1 ? `${var1?.replace(")", "")}, ${var2})` : var2;
|
|
13803
13939
|
const AppBarRoot = styled(Paper, {
|
|
@@ -16322,6 +16458,22 @@ function getReactElementRef(element) {
|
|
|
16322
16458
|
}
|
|
16323
16459
|
return element?.ref || null;
|
|
16324
16460
|
}
|
|
16461
|
+
const specialProperty = "exact-prop: ";
|
|
16462
|
+
function exactProp(propTypes2) {
|
|
16463
|
+
if (process.env.NODE_ENV === "production") {
|
|
16464
|
+
return propTypes2;
|
|
16465
|
+
}
|
|
16466
|
+
return {
|
|
16467
|
+
...propTypes2,
|
|
16468
|
+
[specialProperty]: (props) => {
|
|
16469
|
+
const unsupportedProps = Object.keys(props).filter((prop) => !propTypes2.hasOwnProperty(prop));
|
|
16470
|
+
if (unsupportedProps.length > 0) {
|
|
16471
|
+
return new Error(`The following props are not supported: ${unsupportedProps.map((prop) => `\`${prop}\``).join(", ")}. Please remove them.`);
|
|
16472
|
+
}
|
|
16473
|
+
return null;
|
|
16474
|
+
}
|
|
16475
|
+
};
|
|
16476
|
+
}
|
|
16325
16477
|
function getContainer$1(container) {
|
|
16326
16478
|
return typeof container === "function" ? container() : container;
|
|
16327
16479
|
}
|
|
@@ -16424,7 +16576,7 @@ const useUtilityClasses$1I = (ownerState) => {
|
|
|
16424
16576
|
const slots = {
|
|
16425
16577
|
root: ["root"]
|
|
16426
16578
|
};
|
|
16427
|
-
return composeClasses(slots, getPopperUtilityClass, classes);
|
|
16579
|
+
return composeClasses$1(slots, getPopperUtilityClass, classes);
|
|
16428
16580
|
};
|
|
16429
16581
|
const defaultPopperOptions = {};
|
|
16430
16582
|
const PopperTooltip = /* @__PURE__ */ React__namespace.forwardRef(function PopperTooltip2(props, forwardedRef) {
|
|
@@ -16936,7 +17088,7 @@ const useUtilityClasses$1H = (ownerState) => {
|
|
|
16936
17088
|
const slots = {
|
|
16937
17089
|
root: ["root", color2 !== "default" && `color${capitalize(color2)}`, !disableGutters && "gutters", inset && "inset", !disableSticky && "sticky"]
|
|
16938
17090
|
};
|
|
16939
|
-
return composeClasses(slots, getListSubheaderUtilityClass, classes);
|
|
17091
|
+
return composeClasses$1(slots, getListSubheaderUtilityClass, classes);
|
|
16940
17092
|
};
|
|
16941
17093
|
const ListSubheaderRoot = styled("li", {
|
|
16942
17094
|
name: "MuiListSubheader",
|
|
@@ -17128,7 +17280,7 @@ const useUtilityClasses$1G = (ownerState) => {
|
|
|
17128
17280
|
track: ["track"],
|
|
17129
17281
|
circle: ["circle", `circle${capitalize(variant)}`, disableShrink && "circleDisableShrink"]
|
|
17130
17282
|
};
|
|
17131
|
-
return composeClasses(slots, getCircularProgressUtilityClass, classes);
|
|
17283
|
+
return composeClasses$1(slots, getCircularProgressUtilityClass, classes);
|
|
17132
17284
|
};
|
|
17133
17285
|
const CircularProgressRoot = styled("span", {
|
|
17134
17286
|
name: "MuiCircularProgress",
|
|
@@ -17387,7 +17539,7 @@ const useUtilityClasses$1F = (ownerState) => {
|
|
|
17387
17539
|
loadingIndicator: ["loadingIndicator"],
|
|
17388
17540
|
loadingWrapper: ["loadingWrapper"]
|
|
17389
17541
|
};
|
|
17390
|
-
return composeClasses(slots, getIconButtonUtilityClass, classes);
|
|
17542
|
+
return composeClasses$1(slots, getIconButtonUtilityClass, classes);
|
|
17391
17543
|
};
|
|
17392
17544
|
const IconButtonRoot = styled(ButtonBase, {
|
|
17393
17545
|
name: "MuiIconButton",
|
|
@@ -17691,7 +17843,7 @@ const useUtilityClasses$1E = (ownerState) => {
|
|
|
17691
17843
|
icon: ["icon", `icon${capitalize(size)}`, `iconColor${capitalize(iconColor)}`],
|
|
17692
17844
|
deleteIcon: ["deleteIcon", `deleteIcon${capitalize(size)}`, `deleteIconColor${capitalize(color2)}`, `deleteIcon${capitalize(variant)}Color${capitalize(color2)}`]
|
|
17693
17845
|
};
|
|
17694
|
-
return composeClasses(slots, getChipUtilityClass, classes);
|
|
17846
|
+
return composeClasses$1(slots, getChipUtilityClass, classes);
|
|
17695
17847
|
};
|
|
17696
17848
|
const ChipRoot = styled("div", {
|
|
17697
17849
|
name: "MuiChip",
|
|
@@ -18553,7 +18705,7 @@ const useUtilityClasses$1D = (ownerState) => {
|
|
|
18553
18705
|
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"],
|
|
18554
18706
|
input: ["input", disabled && "disabled", type === "search" && "inputTypeSearch", multiline && "inputMultiline", size === "small" && "inputSizeSmall", hiddenLabel && "inputHiddenLabel", startAdornment && "inputAdornedStart", endAdornment && "inputAdornedEnd", readOnly && "readOnly"]
|
|
18555
18707
|
};
|
|
18556
|
-
return composeClasses(slots, getInputBaseUtilityClass, classes);
|
|
18708
|
+
return composeClasses$1(slots, getInputBaseUtilityClass, classes);
|
|
18557
18709
|
};
|
|
18558
18710
|
const InputBaseRoot = styled("div", {
|
|
18559
18711
|
name: "MuiInputBase",
|
|
@@ -19290,7 +19442,7 @@ const useUtilityClasses$1C = (ownerState) => {
|
|
|
19290
19442
|
groupLabel: ["groupLabel"],
|
|
19291
19443
|
groupUl: ["groupUl"]
|
|
19292
19444
|
};
|
|
19293
|
-
return composeClasses(slots, getAutocompleteUtilityClass, classes);
|
|
19445
|
+
return composeClasses$1(slots, getAutocompleteUtilityClass, classes);
|
|
19294
19446
|
};
|
|
19295
19447
|
const AutocompleteRoot = styled("div", {
|
|
19296
19448
|
name: "MuiAutocomplete",
|
|
@@ -20443,7 +20595,7 @@ const useUtilityClasses$1B = (ownerState) => {
|
|
|
20443
20595
|
img: ["img"],
|
|
20444
20596
|
fallback: ["fallback"]
|
|
20445
20597
|
};
|
|
20446
|
-
return composeClasses(slots, getAvatarUtilityClass, classes);
|
|
20598
|
+
return composeClasses$1(slots, getAvatarUtilityClass, classes);
|
|
20447
20599
|
};
|
|
20448
20600
|
const AvatarRoot = styled("div", {
|
|
20449
20601
|
name: "MuiAvatar",
|
|
@@ -20959,7 +21111,7 @@ const useUtilityClasses$1A = (ownerState) => {
|
|
|
20959
21111
|
const slots = {
|
|
20960
21112
|
root: ["root", invisible && "invisible"]
|
|
20961
21113
|
};
|
|
20962
|
-
return composeClasses(slots, getBackdropUtilityClass, classes);
|
|
21114
|
+
return composeClasses$1(slots, getBackdropUtilityClass, classes);
|
|
20963
21115
|
};
|
|
20964
21116
|
const BackdropRoot = styled("div", {
|
|
20965
21117
|
name: "MuiBackdrop",
|
|
@@ -21217,7 +21369,7 @@ const useUtilityClasses$1z = (ownerState) => {
|
|
|
21217
21369
|
root: ["root"],
|
|
21218
21370
|
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)}`]
|
|
21219
21371
|
};
|
|
21220
|
-
return composeClasses(slots, getBadgeUtilityClass, classes);
|
|
21372
|
+
return composeClasses$1(slots, getBadgeUtilityClass, classes);
|
|
21221
21373
|
};
|
|
21222
21374
|
const BadgeRoot = styled("span", {
|
|
21223
21375
|
name: "MuiBadge",
|
|
@@ -21738,7 +21890,7 @@ const useUtilityClasses$1y = (ownerState) => {
|
|
|
21738
21890
|
ol: ["ol"],
|
|
21739
21891
|
separator: ["separator"]
|
|
21740
21892
|
};
|
|
21741
|
-
return composeClasses(slots, getBreadcrumbsUtilityClass, classes);
|
|
21893
|
+
return composeClasses$1(slots, getBreadcrumbsUtilityClass, classes);
|
|
21742
21894
|
};
|
|
21743
21895
|
const BreadcrumbsRoot = styled(Typography, {
|
|
21744
21896
|
name: "MuiBreadcrumbs",
|
|
@@ -21996,7 +22148,7 @@ const useUtilityClasses$1x = (ownerState) => {
|
|
|
21996
22148
|
lastButton: ["lastButton"],
|
|
21997
22149
|
middleButton: ["middleButton"]
|
|
21998
22150
|
};
|
|
21999
|
-
return composeClasses(slots, getButtonGroupUtilityClass, classes);
|
|
22151
|
+
return composeClasses$1(slots, getButtonGroupUtilityClass, classes);
|
|
22000
22152
|
};
|
|
22001
22153
|
const ButtonGroupRoot = styled("div", {
|
|
22002
22154
|
name: "MuiButtonGroup",
|
|
@@ -22340,7 +22492,7 @@ const useUtilityClasses$1w = (ownerState) => {
|
|
|
22340
22492
|
const slots = {
|
|
22341
22493
|
root: ["root"]
|
|
22342
22494
|
};
|
|
22343
|
-
return composeClasses(slots, getCardUtilityClass, classes);
|
|
22495
|
+
return composeClasses$1(slots, getCardUtilityClass, classes);
|
|
22344
22496
|
};
|
|
22345
22497
|
const CardRoot = styled(Paper, {
|
|
22346
22498
|
name: "MuiCard",
|
|
@@ -22415,7 +22567,7 @@ const useUtilityClasses$1v = (ownerState) => {
|
|
|
22415
22567
|
root: ["root"],
|
|
22416
22568
|
focusHighlight: ["focusHighlight"]
|
|
22417
22569
|
};
|
|
22418
|
-
return composeClasses(slots, getCardActionAreaUtilityClass, classes);
|
|
22570
|
+
return composeClasses$1(slots, getCardActionAreaUtilityClass, classes);
|
|
22419
22571
|
};
|
|
22420
22572
|
const CardActionAreaRoot = styled(ButtonBase, {
|
|
22421
22573
|
name: "MuiCardActionArea",
|
|
@@ -22559,7 +22711,7 @@ const useUtilityClasses$1u = (ownerState) => {
|
|
|
22559
22711
|
const slots = {
|
|
22560
22712
|
root: ["root", !disableSpacing && "spacing"]
|
|
22561
22713
|
};
|
|
22562
|
-
return composeClasses(slots, getCardActionsUtilityClass, classes);
|
|
22714
|
+
return composeClasses$1(slots, getCardActionsUtilityClass, classes);
|
|
22563
22715
|
};
|
|
22564
22716
|
const CardActionsRoot = styled("div", {
|
|
22565
22717
|
name: "MuiCardActions",
|
|
@@ -22645,7 +22797,7 @@ const useUtilityClasses$1t = (ownerState) => {
|
|
|
22645
22797
|
const slots = {
|
|
22646
22798
|
root: ["root"]
|
|
22647
22799
|
};
|
|
22648
|
-
return composeClasses(slots, getCardContentUtilityClass, classes);
|
|
22800
|
+
return composeClasses$1(slots, getCardContentUtilityClass, classes);
|
|
22649
22801
|
};
|
|
22650
22802
|
const CardContentRoot = styled("div", {
|
|
22651
22803
|
name: "MuiCardContent",
|
|
@@ -22722,7 +22874,7 @@ const useUtilityClasses$1s = (ownerState) => {
|
|
|
22722
22874
|
title: ["title"],
|
|
22723
22875
|
subheader: ["subheader"]
|
|
22724
22876
|
};
|
|
22725
|
-
return composeClasses(slots, getCardHeaderUtilityClass, classes);
|
|
22877
|
+
return composeClasses$1(slots, getCardHeaderUtilityClass, classes);
|
|
22726
22878
|
};
|
|
22727
22879
|
const CardHeaderRoot = styled("div", {
|
|
22728
22880
|
name: "MuiCardHeader",
|
|
@@ -22975,7 +23127,7 @@ const useUtilityClasses$1r = (ownerState) => {
|
|
|
22975
23127
|
const slots = {
|
|
22976
23128
|
root: ["root", isMediaComponent && "media", isImageComponent && "img"]
|
|
22977
23129
|
};
|
|
22978
|
-
return composeClasses(slots, getCardMediaUtilityClass, classes);
|
|
23130
|
+
return composeClasses$1(slots, getCardMediaUtilityClass, classes);
|
|
22979
23131
|
};
|
|
22980
23132
|
const CardMediaRoot = styled("div", {
|
|
22981
23133
|
name: "MuiCardMedia",
|
|
@@ -23114,7 +23266,7 @@ const useUtilityClasses$1q = (ownerState) => {
|
|
|
23114
23266
|
root: ["root", checked && "checked", disabled && "disabled", edge && `edge${capitalize(edge)}`],
|
|
23115
23267
|
input: ["input"]
|
|
23116
23268
|
};
|
|
23117
|
-
return composeClasses(slots, getSwitchBaseUtilityClass, classes);
|
|
23269
|
+
return composeClasses$1(slots, getSwitchBaseUtilityClass, classes);
|
|
23118
23270
|
};
|
|
23119
23271
|
const SwitchBaseRoot = styled(ButtonBase, {
|
|
23120
23272
|
name: "MuiSwitchBase"
|
|
@@ -23459,7 +23611,7 @@ const useUtilityClasses$1p = (ownerState) => {
|
|
|
23459
23611
|
const slots = {
|
|
23460
23612
|
root: ["root", indeterminate && "indeterminate", `color${capitalize(color2)}`, `size${capitalize(size)}`]
|
|
23461
23613
|
};
|
|
23462
|
-
const composedClasses = composeClasses(slots, getCheckboxUtilityClass, classes);
|
|
23614
|
+
const composedClasses = composeClasses$1(slots, getCheckboxUtilityClass, classes);
|
|
23463
23615
|
return {
|
|
23464
23616
|
...classes,
|
|
23465
23617
|
// forward the disabled and checked classes to the SwitchBase
|
|
@@ -24106,7 +24258,7 @@ const useUtilityClasses$1o = (ownerState) => {
|
|
|
24106
24258
|
const slots = {
|
|
24107
24259
|
root: ["root", !disableSpacing && "spacing"]
|
|
24108
24260
|
};
|
|
24109
|
-
return composeClasses(slots, getDialogActionsUtilityClass, classes);
|
|
24261
|
+
return composeClasses$1(slots, getDialogActionsUtilityClass, classes);
|
|
24110
24262
|
};
|
|
24111
24263
|
const DialogActionsRoot = styled("div", {
|
|
24112
24264
|
name: "MuiDialogActions",
|
|
@@ -24199,7 +24351,7 @@ const useUtilityClasses$1n = (ownerState) => {
|
|
|
24199
24351
|
const slots = {
|
|
24200
24352
|
root: ["root", dividers && "dividers"]
|
|
24201
24353
|
};
|
|
24202
|
-
return composeClasses(slots, getDialogContentUtilityClass, classes);
|
|
24354
|
+
return composeClasses$1(slots, getDialogContentUtilityClass, classes);
|
|
24203
24355
|
};
|
|
24204
24356
|
const DialogContentRoot = styled("div", {
|
|
24205
24357
|
name: "MuiDialogContent",
|
|
@@ -24298,7 +24450,7 @@ const useUtilityClasses$1m = (ownerState) => {
|
|
|
24298
24450
|
const slots = {
|
|
24299
24451
|
root: ["root"]
|
|
24300
24452
|
};
|
|
24301
|
-
const composedClasses = composeClasses(slots, getDialogContentTextUtilityClass, classes);
|
|
24453
|
+
const composedClasses = composeClasses$1(slots, getDialogContentTextUtilityClass, classes);
|
|
24302
24454
|
return {
|
|
24303
24455
|
...classes,
|
|
24304
24456
|
// forward classes to the Typography
|
|
@@ -24365,7 +24517,7 @@ const useUtilityClasses$1l = (ownerState) => {
|
|
|
24365
24517
|
const slots = {
|
|
24366
24518
|
root: ["root"]
|
|
24367
24519
|
};
|
|
24368
|
-
return composeClasses(slots, getDialogTitleUtilityClass, classes);
|
|
24520
|
+
return composeClasses$1(slots, getDialogTitleUtilityClass, classes);
|
|
24369
24521
|
};
|
|
24370
24522
|
const DialogTitleRoot = styled(Typography, {
|
|
24371
24523
|
name: "MuiDialogTitle",
|
|
@@ -24444,7 +24596,7 @@ const useUtilityClasses$1k = (ownerState) => {
|
|
|
24444
24596
|
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"],
|
|
24445
24597
|
wrapper: ["wrapper", orientation === "vertical" && "wrapperVertical"]
|
|
24446
24598
|
};
|
|
24447
|
-
return composeClasses(slots, getDividerUtilityClass, classes);
|
|
24599
|
+
return composeClasses$1(slots, getDividerUtilityClass, classes);
|
|
24448
24600
|
};
|
|
24449
24601
|
const DividerRoot = styled("div", {
|
|
24450
24602
|
name: "MuiDivider",
|
|
@@ -25355,7 +25507,7 @@ const useUtilityClasses$1j = (ownerState) => {
|
|
|
25355
25507
|
root: ["root", !open && exited && "hidden"],
|
|
25356
25508
|
backdrop: ["backdrop"]
|
|
25357
25509
|
};
|
|
25358
|
-
return composeClasses(slots, getModalUtilityClass, classes);
|
|
25510
|
+
return composeClasses$1(slots, getModalUtilityClass, classes);
|
|
25359
25511
|
};
|
|
25360
25512
|
const ModalRoot = styled("div", {
|
|
25361
25513
|
name: "MuiModal",
|
|
@@ -26028,7 +26180,7 @@ const useUtilityClasses$1i = (ownerState) => {
|
|
|
26028
26180
|
modal: ["modal"],
|
|
26029
26181
|
paper: ["paper", `paperAnchor${capitalize(anchor)}`, variant !== "temporary" && `paperAnchorDocked${capitalize(anchor)}`]
|
|
26030
26182
|
};
|
|
26031
|
-
return composeClasses(slots, getDrawerUtilityClass, classes);
|
|
26183
|
+
return composeClasses$1(slots, getDrawerUtilityClass, classes);
|
|
26032
26184
|
};
|
|
26033
26185
|
const DrawerRoot = styled(Modal, {
|
|
26034
26186
|
name: "MuiDrawer",
|
|
@@ -26430,7 +26582,7 @@ const useUtilityClasses$1h = (ownerState) => {
|
|
|
26430
26582
|
const slots = {
|
|
26431
26583
|
root: ["root", margin2 !== "none" && `margin${capitalize(margin2)}`, fullWidth && "fullWidth"]
|
|
26432
26584
|
};
|
|
26433
|
-
return composeClasses(slots, getFormControlUtilityClasses, classes);
|
|
26585
|
+
return composeClasses$1(slots, getFormControlUtilityClasses, classes);
|
|
26434
26586
|
};
|
|
26435
26587
|
const FormControlRoot = styled("div", {
|
|
26436
26588
|
name: "MuiFormControl",
|
|
@@ -26699,7 +26851,7 @@ const useUtilityClasses$1g = (ownerState) => {
|
|
|
26699
26851
|
label: ["label", disabled && "disabled"],
|
|
26700
26852
|
asterisk: ["asterisk", error && "error"]
|
|
26701
26853
|
};
|
|
26702
|
-
return composeClasses(slots, getFormControlLabelUtilityClasses, classes);
|
|
26854
|
+
return composeClasses$1(slots, getFormControlLabelUtilityClasses, classes);
|
|
26703
26855
|
};
|
|
26704
26856
|
const FormControlLabelRoot = styled("label", {
|
|
26705
26857
|
name: "MuiFormControlLabel",
|
|
@@ -26959,7 +27111,7 @@ const useUtilityClasses$1f = (ownerState) => {
|
|
|
26959
27111
|
const slots = {
|
|
26960
27112
|
root: ["root", row && "row", error && "error"]
|
|
26961
27113
|
};
|
|
26962
|
-
return composeClasses(slots, getFormGroupUtilityClass, classes);
|
|
27114
|
+
return composeClasses$1(slots, getFormGroupUtilityClass, classes);
|
|
26963
27115
|
};
|
|
26964
27116
|
const FormGroupRoot = styled("div", {
|
|
26965
27117
|
name: "MuiFormGroup",
|
|
@@ -27058,7 +27210,7 @@ const useUtilityClasses$1e = (ownerState) => {
|
|
|
27058
27210
|
const slots = {
|
|
27059
27211
|
root: ["root", disabled && "disabled", error && "error", size && `size${capitalize(size)}`, contained && "contained", focused && "focused", filled && "filled", required && "required"]
|
|
27060
27212
|
};
|
|
27061
|
-
return composeClasses(slots, getFormHelperTextUtilityClasses, classes);
|
|
27213
|
+
return composeClasses$1(slots, getFormHelperTextUtilityClasses, classes);
|
|
27062
27214
|
};
|
|
27063
27215
|
const FormHelperTextRoot = styled("p", {
|
|
27064
27216
|
name: "MuiFormHelperText",
|
|
@@ -27232,7 +27384,7 @@ const useUtilityClasses$1d = (ownerState) => {
|
|
|
27232
27384
|
root: ["root", `color${capitalize(color2)}`, disabled && "disabled", error && "error", filled && "filled", focused && "focused", required && "required"],
|
|
27233
27385
|
asterisk: ["asterisk", error && "error"]
|
|
27234
27386
|
};
|
|
27235
|
-
return composeClasses(slots, getFormLabelUtilityClasses, classes);
|
|
27387
|
+
return composeClasses$1(slots, getFormLabelUtilityClasses, classes);
|
|
27236
27388
|
};
|
|
27237
27389
|
const FormLabelRoot = styled("label", {
|
|
27238
27390
|
name: "MuiFormLabel",
|
|
@@ -27767,7 +27919,7 @@ const useUtilityClasses$1c = (ownerState) => {
|
|
|
27767
27919
|
root: ["root", !disableUnderline && "underline"],
|
|
27768
27920
|
input: ["input"]
|
|
27769
27921
|
};
|
|
27770
|
-
const composedClasses = composeClasses(slots, getInputUtilityClass, classes);
|
|
27922
|
+
const composedClasses = composeClasses$1(slots, getInputUtilityClass, classes);
|
|
27771
27923
|
return {
|
|
27772
27924
|
...classes,
|
|
27773
27925
|
// forward classes to the InputBase
|
|
@@ -28122,7 +28274,7 @@ const useUtilityClasses$1b = (ownerState) => {
|
|
|
28122
28274
|
root: ["root", formControl && "formControl", !disableAnimation && "animated", shrink && "shrink", size && size !== "medium" && `size${capitalize(size)}`, variant],
|
|
28123
28275
|
asterisk: [required && "asterisk"]
|
|
28124
28276
|
};
|
|
28125
|
-
const composedClasses = composeClasses(slots, getInputLabelUtilityClasses, classes);
|
|
28277
|
+
const composedClasses = composeClasses$1(slots, getInputLabelUtilityClasses, classes);
|
|
28126
28278
|
return {
|
|
28127
28279
|
...classes,
|
|
28128
28280
|
// forward the focused, disabled, etc. classes to the FormLabel
|
|
@@ -28448,7 +28600,7 @@ const useUtilityClasses$1a = (ownerState) => {
|
|
|
28448
28600
|
bar1: ["bar", "bar1", `barColor${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar1Indeterminate", variant === "determinate" && "bar1Determinate", variant === "buffer" && "bar1Buffer"],
|
|
28449
28601
|
bar2: ["bar", "bar2", variant !== "buffer" && `barColor${capitalize(color2)}`, variant === "buffer" && `color${capitalize(color2)}`, (variant === "indeterminate" || variant === "query") && "bar2Indeterminate", variant === "buffer" && "bar2Buffer"]
|
|
28450
28602
|
};
|
|
28451
|
-
return composeClasses(slots, getLinearProgressUtilityClass, classes);
|
|
28603
|
+
return composeClasses$1(slots, getLinearProgressUtilityClass, classes);
|
|
28452
28604
|
};
|
|
28453
28605
|
const getColorShade = (theme, color2) => {
|
|
28454
28606
|
if (theme.vars) {
|
|
@@ -28846,7 +28998,7 @@ const useUtilityClasses$19 = (ownerState) => {
|
|
|
28846
28998
|
const slots = {
|
|
28847
28999
|
root: ["root", `underline${capitalize(underline)}`, component === "button" && "button", focusVisible && "focusVisible"]
|
|
28848
29000
|
};
|
|
28849
|
-
return composeClasses(slots, getLinkUtilityClass, classes);
|
|
29001
|
+
return composeClasses$1(slots, getLinkUtilityClass, classes);
|
|
28850
29002
|
};
|
|
28851
29003
|
const LinkRoot = styled(Typography, {
|
|
28852
29004
|
name: "MuiLink",
|
|
@@ -29116,7 +29268,7 @@ const useUtilityClasses$18 = (ownerState) => {
|
|
|
29116
29268
|
const slots = {
|
|
29117
29269
|
root: ["root", !disablePadding && "padding", dense && "dense", subheader && "subheader"]
|
|
29118
29270
|
};
|
|
29119
|
-
return composeClasses(slots, getListUtilityClass, classes);
|
|
29271
|
+
return composeClasses$1(slots, getListUtilityClass, classes);
|
|
29120
29272
|
};
|
|
29121
29273
|
const ListRoot = styled("ul", {
|
|
29122
29274
|
name: "MuiList",
|
|
@@ -29255,7 +29407,7 @@ const useUtilityClasses$17 = (ownerState) => {
|
|
|
29255
29407
|
const slots = {
|
|
29256
29408
|
root: ["root", dense && "dense", !disableGutters && "gutters", divider && "divider", disabled && "disabled", alignItems === "flex-start" && "alignItemsFlexStart", selected && "selected"]
|
|
29257
29409
|
};
|
|
29258
|
-
const composedClasses = composeClasses(slots, getListItemButtonUtilityClass, classes);
|
|
29410
|
+
const composedClasses = composeClasses$1(slots, getListItemButtonUtilityClass, classes);
|
|
29259
29411
|
return {
|
|
29260
29412
|
...classes,
|
|
29261
29413
|
...composedClasses
|
|
@@ -29492,7 +29644,7 @@ const useUtilityClasses$16 = (ownerState) => {
|
|
|
29492
29644
|
const slots = {
|
|
29493
29645
|
root: ["root", disableGutters && "disableGutters"]
|
|
29494
29646
|
};
|
|
29495
|
-
return composeClasses(slots, getListItemSecondaryActionClassesUtilityClass, classes);
|
|
29647
|
+
return composeClasses$1(slots, getListItemSecondaryActionClassesUtilityClass, classes);
|
|
29496
29648
|
};
|
|
29497
29649
|
const ListItemSecondaryActionRoot = styled("div", {
|
|
29498
29650
|
name: "MuiListItemSecondaryAction",
|
|
@@ -29582,7 +29734,7 @@ const useUtilityClasses$15 = (ownerState) => {
|
|
|
29582
29734
|
root: ["root", dense && "dense", !disableGutters && "gutters", !disablePadding && "padding", divider && "divider", alignItems === "flex-start" && "alignItemsFlexStart", hasSecondaryAction && "secondaryAction"],
|
|
29583
29735
|
container: ["container"]
|
|
29584
29736
|
};
|
|
29585
|
-
return composeClasses(slots, getListItemUtilityClass, classes);
|
|
29737
|
+
return composeClasses$1(slots, getListItemUtilityClass, classes);
|
|
29586
29738
|
};
|
|
29587
29739
|
const ListItemRoot = styled("div", {
|
|
29588
29740
|
name: "MuiListItem",
|
|
@@ -29926,7 +30078,7 @@ const useUtilityClasses$14 = (ownerState) => {
|
|
|
29926
30078
|
const slots = {
|
|
29927
30079
|
root: ["root", alignItems === "flex-start" && "alignItemsFlexStart"]
|
|
29928
30080
|
};
|
|
29929
|
-
return composeClasses(slots, getListItemIconUtilityClass, classes);
|
|
30081
|
+
return composeClasses$1(slots, getListItemIconUtilityClass, classes);
|
|
29930
30082
|
};
|
|
29931
30083
|
const ListItemIconRoot = styled("div", {
|
|
29932
30084
|
name: "MuiListItemIcon",
|
|
@@ -30015,7 +30167,7 @@ const useUtilityClasses$13 = (ownerState) => {
|
|
|
30015
30167
|
primary: ["primary"],
|
|
30016
30168
|
secondary: ["secondary"]
|
|
30017
30169
|
};
|
|
30018
|
-
return composeClasses(slots, getListItemTextUtilityClass, classes);
|
|
30170
|
+
return composeClasses$1(slots, getListItemTextUtilityClass, classes);
|
|
30019
30171
|
};
|
|
30020
30172
|
const ListItemTextRoot = styled("div", {
|
|
30021
30173
|
name: "MuiListItemText",
|
|
@@ -30498,7 +30650,7 @@ const useUtilityClasses$12 = (ownerState) => {
|
|
|
30498
30650
|
root: ["root"],
|
|
30499
30651
|
paper: ["paper"]
|
|
30500
30652
|
};
|
|
30501
|
-
return composeClasses(slots, getPopoverUtilityClass, classes);
|
|
30653
|
+
return composeClasses$1(slots, getPopoverUtilityClass, classes);
|
|
30502
30654
|
};
|
|
30503
30655
|
const PopoverRoot = styled(Modal, {
|
|
30504
30656
|
name: "MuiPopover",
|
|
@@ -31014,7 +31166,7 @@ const useUtilityClasses$11 = (ownerState) => {
|
|
|
31014
31166
|
paper: ["paper"],
|
|
31015
31167
|
list: ["list"]
|
|
31016
31168
|
};
|
|
31017
|
-
return composeClasses(slots, getMenuUtilityClass, classes);
|
|
31169
|
+
return composeClasses$1(slots, getMenuUtilityClass, classes);
|
|
31018
31170
|
};
|
|
31019
31171
|
const MenuRoot = styled(Popover, {
|
|
31020
31172
|
shouldForwardProp: (prop) => rootShouldForwardProp(prop) || prop === "classes",
|
|
@@ -31329,7 +31481,7 @@ const useUtilityClasses$10 = (ownerState) => {
|
|
|
31329
31481
|
const slots = {
|
|
31330
31482
|
root: ["root", dense && "dense", disabled && "disabled", !disableGutters && "gutters", divider && "divider", selected && "selected"]
|
|
31331
31483
|
};
|
|
31332
|
-
const composedClasses = composeClasses(slots, getMenuItemUtilityClass, classes);
|
|
31484
|
+
const composedClasses = composeClasses$1(slots, getMenuItemUtilityClass, classes);
|
|
31333
31485
|
return {
|
|
31334
31486
|
...classes,
|
|
31335
31487
|
...composedClasses
|
|
@@ -31589,7 +31741,7 @@ const useUtilityClasses$$ = (ownerState) => {
|
|
|
31589
31741
|
dotActive: ["dotActive"],
|
|
31590
31742
|
progress: ["progress"]
|
|
31591
31743
|
};
|
|
31592
|
-
return composeClasses(slots, getMobileStepperUtilityClass, classes);
|
|
31744
|
+
return composeClasses$1(slots, getMobileStepperUtilityClass, classes);
|
|
31593
31745
|
};
|
|
31594
31746
|
const MobileStepperRoot = styled(Paper, {
|
|
31595
31747
|
name: "MuiMobileStepper",
|
|
@@ -32025,7 +32177,7 @@ const useUtilityClasses$_ = (ownerState) => {
|
|
|
32025
32177
|
}[type]],
|
|
32026
32178
|
icon: ["icon"]
|
|
32027
32179
|
};
|
|
32028
|
-
return composeClasses(slots, getPaginationItemUtilityClass, classes);
|
|
32180
|
+
return composeClasses$1(slots, getPaginationItemUtilityClass, classes);
|
|
32029
32181
|
};
|
|
32030
32182
|
const PaginationItemEllipsis = styled("div", {
|
|
32031
32183
|
name: "MuiPaginationItem",
|
|
@@ -32454,7 +32606,7 @@ const useUtilityClasses$Z = (ownerState) => {
|
|
|
32454
32606
|
root: ["root", variant],
|
|
32455
32607
|
ul: ["ul"]
|
|
32456
32608
|
};
|
|
32457
|
-
return composeClasses(slots, getPaginationUtilityClass, classes);
|
|
32609
|
+
return composeClasses$1(slots, getPaginationUtilityClass, classes);
|
|
32458
32610
|
};
|
|
32459
32611
|
const PaginationRoot = styled("nav", {
|
|
32460
32612
|
name: "MuiPagination",
|
|
@@ -32777,7 +32929,7 @@ const useUtilityClasses$Y = (ownerState) => {
|
|
|
32777
32929
|
};
|
|
32778
32930
|
return {
|
|
32779
32931
|
...classes,
|
|
32780
|
-
...composeClasses(slots, getRadioUtilityClass, classes)
|
|
32932
|
+
...composeClasses$1(slots, getRadioUtilityClass, classes)
|
|
32781
32933
|
};
|
|
32782
32934
|
};
|
|
32783
32935
|
const RadioRoot = styled(SwitchBase, {
|
|
@@ -33063,7 +33215,7 @@ const useUtilityClasses$X = (props) => {
|
|
|
33063
33215
|
const slots = {
|
|
33064
33216
|
root: ["root", row && "row", error && "error"]
|
|
33065
33217
|
};
|
|
33066
|
-
return composeClasses(slots, getRadioGroupUtilityClass, classes);
|
|
33218
|
+
return composeClasses$1(slots, getRadioGroupUtilityClass, classes);
|
|
33067
33219
|
};
|
|
33068
33220
|
const RadioGroup = /* @__PURE__ */ React__namespace.forwardRef(function RadioGroup2(props, ref) {
|
|
33069
33221
|
const {
|
|
@@ -33171,7 +33323,7 @@ const useUtilityClasses$W = (ownerState) => {
|
|
|
33171
33323
|
select: ["select", variant, disabled && "disabled", multiple && "multiple", error && "error"],
|
|
33172
33324
|
icon: ["icon", `icon${capitalize(variant)}`, open && "iconOpen", disabled && "disabled"]
|
|
33173
33325
|
};
|
|
33174
|
-
return composeClasses(slots, getNativeSelectUtilityClasses, classes);
|
|
33326
|
+
return composeClasses$1(slots, getNativeSelectUtilityClasses, classes);
|
|
33175
33327
|
};
|
|
33176
33328
|
const StyledSelectSelect = styled("select", {
|
|
33177
33329
|
name: "MuiNativeSelect"
|
|
@@ -33473,7 +33625,7 @@ const useUtilityClasses$V = (ownerState) => {
|
|
|
33473
33625
|
icon: ["icon", `icon${capitalize(variant)}`, open && "iconOpen", disabled && "disabled"],
|
|
33474
33626
|
nativeInput: ["nativeInput"]
|
|
33475
33627
|
};
|
|
33476
|
-
return composeClasses(slots, getSelectUtilityClasses, classes);
|
|
33628
|
+
return composeClasses$1(slots, getSelectUtilityClasses, classes);
|
|
33477
33629
|
};
|
|
33478
33630
|
const SelectInput = /* @__PURE__ */ React__namespace.forwardRef(function SelectInput2(props, ref) {
|
|
33479
33631
|
const {
|
|
@@ -34035,7 +34187,7 @@ const useUtilityClasses$U = (ownerState) => {
|
|
|
34035
34187
|
root: ["root", !disableUnderline && "underline", startAdornment && "adornedStart", endAdornment && "adornedEnd", size === "small" && `size${capitalize(size)}`, hiddenLabel && "hiddenLabel", multiline && "multiline"],
|
|
34036
34188
|
input: ["input"]
|
|
34037
34189
|
};
|
|
34038
|
-
const composedClasses = composeClasses(slots, getFilledInputUtilityClass, classes);
|
|
34190
|
+
const composedClasses = composeClasses$1(slots, getFilledInputUtilityClass, classes);
|
|
34039
34191
|
return {
|
|
34040
34192
|
...classes,
|
|
34041
34193
|
// forward classes to the InputBase
|
|
@@ -34675,7 +34827,7 @@ const useUtilityClasses$T = (ownerState) => {
|
|
|
34675
34827
|
notchedOutline: ["notchedOutline"],
|
|
34676
34828
|
input: ["input"]
|
|
34677
34829
|
};
|
|
34678
|
-
const composedClasses = composeClasses(slots, getOutlinedInputUtilityClass, classes);
|
|
34830
|
+
const composedClasses = composeClasses$1(slots, getOutlinedInputUtilityClass, classes);
|
|
34679
34831
|
return {
|
|
34680
34832
|
...classes,
|
|
34681
34833
|
// forward classes to the InputBase
|
|
@@ -35083,7 +35235,7 @@ const useUtilityClasses$S = (ownerState) => {
|
|
|
35083
35235
|
const slots = {
|
|
35084
35236
|
root: ["root"]
|
|
35085
35237
|
};
|
|
35086
|
-
const composedClasses = composeClasses(slots, getSelectUtilityClasses, classes);
|
|
35238
|
+
const composedClasses = composeClasses$1(slots, getSelectUtilityClasses, classes);
|
|
35087
35239
|
return {
|
|
35088
35240
|
...classes,
|
|
35089
35241
|
...composedClasses
|
|
@@ -35368,7 +35520,7 @@ const useUtilityClasses$R = (ownerState) => {
|
|
|
35368
35520
|
const slots = {
|
|
35369
35521
|
root: ["root", variant, animation, hasChildren && "withChildren", hasChildren && !width2 && "fitContent", hasChildren && !height2 && "heightAuto"]
|
|
35370
35522
|
};
|
|
35371
|
-
return composeClasses(slots, getSkeletonUtilityClass, classes);
|
|
35523
|
+
return composeClasses$1(slots, getSkeletonUtilityClass, classes);
|
|
35372
35524
|
};
|
|
35373
35525
|
const pulseKeyframe = react.keyframes`
|
|
35374
35526
|
0% {
|
|
@@ -35725,7 +35877,7 @@ const useUtilityClasses$Q = (ownerState) => {
|
|
|
35725
35877
|
action: ["action"],
|
|
35726
35878
|
message: ["message"]
|
|
35727
35879
|
};
|
|
35728
|
-
return composeClasses(slots, getSnackbarContentUtilityClass, classes);
|
|
35880
|
+
return composeClasses$1(slots, getSnackbarContentUtilityClass, classes);
|
|
35729
35881
|
};
|
|
35730
35882
|
const SnackbarContentRoot = styled(Paper, {
|
|
35731
35883
|
name: "MuiSnackbarContent",
|
|
@@ -35840,7 +35992,7 @@ const useUtilityClasses$P = (ownerState) => {
|
|
|
35840
35992
|
const slots = {
|
|
35841
35993
|
root: ["root", `anchorOrigin${capitalize(anchorOrigin.vertical)}${capitalize(anchorOrigin.horizontal)}`]
|
|
35842
35994
|
};
|
|
35843
|
-
return composeClasses(slots, getSnackbarUtilityClass, classes);
|
|
35995
|
+
return composeClasses$1(slots, getSnackbarUtilityClass, classes);
|
|
35844
35996
|
};
|
|
35845
35997
|
const SnackbarRoot = styled("div", {
|
|
35846
35998
|
name: "MuiSnackbar",
|
|
@@ -36320,7 +36472,7 @@ const useUtilityClasses$O = (ownerState) => {
|
|
|
36320
36472
|
const slots = {
|
|
36321
36473
|
root: ["root", orientation, alternativeLabel && "alternativeLabel", completed && "completed"]
|
|
36322
36474
|
};
|
|
36323
|
-
return composeClasses(slots, getStepUtilityClass, classes);
|
|
36475
|
+
return composeClasses$1(slots, getStepUtilityClass, classes);
|
|
36324
36476
|
};
|
|
36325
36477
|
const StepRoot = styled("div", {
|
|
36326
36478
|
name: "MuiStep",
|
|
@@ -36494,7 +36646,7 @@ const useUtilityClasses$N = (ownerState) => {
|
|
|
36494
36646
|
root: ["root", active && "active", completed && "completed", error && "error"],
|
|
36495
36647
|
text: ["text"]
|
|
36496
36648
|
};
|
|
36497
|
-
return composeClasses(slots, getStepIconUtilityClass, classes);
|
|
36649
|
+
return composeClasses$1(slots, getStepIconUtilityClass, classes);
|
|
36498
36650
|
};
|
|
36499
36651
|
const StepIconRoot = styled(SvgIcon, {
|
|
36500
36652
|
name: "MuiStepIcon",
|
|
@@ -36646,7 +36798,7 @@ const useUtilityClasses$M = (ownerState) => {
|
|
|
36646
36798
|
iconContainer: ["iconContainer", active && "active", completed && "completed", error && "error", disabled && "disabled", alternativeLabel && "alternativeLabel"],
|
|
36647
36799
|
labelContainer: ["labelContainer", alternativeLabel && "alternativeLabel"]
|
|
36648
36800
|
};
|
|
36649
|
-
return composeClasses(slots, getStepLabelUtilityClass, classes);
|
|
36801
|
+
return composeClasses$1(slots, getStepLabelUtilityClass, classes);
|
|
36650
36802
|
};
|
|
36651
36803
|
const StepLabelRoot = styled("span", {
|
|
36652
36804
|
name: "MuiStepLabel",
|
|
@@ -36904,7 +37056,7 @@ const useUtilityClasses$L = (ownerState) => {
|
|
|
36904
37056
|
root: ["root", orientation],
|
|
36905
37057
|
touchRipple: ["touchRipple"]
|
|
36906
37058
|
};
|
|
36907
|
-
return composeClasses(slots, getStepButtonUtilityClass, classes);
|
|
37059
|
+
return composeClasses$1(slots, getStepButtonUtilityClass, classes);
|
|
36908
37060
|
};
|
|
36909
37061
|
const StepButtonRoot = styled(ButtonBase, {
|
|
36910
37062
|
name: "MuiStepButton",
|
|
@@ -37033,7 +37185,7 @@ const useUtilityClasses$K = (ownerState) => {
|
|
|
37033
37185
|
root: ["root", orientation, alternativeLabel && "alternativeLabel", active && "active", completed && "completed", disabled && "disabled"],
|
|
37034
37186
|
line: ["line", `line${capitalize(orientation)}`]
|
|
37035
37187
|
};
|
|
37036
|
-
return composeClasses(slots, getStepConnectorUtilityClass, classes);
|
|
37188
|
+
return composeClasses$1(slots, getStepConnectorUtilityClass, classes);
|
|
37037
37189
|
};
|
|
37038
37190
|
const StepConnectorRoot = styled("div", {
|
|
37039
37191
|
name: "MuiStepConnector",
|
|
@@ -37168,7 +37320,7 @@ const useUtilityClasses$J = (ownerState) => {
|
|
|
37168
37320
|
const slots = {
|
|
37169
37321
|
root: ["root", orientation, nonLinear && "nonLinear", alternativeLabel && "alternativeLabel"]
|
|
37170
37322
|
};
|
|
37171
|
-
return composeClasses(slots, getStepperUtilityClass, classes);
|
|
37323
|
+
return composeClasses$1(slots, getStepperUtilityClass, classes);
|
|
37172
37324
|
};
|
|
37173
37325
|
const StepperRoot = styled("div", {
|
|
37174
37326
|
name: "MuiStepper",
|
|
@@ -37331,7 +37483,7 @@ const useUtilityClasses$I = (ownerState) => {
|
|
|
37331
37483
|
track: ["track"],
|
|
37332
37484
|
input: ["input"]
|
|
37333
37485
|
};
|
|
37334
|
-
const composedClasses = composeClasses(slots, getSwitchUtilityClass, classes);
|
|
37486
|
+
const composedClasses = composeClasses$1(slots, getSwitchUtilityClass, classes);
|
|
37335
37487
|
return {
|
|
37336
37488
|
...classes,
|
|
37337
37489
|
// forward the disabled and checked classes to the SwitchBase
|
|
@@ -37722,7 +37874,7 @@ const useUtilityClasses$H = (ownerState) => {
|
|
|
37722
37874
|
root: ["root", icon && label && "labelIcon", `textColor${capitalize(textColor)}`, fullWidth && "fullWidth", wrapped && "wrapped", selected && "selected", disabled && "disabled"],
|
|
37723
37875
|
icon: ["iconWrapper", "icon"]
|
|
37724
37876
|
};
|
|
37725
|
-
return composeClasses(slots, getTabUtilityClass, classes);
|
|
37877
|
+
return composeClasses$1(slots, getTabUtilityClass, classes);
|
|
37726
37878
|
};
|
|
37727
37879
|
const TabRoot = styled(ButtonBase, {
|
|
37728
37880
|
name: "MuiTab",
|
|
@@ -38046,7 +38198,7 @@ const useUtilityClasses$G = (ownerState) => {
|
|
|
38046
38198
|
const slots = {
|
|
38047
38199
|
root: ["root", stickyHeader && "stickyHeader"]
|
|
38048
38200
|
};
|
|
38049
|
-
return composeClasses(slots, getTableUtilityClass, classes);
|
|
38201
|
+
return composeClasses$1(slots, getTableUtilityClass, classes);
|
|
38050
38202
|
};
|
|
38051
38203
|
const TableRoot = styled("table", {
|
|
38052
38204
|
name: "MuiTable",
|
|
@@ -38176,7 +38328,7 @@ const useUtilityClasses$F = (ownerState) => {
|
|
|
38176
38328
|
const slots = {
|
|
38177
38329
|
root: ["root"]
|
|
38178
38330
|
};
|
|
38179
|
-
return composeClasses(slots, getTableBodyUtilityClass, classes);
|
|
38331
|
+
return composeClasses$1(slots, getTableBodyUtilityClass, classes);
|
|
38180
38332
|
};
|
|
38181
38333
|
const TableBodyRoot = styled("tbody", {
|
|
38182
38334
|
name: "MuiTableBody",
|
|
@@ -38258,7 +38410,7 @@ const useUtilityClasses$E = (ownerState) => {
|
|
|
38258
38410
|
const slots = {
|
|
38259
38411
|
root: ["root", variant, stickyHeader && "stickyHeader", align !== "inherit" && `align${capitalize(align)}`, padding2 !== "normal" && `padding${capitalize(padding2)}`, `size${capitalize(size)}`]
|
|
38260
38412
|
};
|
|
38261
|
-
return composeClasses(slots, getTableCellUtilityClass, classes);
|
|
38413
|
+
return composeClasses$1(slots, getTableCellUtilityClass, classes);
|
|
38262
38414
|
};
|
|
38263
38415
|
const TableCellRoot = styled("td", {
|
|
38264
38416
|
name: "MuiTableCell",
|
|
@@ -38504,7 +38656,7 @@ const useUtilityClasses$D = (ownerState) => {
|
|
|
38504
38656
|
const slots = {
|
|
38505
38657
|
root: ["root"]
|
|
38506
38658
|
};
|
|
38507
|
-
return composeClasses(slots, getTableContainerUtilityClass, classes);
|
|
38659
|
+
return composeClasses$1(slots, getTableContainerUtilityClass, classes);
|
|
38508
38660
|
};
|
|
38509
38661
|
const TableContainerRoot = styled("div", {
|
|
38510
38662
|
name: "MuiTableContainer",
|
|
@@ -38574,7 +38726,7 @@ const useUtilityClasses$C = (ownerState) => {
|
|
|
38574
38726
|
const slots = {
|
|
38575
38727
|
root: ["root"]
|
|
38576
38728
|
};
|
|
38577
|
-
return composeClasses(slots, getTableFooterUtilityClass, classes);
|
|
38729
|
+
return composeClasses$1(slots, getTableFooterUtilityClass, classes);
|
|
38578
38730
|
};
|
|
38579
38731
|
const TableFooterRoot = styled("tfoot", {
|
|
38580
38732
|
name: "MuiTableFooter",
|
|
@@ -38651,7 +38803,7 @@ const useUtilityClasses$B = (ownerState) => {
|
|
|
38651
38803
|
const slots = {
|
|
38652
38804
|
root: ["root"]
|
|
38653
38805
|
};
|
|
38654
|
-
return composeClasses(slots, getTableHeadUtilityClass, classes);
|
|
38806
|
+
return composeClasses$1(slots, getTableHeadUtilityClass, classes);
|
|
38655
38807
|
};
|
|
38656
38808
|
const TableHeadRoot = styled("thead", {
|
|
38657
38809
|
name: "MuiTableHead",
|
|
@@ -38730,7 +38882,7 @@ const useUtilityClasses$A = (ownerState) => {
|
|
|
38730
38882
|
const slots = {
|
|
38731
38883
|
root: ["root", !disableGutters && "gutters", variant]
|
|
38732
38884
|
};
|
|
38733
|
-
return composeClasses(slots, getToolbarUtilityClass, classes);
|
|
38885
|
+
return composeClasses$1(slots, getToolbarUtilityClass, classes);
|
|
38734
38886
|
};
|
|
38735
38887
|
const ToolbarRoot = styled("div", {
|
|
38736
38888
|
name: "MuiToolbar",
|
|
@@ -38849,7 +39001,7 @@ const useUtilityClasses$z = (ownerState) => {
|
|
|
38849
39001
|
const slots = {
|
|
38850
39002
|
root: ["root"]
|
|
38851
39003
|
};
|
|
38852
|
-
return composeClasses(slots, getTablePaginationActionsUtilityClass, classes);
|
|
39004
|
+
return composeClasses$1(slots, getTablePaginationActionsUtilityClass, classes);
|
|
38853
39005
|
};
|
|
38854
39006
|
const TablePaginationActionsRoot = styled("div", {
|
|
38855
39007
|
name: "MuiTablePaginationActions",
|
|
@@ -39172,7 +39324,7 @@ const useUtilityClasses$y = (ownerState) => {
|
|
|
39172
39324
|
displayedRows: ["displayedRows"],
|
|
39173
39325
|
actions: ["actions"]
|
|
39174
39326
|
};
|
|
39175
|
-
return composeClasses(slots, getTablePaginationUtilityClass, classes);
|
|
39327
|
+
return composeClasses$1(slots, getTablePaginationUtilityClass, classes);
|
|
39176
39328
|
};
|
|
39177
39329
|
const TablePagination = /* @__PURE__ */ React__namespace.forwardRef(function TablePagination2(inProps, ref) {
|
|
39178
39330
|
const props = useDefaultProps({
|
|
@@ -39545,7 +39697,7 @@ const useUtilityClasses$x = (ownerState) => {
|
|
|
39545
39697
|
const slots = {
|
|
39546
39698
|
root: ["root", selected && "selected", hover && "hover", head && "head", footer && "footer"]
|
|
39547
39699
|
};
|
|
39548
|
-
return composeClasses(slots, getTableRowUtilityClass, classes);
|
|
39700
|
+
return composeClasses$1(slots, getTableRowUtilityClass, classes);
|
|
39549
39701
|
};
|
|
39550
39702
|
const TableRowRoot = styled("tr", {
|
|
39551
39703
|
name: "MuiTableRow",
|
|
@@ -39660,7 +39812,7 @@ const useUtilityClasses$w = (ownerState) => {
|
|
|
39660
39812
|
root: ["root", active && "active", `direction${capitalize(direction)}`],
|
|
39661
39813
|
icon: ["icon", `iconDirection${capitalize(direction)}`]
|
|
39662
39814
|
};
|
|
39663
|
-
return composeClasses(slots, getTableSortLabelUtilityClass, classes);
|
|
39815
|
+
return composeClasses$1(slots, getTableSortLabelUtilityClass, classes);
|
|
39664
39816
|
};
|
|
39665
39817
|
const TableSortLabelRoot = styled(ButtonBase, {
|
|
39666
39818
|
name: "MuiTableSortLabel",
|
|
@@ -39858,7 +40010,7 @@ const useUtilityClasses$v = (ownerState) => {
|
|
|
39858
40010
|
const slots = {
|
|
39859
40011
|
root: ["root"]
|
|
39860
40012
|
};
|
|
39861
|
-
return composeClasses(slots, getTextFieldUtilityClass, classes);
|
|
40013
|
+
return composeClasses$1(slots, getTextFieldUtilityClass, classes);
|
|
39862
40014
|
};
|
|
39863
40015
|
const TextFieldRoot = styled(FormControl, {
|
|
39864
40016
|
name: "MuiTextField",
|
|
@@ -40247,6 +40399,50 @@ process.env.NODE_ENV !== "production" ? TextField.propTypes = {
|
|
|
40247
40399
|
*/
|
|
40248
40400
|
variant: PropTypes.oneOf(["filled", "outlined", "standard"])
|
|
40249
40401
|
} : void 0;
|
|
40402
|
+
function resolveProps(defaultProps2, props, mergeClassNameAndStyle = false) {
|
|
40403
|
+
const output = {
|
|
40404
|
+
...props
|
|
40405
|
+
};
|
|
40406
|
+
for (const key in defaultProps2) {
|
|
40407
|
+
if (Object.prototype.hasOwnProperty.call(defaultProps2, key)) {
|
|
40408
|
+
const propName = key;
|
|
40409
|
+
if (propName === "components" || propName === "slots") {
|
|
40410
|
+
output[propName] = {
|
|
40411
|
+
...defaultProps2[propName],
|
|
40412
|
+
...output[propName]
|
|
40413
|
+
};
|
|
40414
|
+
} else if (propName === "componentsProps" || propName === "slotProps") {
|
|
40415
|
+
const defaultSlotProps = defaultProps2[propName];
|
|
40416
|
+
const slotProps = props[propName];
|
|
40417
|
+
if (!slotProps) {
|
|
40418
|
+
output[propName] = defaultSlotProps || {};
|
|
40419
|
+
} else if (!defaultSlotProps) {
|
|
40420
|
+
output[propName] = slotProps;
|
|
40421
|
+
} else {
|
|
40422
|
+
output[propName] = {
|
|
40423
|
+
...slotProps
|
|
40424
|
+
};
|
|
40425
|
+
for (const slotKey in defaultSlotProps) {
|
|
40426
|
+
if (Object.prototype.hasOwnProperty.call(defaultSlotProps, slotKey)) {
|
|
40427
|
+
const slotPropName = slotKey;
|
|
40428
|
+
output[propName][slotPropName] = resolveProps(defaultSlotProps[slotPropName], slotProps[slotPropName], mergeClassNameAndStyle);
|
|
40429
|
+
}
|
|
40430
|
+
}
|
|
40431
|
+
}
|
|
40432
|
+
} else if (propName === "className" && mergeClassNameAndStyle && props.className) {
|
|
40433
|
+
output.className = clsx(defaultProps2?.className, props?.className);
|
|
40434
|
+
} else if (propName === "style" && mergeClassNameAndStyle && props.style) {
|
|
40435
|
+
output.style = {
|
|
40436
|
+
...defaultProps2?.style,
|
|
40437
|
+
...props?.style
|
|
40438
|
+
};
|
|
40439
|
+
} else if (output[propName] === void 0) {
|
|
40440
|
+
output[propName] = defaultProps2[propName];
|
|
40441
|
+
}
|
|
40442
|
+
}
|
|
40443
|
+
}
|
|
40444
|
+
return output;
|
|
40445
|
+
}
|
|
40250
40446
|
function getToggleButtonUtilityClass(slot) {
|
|
40251
40447
|
return generateUtilityClass("MuiToggleButton", slot);
|
|
40252
40448
|
}
|
|
@@ -40280,7 +40476,7 @@ const useUtilityClasses$u = (ownerState) => {
|
|
|
40280
40476
|
const slots = {
|
|
40281
40477
|
root: ["root", selected && "selected", disabled && "disabled", fullWidth && "fullWidth", `size${capitalize(size)}`, color2]
|
|
40282
40478
|
};
|
|
40283
|
-
return composeClasses(slots, getToggleButtonUtilityClass, classes);
|
|
40479
|
+
return composeClasses$1(slots, getToggleButtonUtilityClass, classes);
|
|
40284
40480
|
};
|
|
40285
40481
|
const ToggleButtonRoot = styled(ButtonBase, {
|
|
40286
40482
|
name: "MuiToggleButton",
|
|
@@ -40532,7 +40728,7 @@ const useUtilityClasses$t = (ownerState) => {
|
|
|
40532
40728
|
lastButton: ["lastButton"],
|
|
40533
40729
|
middleButton: ["middleButton"]
|
|
40534
40730
|
};
|
|
40535
|
-
return composeClasses(slots, getToggleButtonGroupUtilityClass, classes);
|
|
40731
|
+
return composeClasses$1(slots, getToggleButtonGroupUtilityClass, classes);
|
|
40536
40732
|
};
|
|
40537
40733
|
const ToggleButtonGroupRoot = styled("div", {
|
|
40538
40734
|
name: "MuiToggleButtonGroup",
|
|
@@ -40801,7 +40997,7 @@ const useUtilityClasses$s = (ownerState) => {
|
|
|
40801
40997
|
tooltip: ["tooltip", arrow2 && "tooltipArrow", touch && "touch", `tooltipPlacement${capitalize(placement.split("-")[0])}`],
|
|
40802
40998
|
arrow: ["arrow"]
|
|
40803
40999
|
};
|
|
40804
|
-
return composeClasses(slots, getTooltipUtilityClass, classes);
|
|
41000
|
+
return composeClasses$1(slots, getTooltipUtilityClass, classes);
|
|
40805
41001
|
};
|
|
40806
41002
|
const TooltipPopper = styled(Popper2, {
|
|
40807
41003
|
name: "MuiTooltip",
|
|
@@ -41835,7 +42031,7 @@ const useUtilityClasses$r = (ownerState) => {
|
|
|
41835
42031
|
loadingIndicator: ["loadingIndicator"],
|
|
41836
42032
|
loadingWrapper: ["loadingWrapper"]
|
|
41837
42033
|
};
|
|
41838
|
-
const composedClasses = composeClasses(slots, getButtonUtilityClass, classes);
|
|
42034
|
+
const composedClasses = composeClasses$1(slots, getButtonUtilityClass, classes);
|
|
41839
42035
|
return {
|
|
41840
42036
|
...classes,
|
|
41841
42037
|
// forward the focused, disabled, etc. classes to the ButtonBase
|
|
@@ -42545,6 +42741,8 @@ const LeftAction = styled(Button2, {
|
|
|
42545
42741
|
color: theme.palette.common.white,
|
|
42546
42742
|
transition: "all 0.2s ease-in-out",
|
|
42547
42743
|
borderRadius: "4px",
|
|
42744
|
+
fontSize: "1rem",
|
|
42745
|
+
fontWeight: 700,
|
|
42548
42746
|
padding: "8px 16px",
|
|
42549
42747
|
"&:hover": {
|
|
42550
42748
|
backgroundColor: theme.palette.primary.dark,
|
|
@@ -42562,6 +42760,8 @@ const RightAction = styled(Button2, {
|
|
|
42562
42760
|
color: theme.palette.common.white,
|
|
42563
42761
|
transition: "all 0.2s ease-in-out",
|
|
42564
42762
|
borderRadius: "4px",
|
|
42763
|
+
fontSize: "1rem",
|
|
42764
|
+
fontWeight: 700,
|
|
42565
42765
|
padding: "8px 16px",
|
|
42566
42766
|
"&:hover": {
|
|
42567
42767
|
backgroundColor: theme.palette.primary.dark,
|
|
@@ -42652,7 +42852,7 @@ const useUtilityClasses$q = (ownerState) => {
|
|
|
42652
42852
|
message: ["message"],
|
|
42653
42853
|
action: ["action"]
|
|
42654
42854
|
};
|
|
42655
|
-
return composeClasses(slots, getAlertUtilityClass, classes);
|
|
42855
|
+
return composeClasses$1(slots, getAlertUtilityClass, classes);
|
|
42656
42856
|
};
|
|
42657
42857
|
const AlertRoot = styled(Paper, {
|
|
42658
42858
|
name: "MuiAlert",
|
|
@@ -44950,7 +45150,7 @@ const useUtilityClasses$p = (classes) => {
|
|
|
44950
45150
|
title: ["title"],
|
|
44951
45151
|
content: ["content"]
|
|
44952
45152
|
};
|
|
44953
|
-
return composeClasses(slots, getPickersToolbarUtilityClass, classes);
|
|
45153
|
+
return composeClasses$1(slots, getPickersToolbarUtilityClass, classes);
|
|
44954
45154
|
};
|
|
44955
45155
|
const PickersToolbarRoot = styled("div", {
|
|
44956
45156
|
name: "MuiPickersToolbar",
|
|
@@ -45427,7 +45627,7 @@ const useUtilityClasses$o = (classes) => {
|
|
|
45427
45627
|
root: ["root"],
|
|
45428
45628
|
title: ["title"]
|
|
45429
45629
|
};
|
|
45430
|
-
return composeClasses(slots, getDatePickerToolbarUtilityClass, classes);
|
|
45630
|
+
return composeClasses$1(slots, getDatePickerToolbarUtilityClass, classes);
|
|
45431
45631
|
};
|
|
45432
45632
|
const DatePickerToolbarRoot = styled(PickersToolbar, {
|
|
45433
45633
|
name: "MuiDatePickerToolbar",
|
|
@@ -45707,7 +45907,7 @@ const useUtilityClasses$n = (classes) => {
|
|
|
45707
45907
|
root: ["root"],
|
|
45708
45908
|
paper: ["paper"]
|
|
45709
45909
|
};
|
|
45710
|
-
return composeClasses(slots, getPickerPopperUtilityClass, classes);
|
|
45910
|
+
return composeClasses$1(slots, getPickerPopperUtilityClass, classes);
|
|
45711
45911
|
};
|
|
45712
45912
|
const PickerPopperRoot = styled(Popper2, {
|
|
45713
45913
|
name: "MuiPickerPopper",
|
|
@@ -46913,7 +47113,7 @@ const useUtilityClasses$m = (classes, ownerState) => {
|
|
|
46913
47113
|
landscape: ["landscape"],
|
|
46914
47114
|
shortcuts: ["shortcuts"]
|
|
46915
47115
|
};
|
|
46916
|
-
return composeClasses(slots, getPickersLayoutUtilityClass, classes);
|
|
47116
|
+
return composeClasses$1(slots, getPickersLayoutUtilityClass, classes);
|
|
46917
47117
|
};
|
|
46918
47118
|
const usePickerLayout = (props) => {
|
|
46919
47119
|
const {
|
|
@@ -46987,7 +47187,7 @@ const useUtilityClasses$l = (classes, ownerState) => {
|
|
|
46987
47187
|
root: ["root", pickerOrientation === "landscape" && "landscape"],
|
|
46988
47188
|
contentWrapper: ["contentWrapper"]
|
|
46989
47189
|
};
|
|
46990
|
-
return composeClasses(slots, getPickersLayoutUtilityClass, classes);
|
|
47190
|
+
return composeClasses$1(slots, getPickersLayoutUtilityClass, classes);
|
|
46991
47191
|
};
|
|
46992
47192
|
const PickersLayoutRoot = styled("div", {
|
|
46993
47193
|
name: "MuiPickersLayout",
|
|
@@ -49054,7 +49254,7 @@ const useUtilityClasses$k = (ownerState) => {
|
|
|
49054
49254
|
const slots = {
|
|
49055
49255
|
root: ["root", disablePointerEvents && "disablePointerEvents", position2 && `position${capitalize(position2)}`, variant, hiddenLabel && "hiddenLabel", size && `size${capitalize(size)}`]
|
|
49056
49256
|
};
|
|
49057
|
-
return composeClasses(slots, getInputAdornmentUtilityClass, classes);
|
|
49257
|
+
return composeClasses$1(slots, getInputAdornmentUtilityClass, classes);
|
|
49058
49258
|
};
|
|
49059
49259
|
const InputAdornmentRoot = styled("div", {
|
|
49060
49260
|
name: "MuiInputAdornment",
|
|
@@ -49306,7 +49506,7 @@ const useUtilityClasses$j = (classes) => {
|
|
|
49306
49506
|
section: ["section"],
|
|
49307
49507
|
sectionContent: ["sectionContent"]
|
|
49308
49508
|
};
|
|
49309
|
-
return composeClasses(slots, getPickersSectionListUtilityClass, classes);
|
|
49509
|
+
return composeClasses$1(slots, getPickersSectionListUtilityClass, classes);
|
|
49310
49510
|
};
|
|
49311
49511
|
function PickersSection(props) {
|
|
49312
49512
|
const {
|
|
@@ -49711,7 +49911,7 @@ const useUtilityClasses$i = (classes, ownerState) => {
|
|
|
49711
49911
|
sectionAfter: ["sectionAfter"],
|
|
49712
49912
|
activeBar: ["activeBar"]
|
|
49713
49913
|
};
|
|
49714
|
-
return composeClasses(slots, getPickersInputBaseUtilityClass, classes);
|
|
49914
|
+
return composeClasses$1(slots, getPickersInputBaseUtilityClass, classes);
|
|
49715
49915
|
};
|
|
49716
49916
|
function resolveSectionElementWidth(sectionElement, rootRef, index, dateRangePosition) {
|
|
49717
49917
|
if (sectionElement.content.id) {
|
|
@@ -50175,7 +50375,7 @@ const useUtilityClasses$h = (classes) => {
|
|
|
50175
50375
|
notchedOutline: ["notchedOutline"],
|
|
50176
50376
|
input: ["input"]
|
|
50177
50377
|
};
|
|
50178
|
-
const composedClasses = composeClasses(slots, getPickersOutlinedInputUtilityClass, classes);
|
|
50378
|
+
const composedClasses = composeClasses$1(slots, getPickersOutlinedInputUtilityClass, classes);
|
|
50179
50379
|
return _extends({}, classes, composedClasses);
|
|
50180
50380
|
};
|
|
50181
50381
|
const PickersOutlinedInput = /* @__PURE__ */ React__namespace.forwardRef(function PickersOutlinedInput2(inProps, ref) {
|
|
@@ -50459,7 +50659,7 @@ const useUtilityClasses$g = (classes, ownerState) => {
|
|
|
50459
50659
|
root: ["root", inputHasUnderline && "underline"],
|
|
50460
50660
|
input: ["input"]
|
|
50461
50661
|
};
|
|
50462
|
-
const composedClasses = composeClasses(slots, getPickersFilledInputUtilityClass, classes);
|
|
50662
|
+
const composedClasses = composeClasses$1(slots, getPickersFilledInputUtilityClass, classes);
|
|
50463
50663
|
return _extends({}, classes, composedClasses);
|
|
50464
50664
|
};
|
|
50465
50665
|
const PickersFilledInput = /* @__PURE__ */ React__namespace.forwardRef(function PickersFilledInput2(inProps, ref) {
|
|
@@ -50673,7 +50873,7 @@ const useUtilityClasses$f = (classes, ownerState) => {
|
|
|
50673
50873
|
root: ["root", !inputHasUnderline && "underline"],
|
|
50674
50874
|
input: ["input"]
|
|
50675
50875
|
};
|
|
50676
|
-
const composedClasses = composeClasses(slots, getPickersInputUtilityClass, classes);
|
|
50876
|
+
const composedClasses = composeClasses$1(slots, getPickersInputUtilityClass, classes);
|
|
50677
50877
|
return _extends({}, classes, composedClasses);
|
|
50678
50878
|
};
|
|
50679
50879
|
const PickersInput = /* @__PURE__ */ React__namespace.forwardRef(function PickersInput2(inProps, ref) {
|
|
@@ -50803,7 +51003,7 @@ const useUtilityClasses$e = (classes, ownerState) => {
|
|
|
50803
51003
|
const slots = {
|
|
50804
51004
|
root: ["root", isFieldFocused2 && !isFieldDisabled && "focused", isFieldDisabled && "disabled", isFieldRequired && "required"]
|
|
50805
51005
|
};
|
|
50806
|
-
return composeClasses(slots, getPickersTextFieldUtilityClass, classes);
|
|
51006
|
+
return composeClasses$1(slots, getPickersTextFieldUtilityClass, classes);
|
|
50807
51007
|
};
|
|
50808
51008
|
const PickersTextField = /* @__PURE__ */ React__namespace.forwardRef(function PickersTextField2(inProps, ref) {
|
|
50809
51009
|
const props = useThemeProps$2({
|
|
@@ -51847,7 +52047,7 @@ const useUtilityClasses$d = (classes) => {
|
|
|
51847
52047
|
const slots = {
|
|
51848
52048
|
root: ["root"]
|
|
51849
52049
|
};
|
|
51850
|
-
return composeClasses(slots, getPickersFadeTransitionGroupUtilityClass, classes);
|
|
52050
|
+
return composeClasses$1(slots, getPickersFadeTransitionGroupUtilityClass, classes);
|
|
51851
52051
|
};
|
|
51852
52052
|
const PickersFadeTransitionGroupRoot = styled(TransitionGroup, {
|
|
51853
52053
|
name: "MuiPickersFadeTransitionGroup",
|
|
@@ -51939,7 +52139,7 @@ const useUtilityClasses$c = (classes, ownerState) => {
|
|
|
51939
52139
|
root: ["root", isDaySelected && !isHiddenDaySpacingFiller && "selected", isDayDisabled && "disabled", !disableMargin && "dayWithMargin", !disableHighlightToday && isDayCurrent && "today", isDayOutsideMonth && showDaysOutsideCurrentMonth && "dayOutsideMonth", isHiddenDaySpacingFiller && "hiddenDaySpacingFiller"],
|
|
51940
52140
|
hiddenDaySpacingFiller: ["hiddenDaySpacingFiller"]
|
|
51941
52141
|
};
|
|
51942
|
-
return composeClasses(slots, getPickersDayUtilityClass, classes);
|
|
52142
|
+
return composeClasses$1(slots, getPickersDayUtilityClass, classes);
|
|
51943
52143
|
};
|
|
51944
52144
|
const styleArg = ({
|
|
51945
52145
|
theme
|
|
@@ -52281,7 +52481,7 @@ const useUtilityClasses$b = (classes, ownerState) => {
|
|
|
52281
52481
|
enter: [`slideEnter-${slideDirection}`],
|
|
52282
52482
|
exitActive: [`slideExitActiveLeft-${slideDirection}`]
|
|
52283
52483
|
};
|
|
52284
|
-
return composeClasses(slots, getPickersSlideTransitionUtilityClass, classes);
|
|
52484
|
+
return composeClasses$1(slots, getPickersSlideTransitionUtilityClass, classes);
|
|
52285
52485
|
};
|
|
52286
52486
|
const PickersSlideTransitionRoot = styled(TransitionGroup, {
|
|
52287
52487
|
name: "MuiPickersSlideTransition",
|
|
@@ -52412,7 +52612,7 @@ const useUtilityClasses$a = (classes) => {
|
|
|
52412
52612
|
weekNumberLabel: ["weekNumberLabel"],
|
|
52413
52613
|
weekNumber: ["weekNumber"]
|
|
52414
52614
|
};
|
|
52415
|
-
return composeClasses(slots, getDayCalendarUtilityClass, classes);
|
|
52615
|
+
return composeClasses$1(slots, getDayCalendarUtilityClass, classes);
|
|
52416
52616
|
};
|
|
52417
52617
|
const weeksContainerHeight = (DAY_SIZE + DAY_MARGIN * 2) * 6;
|
|
52418
52618
|
const PickersCalendarDayRoot = styled("div", {
|
|
@@ -52806,7 +53006,7 @@ const useUtilityClasses$9 = (classes, ownerState) => {
|
|
|
52806
53006
|
const slots = {
|
|
52807
53007
|
button: ["button", ownerState.isMonthDisabled && "disabled", ownerState.isMonthSelected && "selected"]
|
|
52808
53008
|
};
|
|
52809
|
-
return composeClasses(slots, getMonthCalendarUtilityClass, classes);
|
|
53009
|
+
return composeClasses$1(slots, getMonthCalendarUtilityClass, classes);
|
|
52810
53010
|
};
|
|
52811
53011
|
const DefaultMonthButton = styled("button", {
|
|
52812
53012
|
name: "MuiMonthCalendar",
|
|
@@ -52904,7 +53104,7 @@ const useUtilityClasses$8 = (classes) => {
|
|
|
52904
53104
|
const slots = {
|
|
52905
53105
|
root: ["root"]
|
|
52906
53106
|
};
|
|
52907
|
-
return composeClasses(slots, getMonthCalendarUtilityClass, classes);
|
|
53107
|
+
return composeClasses$1(slots, getMonthCalendarUtilityClass, classes);
|
|
52908
53108
|
};
|
|
52909
53109
|
function useMonthCalendarDefaultizedProps(props, name) {
|
|
52910
53110
|
const themeProps = useThemeProps$2({
|
|
@@ -53241,7 +53441,7 @@ const useUtilityClasses$7 = (classes, ownerState) => {
|
|
|
53241
53441
|
const slots = {
|
|
53242
53442
|
button: ["button", ownerState.isYearDisabled && "disabled", ownerState.isYearSelected && "selected"]
|
|
53243
53443
|
};
|
|
53244
|
-
return composeClasses(slots, getYearCalendarUtilityClass, classes);
|
|
53444
|
+
return composeClasses$1(slots, getYearCalendarUtilityClass, classes);
|
|
53245
53445
|
};
|
|
53246
53446
|
const DefaultYearButton = styled("button", {
|
|
53247
53447
|
name: "MuiYearCalendar",
|
|
@@ -53339,7 +53539,7 @@ const useUtilityClasses$6 = (classes) => {
|
|
|
53339
53539
|
const slots = {
|
|
53340
53540
|
root: ["root"]
|
|
53341
53541
|
};
|
|
53342
|
-
return composeClasses(slots, getYearCalendarUtilityClass, classes);
|
|
53542
|
+
return composeClasses$1(slots, getYearCalendarUtilityClass, classes);
|
|
53343
53543
|
};
|
|
53344
53544
|
function useYearCalendarDefaultizedProps(props, name) {
|
|
53345
53545
|
const themeProps = useThemeProps$2({
|
|
@@ -53756,7 +53956,7 @@ const useUtilityClasses$5 = (classes) => {
|
|
|
53756
53956
|
leftArrowIcon: ["leftArrowIcon"],
|
|
53757
53957
|
rightArrowIcon: ["rightArrowIcon"]
|
|
53758
53958
|
};
|
|
53759
|
-
return composeClasses(slots, getPickersArrowSwitcherUtilityClass, classes);
|
|
53959
|
+
return composeClasses$1(slots, getPickersArrowSwitcherUtilityClass, classes);
|
|
53760
53960
|
};
|
|
53761
53961
|
const PickersArrowSwitcher = /* @__PURE__ */ React__namespace.forwardRef(function PickersArrowSwitcher2(inProps, ref) {
|
|
53762
53962
|
const isRtl = useRtl();
|
|
@@ -53904,7 +54104,7 @@ const useUtilityClasses$4 = (classes) => {
|
|
|
53904
54104
|
switchViewButton: ["switchViewButton"],
|
|
53905
54105
|
switchViewIcon: ["switchViewIcon"]
|
|
53906
54106
|
};
|
|
53907
|
-
return composeClasses(slots, getPickersCalendarHeaderUtilityClass, classes);
|
|
54107
|
+
return composeClasses$1(slots, getPickersCalendarHeaderUtilityClass, classes);
|
|
53908
54108
|
};
|
|
53909
54109
|
const PickersCalendarHeaderRoot = styled("div", {
|
|
53910
54110
|
name: "MuiPickersCalendarHeader",
|
|
@@ -54147,7 +54347,7 @@ const useUtilityClasses$3 = (classes) => {
|
|
|
54147
54347
|
root: ["root"],
|
|
54148
54348
|
viewTransitionContainer: ["viewTransitionContainer"]
|
|
54149
54349
|
};
|
|
54150
|
-
return composeClasses(slots, getDateCalendarUtilityClass, classes);
|
|
54350
|
+
return composeClasses$1(slots, getDateCalendarUtilityClass, classes);
|
|
54151
54351
|
};
|
|
54152
54352
|
function useDateCalendarDefaultizedProps(props, name) {
|
|
54153
54353
|
const themeProps = useThemeProps$2({
|
|
@@ -55146,7 +55346,7 @@ const useUtilityClasses$2 = (ownerState) => {
|
|
|
55146
55346
|
container: ["container", `scroll${capitalize(scroll)}`],
|
|
55147
55347
|
paper: ["paper", `paperScroll${capitalize(scroll)}`, `paperWidth${capitalize(String(maxWidth2))}`, fullWidth && "paperFullWidth", fullScreen && "paperFullScreen"]
|
|
55148
55348
|
};
|
|
55149
|
-
return composeClasses(slots, getDialogUtilityClass, classes);
|
|
55349
|
+
return composeClasses$1(slots, getDialogUtilityClass, classes);
|
|
55150
55350
|
};
|
|
55151
55351
|
const DialogRoot = styled(Modal, {
|
|
55152
55352
|
name: "MuiDialog",
|
|
@@ -57364,14 +57564,72 @@ const ImagePicker = ({
|
|
|
57364
57564
|
}
|
|
57365
57565
|
);
|
|
57366
57566
|
};
|
|
57567
|
+
const StyledLoader = styled(Box)({
|
|
57568
|
+
padding: "0 auto",
|
|
57569
|
+
textAlign: "center",
|
|
57570
|
+
whiteSpace: "nowrap",
|
|
57571
|
+
overflow: "hidden"
|
|
57572
|
+
});
|
|
57573
|
+
const StyledLoaderInner = styled(Box)({
|
|
57574
|
+
"& label": {
|
|
57575
|
+
fontSize: 16,
|
|
57576
|
+
opacity: 0,
|
|
57577
|
+
display: "inline-block",
|
|
57578
|
+
verticalAlign: "middle",
|
|
57579
|
+
"&:nth-of-type(4)": {
|
|
57580
|
+
animation: "dotSlide 3s 200ms infinite ease-in-out"
|
|
57581
|
+
},
|
|
57582
|
+
"&:nth-of-type(3)": {
|
|
57583
|
+
animation: "dotSlide 3s 300ms infinite ease-in-out"
|
|
57584
|
+
},
|
|
57585
|
+
"&:nth-of-type(2)": {
|
|
57586
|
+
animation: "dotSlide 3s 400ms infinite ease-in-out"
|
|
57587
|
+
},
|
|
57588
|
+
"&:nth-of-type(1)": {
|
|
57589
|
+
animation: "dotSlide 3s 500ms infinite ease-in-out"
|
|
57590
|
+
}
|
|
57591
|
+
},
|
|
57592
|
+
"@keyframes dotSlide": {
|
|
57593
|
+
"0%": { opacity: 0, transform: "translateX(-100px)" },
|
|
57594
|
+
"33%": { opacity: 1, transform: "translateX(0px)" },
|
|
57595
|
+
"66%": { opacity: 1, transform: "translateX(0px)" },
|
|
57596
|
+
"100%": { opacity: 0, transform: "translateX(100px)" }
|
|
57597
|
+
}
|
|
57598
|
+
});
|
|
57367
57599
|
const Loader = (props) => {
|
|
57368
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
57600
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledLoader, { color: "primary.main", ...props, children: /* @__PURE__ */ jsxRuntime.jsxs(StyledLoaderInner, { children: [
|
|
57369
57601
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57370
57602
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57371
57603
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57372
57604
|
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" })
|
|
57373
57605
|
] }) });
|
|
57374
57606
|
};
|
|
57607
|
+
const StyledLoaderBackdropInner = styled(Box)({
|
|
57608
|
+
textAlign: "center",
|
|
57609
|
+
"& label": {
|
|
57610
|
+
fontSize: 20,
|
|
57611
|
+
opacity: 0,
|
|
57612
|
+
display: "inline-block",
|
|
57613
|
+
"&:nth-of-type(4)": {
|
|
57614
|
+
animation: "dotSlide 3s 200ms infinite ease-in-out"
|
|
57615
|
+
},
|
|
57616
|
+
"&:nth-of-type(3)": {
|
|
57617
|
+
animation: "dotSlide 3s 300ms infinite ease-in-out"
|
|
57618
|
+
},
|
|
57619
|
+
"&:nth-of-type(2)": {
|
|
57620
|
+
animation: "dotSlide 3s 400ms infinite ease-in-out"
|
|
57621
|
+
},
|
|
57622
|
+
"&:nth-of-type(1)": {
|
|
57623
|
+
animation: "dotSlide 3s 500ms infinite ease-in-out"
|
|
57624
|
+
}
|
|
57625
|
+
},
|
|
57626
|
+
"@keyframes dotSlide": {
|
|
57627
|
+
"0%": { opacity: 0, transform: "translateX(-300px)" },
|
|
57628
|
+
"33%": { opacity: 1, transform: "translateX(0px)" },
|
|
57629
|
+
"66%": { opacity: 1, transform: "translateX(0px)" },
|
|
57630
|
+
"100%": { opacity: 0, transform: "translateX(300px)" }
|
|
57631
|
+
}
|
|
57632
|
+
});
|
|
57375
57633
|
const LoaderBackdrop = ({
|
|
57376
57634
|
slotProps = {}
|
|
57377
57635
|
}) => {
|
|
@@ -57381,20 +57639,12 @@ const LoaderBackdrop = ({
|
|
|
57381
57639
|
open: true,
|
|
57382
57640
|
sx: { bgcolor: "background.default" },
|
|
57383
57641
|
...slotProps.backdrop,
|
|
57384
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57385
|
-
|
|
57386
|
-
{
|
|
57387
|
-
|
|
57388
|
-
|
|
57389
|
-
|
|
57390
|
-
children: [
|
|
57391
|
-
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57392
|
-
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57393
|
-
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57394
|
-
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" })
|
|
57395
|
-
]
|
|
57396
|
-
}
|
|
57397
|
-
)
|
|
57642
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(StyledLoaderBackdropInner, { color: "primary.main", ...slotProps.loader, children: [
|
|
57643
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57644
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57645
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" }),
|
|
57646
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { children: "●" })
|
|
57647
|
+
] })
|
|
57398
57648
|
}
|
|
57399
57649
|
);
|
|
57400
57650
|
};
|
|
@@ -58390,8 +58640,10 @@ const ResourceCard = ({
|
|
|
58390
58640
|
}
|
|
58391
58641
|
) });
|
|
58392
58642
|
};
|
|
58643
|
+
const SearchRoundedIcon = createSvgIcon(/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
58644
|
+
d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0s.41-1.08 0-1.49zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14"
|
|
58645
|
+
}), "SearchRounded");
|
|
58393
58646
|
const StyledInput = styled(InputBase)(({ theme }) => ({
|
|
58394
|
-
width: "auto",
|
|
58395
58647
|
padding: "0px 12px",
|
|
58396
58648
|
backgroundColor: theme.palette.grey[50],
|
|
58397
58649
|
borderRadius: 30,
|
|
@@ -58405,15 +58657,18 @@ const StyledInput = styled(InputBase)(({ theme }) => ({
|
|
|
58405
58657
|
}
|
|
58406
58658
|
}));
|
|
58407
58659
|
const SearchInput = ({
|
|
58660
|
+
name = "search",
|
|
58408
58661
|
placeholder = "Rechercher",
|
|
58662
|
+
loading = false,
|
|
58409
58663
|
...otherProps
|
|
58410
58664
|
}) => {
|
|
58411
58665
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
58412
58666
|
StyledInput,
|
|
58413
58667
|
{
|
|
58414
58668
|
...otherProps,
|
|
58669
|
+
name,
|
|
58415
58670
|
placeholder,
|
|
58416
|
-
startAdornment: /* @__PURE__ */ jsxRuntime.jsx(InputAdornment, { position: "start", disablePointerEvents: true, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58671
|
+
startAdornment: /* @__PURE__ */ jsxRuntime.jsx(InputAdornment, { position: "start", disablePointerEvents: true, children: loading ? /* @__PURE__ */ jsxRuntime.jsx(CircularProgress, { size: "16px", sx: { mx: 0.5 } }) : /* @__PURE__ */ jsxRuntime.jsx(SearchRoundedIcon, {}) }),
|
|
58417
58672
|
type: "search",
|
|
58418
58673
|
autoComplete: "off",
|
|
58419
58674
|
autoCorrect: "off",
|
|
@@ -62551,7 +62806,7 @@ const useUtilityClasses$1 = (classesProp) => {
|
|
|
62551
62806
|
focused: ["focused"],
|
|
62552
62807
|
disabled: ["disabled"]
|
|
62553
62808
|
};
|
|
62554
|
-
return composeClasses(slots, getTreeItemUtilityClass, classes);
|
|
62809
|
+
return composeClasses$1(slots, getTreeItemUtilityClass, classes);
|
|
62555
62810
|
};
|
|
62556
62811
|
const TreeItem = /* @__PURE__ */ React__namespace.forwardRef(function TreeItem2(inProps, forwardedRef) {
|
|
62557
62812
|
const props = useThemeProps$1({
|
|
@@ -62831,7 +63086,7 @@ const useUtilityClasses = (ownerState) => {
|
|
|
62831
63086
|
// itemDragAndDropOverlay: ['itemDragAndDropOverlay'], => feature not available on this component
|
|
62832
63087
|
// itemErrorIcon: ['itemErrorIcon'], => feature not available on this component
|
|
62833
63088
|
};
|
|
62834
|
-
return composeClasses(slots, getRichTreeViewUtilityClass, classes);
|
|
63089
|
+
return composeClasses$1(slots, getRichTreeViewUtilityClass, classes);
|
|
62835
63090
|
}, [classes]);
|
|
62836
63091
|
};
|
|
62837
63092
|
const RichTreeViewRoot = styled("ul", {
|