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