@mui/material 5.11.13 → 5.11.14
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/Breadcrumbs/BreadcrumbCollapsed.js +26 -3
- package/Breadcrumbs/Breadcrumbs.d.ts +31 -0
- package/Breadcrumbs/Breadcrumbs.js +30 -2
- package/CHANGELOG.md +71 -3
- package/ListItemButton/ListItemButton.js +4 -2
- package/README.md +5 -4
- package/StepButton/StepButton.js +4 -2
- package/TabScrollButton/TabScrollButton.d.ts +34 -1
- package/TabScrollButton/TabScrollButton.js +41 -8
- package/Tabs/Tabs.d.ts +40 -0
- package/Tabs/Tabs.js +43 -2
- package/index.js +1 -1
- package/legacy/Breadcrumbs/BreadcrumbCollapsed.js +25 -3
- package/legacy/Breadcrumbs/Breadcrumbs.js +32 -2
- package/legacy/ListItemButton/ListItemButton.js +4 -2
- package/legacy/StepButton/StepButton.js +4 -2
- package/legacy/TabScrollButton/TabScrollButton.js +43 -8
- package/legacy/Tabs/Tabs.js +45 -2
- package/legacy/index.js +1 -1
- package/legacy/locale/index.js +156 -80
- package/locale/index.d.ts +1 -0
- package/locale/index.js +73 -0
- package/modern/Breadcrumbs/BreadcrumbCollapsed.js +26 -3
- package/modern/Breadcrumbs/Breadcrumbs.js +30 -2
- package/modern/ListItemButton/ListItemButton.js +4 -2
- package/modern/StepButton/StepButton.js +4 -2
- package/modern/TabScrollButton/TabScrollButton.js +40 -8
- package/modern/Tabs/Tabs.js +43 -2
- package/modern/index.js +1 -1
- package/modern/locale/index.js +73 -0
- package/node/Breadcrumbs/BreadcrumbCollapsed.js +26 -3
- package/node/Breadcrumbs/Breadcrumbs.js +29 -1
- package/node/ListItemButton/ListItemButton.js +4 -2
- package/node/StepButton/StepButton.js +4 -2
- package/node/TabScrollButton/TabScrollButton.js +42 -9
- package/node/Tabs/Tabs.js +42 -1
- package/node/index.js +1 -1
- package/node/locale/index.js +75 -1
- package/package.json +4 -4
- package/umd/material-ui.development.js +254 -118
- package/umd/material-ui.production.min.js +20 -20
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/material v5.11.
|
|
2
|
+
* @mui/material v5.11.14
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -6454,14 +6454,22 @@
|
|
|
6454
6454
|
return props => {
|
|
6455
6455
|
if (props[prop] !== undefined && props[prop] !== null) {
|
|
6456
6456
|
const styleFromPropValue = propValue => {
|
|
6457
|
-
var _props$theme$typograp
|
|
6458
|
-
|
|
6457
|
+
var _props$theme$typograp;
|
|
6458
|
+
// fetch the value directly defined in the theme, like fontWeightLight
|
|
6459
|
+
let value = (_props$theme$typograp = props.theme.typography) == null ? void 0 : _props$theme$typograp[propValue];
|
|
6460
|
+
if (typeof value === 'object') {
|
|
6461
|
+
// typography variant was pulled, but these props can't be an object
|
|
6462
|
+
value = null;
|
|
6463
|
+
}
|
|
6459
6464
|
if (!value) {
|
|
6460
|
-
var _props$theme$typograp2, _props$
|
|
6461
|
-
|
|
6465
|
+
var _props$theme$typograp2, _props$prop;
|
|
6466
|
+
// fetch fontWeightLight when the value is 'light'
|
|
6467
|
+
value = (_props$theme$typograp2 = props.theme.typography) == null ? void 0 : _props$theme$typograp2[`${prop}${props[prop] === 'default' || props[prop] === prop ? '' : capitalize((_props$prop = props[prop]) == null ? void 0 : _props$prop.toString())}`];
|
|
6462
6468
|
}
|
|
6463
6469
|
if (!value) {
|
|
6464
|
-
|
|
6470
|
+
var _props$theme$typograp3, _props$theme$typograp4, _props$theme$typograp5;
|
|
6471
|
+
// fetch the value from the typography variant or default to the propValue
|
|
6472
|
+
value = (_props$theme$typograp3 = (_props$theme$typograp4 = props.theme.typography) == null ? void 0 : (_props$theme$typograp5 = _props$theme$typograp4[propValue]) == null ? void 0 : _props$theme$typograp5[prop]) != null ? _props$theme$typograp3 : propValue;
|
|
6465
6473
|
}
|
|
6466
6474
|
return {
|
|
6467
6475
|
[prop]: value
|
|
@@ -6872,7 +6880,7 @@
|
|
|
6872
6880
|
styleFunctionSx.filterProps = ['sx'];
|
|
6873
6881
|
var styleFunctionSx$1 = styleFunctionSx;
|
|
6874
6882
|
|
|
6875
|
-
const _excluded$
|
|
6883
|
+
const _excluded$2o = ["sx"];
|
|
6876
6884
|
const splitProps = props => {
|
|
6877
6885
|
var _props$theme$unstable, _props$theme;
|
|
6878
6886
|
const result = {
|
|
@@ -6893,7 +6901,7 @@
|
|
|
6893
6901
|
const {
|
|
6894
6902
|
sx: inSx
|
|
6895
6903
|
} = props,
|
|
6896
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
6904
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$2o);
|
|
6897
6905
|
const {
|
|
6898
6906
|
systemProps,
|
|
6899
6907
|
otherProps
|
|
@@ -6919,7 +6927,7 @@
|
|
|
6919
6927
|
|
|
6920
6928
|
function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}function clsx(){for(var e,t,f=0,n="";f<arguments.length;)(e=arguments[f++])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
|
|
6921
6929
|
|
|
6922
|
-
const _excluded$
|
|
6930
|
+
const _excluded$2n = ["values", "unit", "step"];
|
|
6923
6931
|
const sortBreakpointsValues = values => {
|
|
6924
6932
|
const breakpointsAsArray = Object.keys(values).map(key => ({
|
|
6925
6933
|
key,
|
|
@@ -6954,7 +6962,7 @@
|
|
|
6954
6962
|
unit = 'px',
|
|
6955
6963
|
step = 5
|
|
6956
6964
|
} = breakpoints,
|
|
6957
|
-
other = _objectWithoutPropertiesLoose(breakpoints, _excluded$
|
|
6965
|
+
other = _objectWithoutPropertiesLoose(breakpoints, _excluded$2n);
|
|
6958
6966
|
const sortedValues = sortBreakpointsValues(values);
|
|
6959
6967
|
const keys = Object.keys(sortedValues);
|
|
6960
6968
|
function up(key) {
|
|
@@ -7033,7 +7041,7 @@
|
|
|
7033
7041
|
return spacing;
|
|
7034
7042
|
}
|
|
7035
7043
|
|
|
7036
|
-
const _excluded$
|
|
7044
|
+
const _excluded$2m = ["breakpoints", "palette", "spacing", "shape"];
|
|
7037
7045
|
function createTheme$1(options = {}, ...args) {
|
|
7038
7046
|
const {
|
|
7039
7047
|
breakpoints: breakpointsInput = {},
|
|
@@ -7041,7 +7049,7 @@
|
|
|
7041
7049
|
spacing: spacingInput,
|
|
7042
7050
|
shape: shapeInput = {}
|
|
7043
7051
|
} = options,
|
|
7044
|
-
other = _objectWithoutPropertiesLoose(options, _excluded$
|
|
7052
|
+
other = _objectWithoutPropertiesLoose(options, _excluded$2m);
|
|
7045
7053
|
const breakpoints = createBreakpoints(breakpointsInput);
|
|
7046
7054
|
const spacing = createSpacing(spacingInput);
|
|
7047
7055
|
let muiTheme = deepmerge({
|
|
@@ -7152,7 +7160,7 @@
|
|
|
7152
7160
|
return useTheme$2(defaultTheme);
|
|
7153
7161
|
}
|
|
7154
7162
|
|
|
7155
|
-
const _excluded$
|
|
7163
|
+
const _excluded$2l = ["className", "component"];
|
|
7156
7164
|
function createBox(options = {}) {
|
|
7157
7165
|
const {
|
|
7158
7166
|
defaultTheme,
|
|
@@ -7169,7 +7177,7 @@
|
|
|
7169
7177
|
className,
|
|
7170
7178
|
component = 'div'
|
|
7171
7179
|
} = _extendSxProp,
|
|
7172
|
-
other = _objectWithoutPropertiesLoose(_extendSxProp, _excluded$
|
|
7180
|
+
other = _objectWithoutPropertiesLoose(_extendSxProp, _excluded$2l);
|
|
7173
7181
|
return /*#__PURE__*/jsxRuntime_1(BoxRoot, _extends({
|
|
7174
7182
|
as: component,
|
|
7175
7183
|
ref: ref,
|
|
@@ -7180,7 +7188,7 @@
|
|
|
7180
7188
|
return Box;
|
|
7181
7189
|
}
|
|
7182
7190
|
|
|
7183
|
-
const _excluded$
|
|
7191
|
+
const _excluded$2k = ["variant"];
|
|
7184
7192
|
function isEmpty$3(string) {
|
|
7185
7193
|
return string.length === 0;
|
|
7186
7194
|
}
|
|
@@ -7194,7 +7202,7 @@
|
|
|
7194
7202
|
const {
|
|
7195
7203
|
variant
|
|
7196
7204
|
} = props,
|
|
7197
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
7205
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$2k);
|
|
7198
7206
|
let classKey = variant || '';
|
|
7199
7207
|
Object.keys(other).sort().forEach(key => {
|
|
7200
7208
|
if (key === 'color') {
|
|
@@ -7206,7 +7214,7 @@
|
|
|
7206
7214
|
return classKey;
|
|
7207
7215
|
}
|
|
7208
7216
|
|
|
7209
|
-
const _excluded$
|
|
7217
|
+
const _excluded$2j = ["name", "slot", "skipVariantsResolver", "skipSx", "overridesResolver"],
|
|
7210
7218
|
_excluded2$d = ["theme"],
|
|
7211
7219
|
_excluded3$1 = ["theme"];
|
|
7212
7220
|
function isEmpty$2(obj) {
|
|
@@ -7293,7 +7301,7 @@
|
|
|
7293
7301
|
skipSx: inputSkipSx,
|
|
7294
7302
|
overridesResolver
|
|
7295
7303
|
} = inputOptions,
|
|
7296
|
-
options = _objectWithoutPropertiesLoose(inputOptions, _excluded$
|
|
7304
|
+
options = _objectWithoutPropertiesLoose(inputOptions, _excluded$2j);
|
|
7297
7305
|
|
|
7298
7306
|
// if skipVariantsResolver option is defined, take the value, otherwise, true for root and false for other slots.
|
|
7299
7307
|
const skipVariantsResolver = inputSkipVariantsResolver !== undefined ? inputSkipVariantsResolver : componentSlot && componentSlot !== 'Root' || false;
|
|
@@ -8063,7 +8071,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
8063
8071
|
});
|
|
8064
8072
|
}
|
|
8065
8073
|
|
|
8066
|
-
const _excluded$
|
|
8074
|
+
const _excluded$2i = ["colorSchemes", "components", "generateCssVars", "cssVarPrefix"];
|
|
8067
8075
|
const DISABLE_CSS_TRANSITION = '*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}';
|
|
8068
8076
|
function createCssVarsProvider(options) {
|
|
8069
8077
|
const {
|
|
@@ -8117,7 +8125,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
8117
8125
|
}),
|
|
8118
8126
|
cssVarPrefix
|
|
8119
8127
|
} = themeProp,
|
|
8120
|
-
restThemeProp = _objectWithoutPropertiesLoose(themeProp, _excluded$
|
|
8128
|
+
restThemeProp = _objectWithoutPropertiesLoose(themeProp, _excluded$2i);
|
|
8121
8129
|
const allColorSchemes = Object.keys(colorSchemes);
|
|
8122
8130
|
const defaultLightColorScheme = typeof defaultColorScheme === 'string' ? defaultColorScheme : defaultColorScheme.light;
|
|
8123
8131
|
const defaultDarkColorScheme = typeof defaultColorScheme === 'string' ? defaultColorScheme : defaultColorScheme.dark;
|
|
@@ -8536,14 +8544,14 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
8536
8544
|
};
|
|
8537
8545
|
}
|
|
8538
8546
|
|
|
8539
|
-
const _excluded$
|
|
8547
|
+
const _excluded$2h = ["colorSchemes", "components"],
|
|
8540
8548
|
_excluded2$c = ["light"];
|
|
8541
8549
|
function prepareCssVars(theme, parserConfig) {
|
|
8542
8550
|
// @ts-ignore - ignore components do not exist
|
|
8543
8551
|
const {
|
|
8544
8552
|
colorSchemes = {}
|
|
8545
8553
|
} = theme,
|
|
8546
|
-
otherTheme = _objectWithoutPropertiesLoose(theme, _excluded$
|
|
8554
|
+
otherTheme = _objectWithoutPropertiesLoose(theme, _excluded$2h);
|
|
8547
8555
|
const {
|
|
8548
8556
|
vars: rootVars,
|
|
8549
8557
|
css: rootCss,
|
|
@@ -8595,7 +8603,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
8595
8603
|
};
|
|
8596
8604
|
}
|
|
8597
8605
|
|
|
8598
|
-
const _excluded$
|
|
8606
|
+
const _excluded$2g = ["className", "component", "disableGutters", "fixed", "maxWidth", "classes"];
|
|
8599
8607
|
const defaultTheme$6 = createTheme$1();
|
|
8600
8608
|
const defaultCreateStyledComponent$2 = systemStyled('div', {
|
|
8601
8609
|
name: 'MuiContainer',
|
|
@@ -8691,7 +8699,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
8691
8699
|
fixed = false,
|
|
8692
8700
|
maxWidth = 'lg'
|
|
8693
8701
|
} = props,
|
|
8694
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
8702
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$2g);
|
|
8695
8703
|
const ownerState = _extends({}, props, {
|
|
8696
8704
|
component,
|
|
8697
8705
|
disableGutters,
|
|
@@ -8978,7 +8986,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
8978
8986
|
return [`direction-xs-${String(direction)}`];
|
|
8979
8987
|
};
|
|
8980
8988
|
|
|
8981
|
-
const _excluded$
|
|
8989
|
+
const _excluded$2f = ["className", "columns", "container", "component", "direction", "wrap", "spacing", "rowSpacing", "columnSpacing", "disableEqualOverflow"];
|
|
8982
8990
|
const defaultTheme$5 = createTheme$1();
|
|
8983
8991
|
|
|
8984
8992
|
// widening Theme to any so that the consumer can own the theme structure.
|
|
@@ -9036,7 +9044,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9036
9044
|
columnSpacing: columnSpacingProp = spacingProp,
|
|
9037
9045
|
disableEqualOverflow: themeDisableEqualOverflow
|
|
9038
9046
|
} = props,
|
|
9039
|
-
rest = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9047
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded$2f);
|
|
9040
9048
|
// Because `disableEqualOverflow` can be set from the theme's defaultProps, the **nested** grid should look at the instance props instead.
|
|
9041
9049
|
let disableEqualOverflow = themeDisableEqualOverflow;
|
|
9042
9050
|
if (level && themeDisableEqualOverflow !== undefined) {
|
|
@@ -9126,7 +9134,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9126
9134
|
return Grid;
|
|
9127
9135
|
}
|
|
9128
9136
|
|
|
9129
|
-
const _excluded$
|
|
9137
|
+
const _excluded$2e = ["component", "direction", "spacing", "divider", "children", "className"];
|
|
9130
9138
|
const defaultTheme$4 = createTheme$1();
|
|
9131
9139
|
// widening Theme to any so that the consumer can own the theme structure.
|
|
9132
9140
|
const defaultCreateStyledComponent = systemStyled('div', {
|
|
@@ -9249,7 +9257,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9249
9257
|
children,
|
|
9250
9258
|
className
|
|
9251
9259
|
} = props,
|
|
9252
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9260
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$2e);
|
|
9253
9261
|
const ownerState = {
|
|
9254
9262
|
direction,
|
|
9255
9263
|
spacing
|
|
@@ -9274,7 +9282,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9274
9282
|
return Stack;
|
|
9275
9283
|
}
|
|
9276
9284
|
|
|
9277
|
-
const _excluded$
|
|
9285
|
+
const _excluded$2d = ["defaultProps", "mixins", "overrides", "palette", "props", "styleOverrides"],
|
|
9278
9286
|
_excluded2$b = ["type", "mode"];
|
|
9279
9287
|
function adaptV4Theme(inputTheme) {
|
|
9280
9288
|
{
|
|
@@ -9288,7 +9296,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9288
9296
|
props = {},
|
|
9289
9297
|
styleOverrides = {}
|
|
9290
9298
|
} = inputTheme,
|
|
9291
|
-
other = _objectWithoutPropertiesLoose(inputTheme, _excluded$
|
|
9299
|
+
other = _objectWithoutPropertiesLoose(inputTheme, _excluded$2d);
|
|
9292
9300
|
const theme = _extends({}, other, {
|
|
9293
9301
|
components: {}
|
|
9294
9302
|
});
|
|
@@ -9369,7 +9377,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9369
9377
|
}, mixins);
|
|
9370
9378
|
}
|
|
9371
9379
|
|
|
9372
|
-
const _excluded$
|
|
9380
|
+
const _excluded$2c = ["mode", "contrastThreshold", "tonalOffset"];
|
|
9373
9381
|
const light = {
|
|
9374
9382
|
// The colors used to style the text.
|
|
9375
9383
|
text: {
|
|
@@ -9538,7 +9546,7 @@ The following color spaces are supported: srgb, display-p3, a98-rgb, prophoto-rg
|
|
|
9538
9546
|
contrastThreshold = 3,
|
|
9539
9547
|
tonalOffset = 0.2
|
|
9540
9548
|
} = palette,
|
|
9541
|
-
other = _objectWithoutPropertiesLoose(palette, _excluded$
|
|
9549
|
+
other = _objectWithoutPropertiesLoose(palette, _excluded$2c);
|
|
9542
9550
|
const primary = palette.primary || getDefaultPrimary(mode);
|
|
9543
9551
|
const secondary = palette.secondary || getDefaultSecondary(mode);
|
|
9544
9552
|
const error = palette.error || getDefaultError(mode);
|
|
@@ -9662,7 +9670,7 @@ const theme2 = createTheme({ palette: {
|
|
|
9662
9670
|
return paletteOutput;
|
|
9663
9671
|
}
|
|
9664
9672
|
|
|
9665
|
-
const _excluded$
|
|
9673
|
+
const _excluded$2b = ["fontFamily", "fontSize", "fontWeightLight", "fontWeightRegular", "fontWeightMedium", "fontWeightBold", "htmlFontSize", "allVariants", "pxToRem"];
|
|
9666
9674
|
function round$2(value) {
|
|
9667
9675
|
return Math.round(value * 1e5) / 1e5;
|
|
9668
9676
|
}
|
|
@@ -9693,7 +9701,7 @@ const theme2 = createTheme({ palette: {
|
|
|
9693
9701
|
allVariants,
|
|
9694
9702
|
pxToRem: pxToRem2
|
|
9695
9703
|
} = _ref,
|
|
9696
|
-
other = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9704
|
+
other = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
9697
9705
|
{
|
|
9698
9706
|
if (typeof fontSize !== 'number') {
|
|
9699
9707
|
console.error('MUI: `fontSize` is required to be a number.');
|
|
@@ -9760,7 +9768,7 @@ const theme2 = createTheme({ palette: {
|
|
|
9760
9768
|
const shadows = ['none', createShadow(0, 2, 1, -1, 0, 1, 1, 0, 0, 1, 3, 0), createShadow(0, 3, 1, -2, 0, 2, 2, 0, 0, 1, 5, 0), createShadow(0, 3, 3, -2, 0, 3, 4, 0, 0, 1, 8, 0), createShadow(0, 2, 4, -1, 0, 4, 5, 0, 0, 1, 10, 0), createShadow(0, 3, 5, -1, 0, 5, 8, 0, 0, 1, 14, 0), createShadow(0, 3, 5, -1, 0, 6, 10, 0, 0, 1, 18, 0), createShadow(0, 4, 5, -2, 0, 7, 10, 1, 0, 2, 16, 1), createShadow(0, 5, 5, -3, 0, 8, 10, 1, 0, 3, 14, 2), createShadow(0, 5, 6, -3, 0, 9, 12, 1, 0, 3, 16, 2), createShadow(0, 6, 6, -3, 0, 10, 14, 1, 0, 4, 18, 3), createShadow(0, 6, 7, -4, 0, 11, 15, 1, 0, 4, 20, 3), createShadow(0, 7, 8, -4, 0, 12, 17, 2, 0, 5, 22, 4), createShadow(0, 7, 8, -4, 0, 13, 19, 2, 0, 5, 24, 4), createShadow(0, 7, 9, -4, 0, 14, 21, 2, 0, 5, 26, 4), createShadow(0, 8, 9, -5, 0, 15, 22, 2, 0, 6, 28, 5), createShadow(0, 8, 10, -5, 0, 16, 24, 2, 0, 6, 30, 5), createShadow(0, 8, 11, -5, 0, 17, 26, 2, 0, 6, 32, 5), createShadow(0, 9, 11, -5, 0, 18, 28, 2, 0, 7, 34, 6), createShadow(0, 9, 12, -6, 0, 19, 29, 2, 0, 7, 36, 6), createShadow(0, 10, 13, -6, 0, 20, 31, 3, 0, 8, 38, 7), createShadow(0, 10, 13, -6, 0, 21, 33, 3, 0, 8, 40, 7), createShadow(0, 10, 14, -6, 0, 22, 35, 3, 0, 8, 42, 7), createShadow(0, 11, 14, -7, 0, 23, 36, 3, 0, 9, 44, 8), createShadow(0, 11, 15, -7, 0, 24, 38, 3, 0, 9, 46, 8)];
|
|
9761
9769
|
var shadows$1 = shadows;
|
|
9762
9770
|
|
|
9763
|
-
const _excluded$
|
|
9771
|
+
const _excluded$2a = ["duration", "easing", "delay"];
|
|
9764
9772
|
// Follow https://material.google.com/motion/duration-easing.html#duration-easing-natural-easing-curves
|
|
9765
9773
|
// to learn the context in which each easing should be used.
|
|
9766
9774
|
const easing = {
|
|
@@ -9811,7 +9819,7 @@ const theme2 = createTheme({ palette: {
|
|
|
9811
9819
|
easing: easingOption = mergedEasing.easeInOut,
|
|
9812
9820
|
delay = 0
|
|
9813
9821
|
} = options,
|
|
9814
|
-
other = _objectWithoutPropertiesLoose(options, _excluded$
|
|
9822
|
+
other = _objectWithoutPropertiesLoose(options, _excluded$2a);
|
|
9815
9823
|
{
|
|
9816
9824
|
const isString = value => typeof value === 'string';
|
|
9817
9825
|
// IE11 support, replace with Number.isNaN
|
|
@@ -9858,7 +9866,7 @@ const theme2 = createTheme({ palette: {
|
|
|
9858
9866
|
};
|
|
9859
9867
|
var zIndex$1 = zIndex;
|
|
9860
9868
|
|
|
9861
|
-
const _excluded$
|
|
9869
|
+
const _excluded$29 = ["breakpoints", "mixins", "spacing", "palette", "transitions", "typography", "shape"];
|
|
9862
9870
|
function createTheme(options = {}, ...args) {
|
|
9863
9871
|
const {
|
|
9864
9872
|
mixins: mixinsInput = {},
|
|
@@ -9866,7 +9874,7 @@ const theme2 = createTheme({ palette: {
|
|
|
9866
9874
|
transitions: transitionsInput = {},
|
|
9867
9875
|
typography: typographyInput = {}
|
|
9868
9876
|
} = options,
|
|
9869
|
-
other = _objectWithoutPropertiesLoose(options, _excluded$
|
|
9877
|
+
other = _objectWithoutPropertiesLoose(options, _excluded$29);
|
|
9870
9878
|
if (options.vars) {
|
|
9871
9879
|
throw new Error(`MUI: \`vars\` is a private field used for CSS variables support.
|
|
9872
9880
|
Please use another name.` );
|
|
@@ -10202,7 +10210,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
10202
10210
|
};
|
|
10203
10211
|
var getOverlayAlpha$1 = getOverlayAlpha;
|
|
10204
10212
|
|
|
10205
|
-
const _excluded$
|
|
10213
|
+
const _excluded$28 = ["colorSchemes", "cssVarPrefix", "shouldSkipGeneratingVar"],
|
|
10206
10214
|
_excluded2$a = ["palette"];
|
|
10207
10215
|
const defaultDarkOverlays = [...Array(25)].map((_, index) => {
|
|
10208
10216
|
if (index === 0) {
|
|
@@ -10246,7 +10254,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
10246
10254
|
cssVarPrefix = 'mui',
|
|
10247
10255
|
shouldSkipGeneratingVar: shouldSkipGeneratingVar$1 = shouldSkipGeneratingVar
|
|
10248
10256
|
} = options,
|
|
10249
|
-
input = _objectWithoutPropertiesLoose(options, _excluded$
|
|
10257
|
+
input = _objectWithoutPropertiesLoose(options, _excluded$28);
|
|
10250
10258
|
const getCssVar = createGetCssVar(cssVarPrefix);
|
|
10251
10259
|
const _createThemeWithoutVa = createTheme(_extends({}, input, colorSchemesInput.light && {
|
|
10252
10260
|
palette: (_colorSchemesInput$li = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li.palette
|
|
@@ -10698,7 +10706,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
10698
10706
|
};
|
|
10699
10707
|
}
|
|
10700
10708
|
|
|
10701
|
-
const _excluded$
|
|
10709
|
+
const _excluded$27 = ["elementType", "externalSlotProps", "ownerState"];
|
|
10702
10710
|
/**
|
|
10703
10711
|
* @ignore - do not document.
|
|
10704
10712
|
* Builds the props to be passed into the slot of an unstyled component.
|
|
@@ -10714,7 +10722,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
10714
10722
|
externalSlotProps,
|
|
10715
10723
|
ownerState
|
|
10716
10724
|
} = parameters,
|
|
10717
|
-
rest = _objectWithoutPropertiesLoose(parameters, _excluded$
|
|
10725
|
+
rest = _objectWithoutPropertiesLoose(parameters, _excluded$27);
|
|
10718
10726
|
const resolvedComponentsProps = resolveComponentProps(externalSlotProps, ownerState);
|
|
10719
10727
|
const {
|
|
10720
10728
|
props: mergedProps,
|
|
@@ -13320,7 +13328,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
13320
13328
|
}
|
|
13321
13329
|
generateUtilityClasses('MuiPopper', ['root']);
|
|
13322
13330
|
|
|
13323
|
-
const _excluded$
|
|
13331
|
+
const _excluded$26 = ["anchorEl", "children", "component", "direction", "disablePortal", "modifiers", "open", "ownerState", "placement", "popperOptions", "popperRef", "slotProps", "slots", "TransitionProps"],
|
|
13324
13332
|
_excluded2$9 = ["anchorEl", "children", "container", "direction", "disablePortal", "keepMounted", "modifiers", "open", "placement", "popperOptions", "popperRef", "style", "transition", "slotProps", "slots"];
|
|
13325
13333
|
function flipPlacement(placement, direction) {
|
|
13326
13334
|
if (direction === 'ltr') {
|
|
@@ -13373,7 +13381,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
13373
13381
|
slots = {},
|
|
13374
13382
|
TransitionProps
|
|
13375
13383
|
} = props,
|
|
13376
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
13384
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$26);
|
|
13377
13385
|
const tooltipRef = React__namespace.useRef(null);
|
|
13378
13386
|
const ownRef = useForkRef(tooltipRef, ref);
|
|
13379
13387
|
const popperRef = React__namespace.useRef(null);
|
|
@@ -13905,7 +13913,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
13905
13913
|
const modalUnstyledClasses = generateUtilityClasses('MuiModal', ['root', 'hidden', 'backdrop']);
|
|
13906
13914
|
var modalUnstyledClasses$1 = modalUnstyledClasses;
|
|
13907
13915
|
|
|
13908
|
-
const _excluded$
|
|
13916
|
+
const _excluded$25 = ["children", "closeAfterTransition", "component", "container", "disableAutoFocus", "disableEnforceFocus", "disableEscapeKeyDown", "disablePortal", "disableRestoreFocus", "disableScrollLock", "hideBackdrop", "keepMounted", "manager", "onBackdropClick", "onClose", "onKeyDown", "open", "onTransitionEnter", "onTransitionExited", "slotProps", "slots"];
|
|
13909
13917
|
const useUtilityClasses$1N = ownerState => {
|
|
13910
13918
|
const {
|
|
13911
13919
|
open,
|
|
@@ -13975,7 +13983,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
13975
13983
|
slotProps = {},
|
|
13976
13984
|
slots = {}
|
|
13977
13985
|
} = props,
|
|
13978
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
13986
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$25);
|
|
13979
13987
|
const [exited, setExited] = React__namespace.useState(!open);
|
|
13980
13988
|
const modal = React__namespace.useRef({});
|
|
13981
13989
|
const mountNodeRef = React__namespace.useRef(null);
|
|
@@ -15076,7 +15084,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
15076
15084
|
};
|
|
15077
15085
|
}
|
|
15078
15086
|
|
|
15079
|
-
const _excluded$
|
|
15087
|
+
const _excluded$24 = ["onChange", "maxRows", "minRows", "style", "value"];
|
|
15080
15088
|
function getStyleValue(value) {
|
|
15081
15089
|
return parseInt(value, 10) || 0;
|
|
15082
15090
|
}
|
|
@@ -15118,7 +15126,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
15118
15126
|
style,
|
|
15119
15127
|
value
|
|
15120
15128
|
} = props,
|
|
15121
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
15129
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$24);
|
|
15122
15130
|
const {
|
|
15123
15131
|
current: isControlled
|
|
15124
15132
|
} = React__namespace.useRef(value != null);
|
|
@@ -16295,7 +16303,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
16295
16303
|
const svgIconClasses = generateUtilityClasses('MuiSvgIcon', ['root', 'colorPrimary', 'colorSecondary', 'colorAction', 'colorError', 'colorDisabled', 'fontSizeInherit', 'fontSizeSmall', 'fontSizeMedium', 'fontSizeLarge']);
|
|
16296
16304
|
var svgIconClasses$1 = svgIconClasses;
|
|
16297
16305
|
|
|
16298
|
-
const _excluded$
|
|
16306
|
+
const _excluded$23 = ["children", "className", "color", "component", "fontSize", "htmlColor", "inheritViewBox", "titleAccess", "viewBox"];
|
|
16299
16307
|
const useUtilityClasses$1M = ownerState => {
|
|
16300
16308
|
const {
|
|
16301
16309
|
color,
|
|
@@ -16361,7 +16369,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
16361
16369
|
titleAccess,
|
|
16362
16370
|
viewBox = '0 0 24 24'
|
|
16363
16371
|
} = props,
|
|
16364
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16372
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$23);
|
|
16365
16373
|
const ownerState = _extends({}, props, {
|
|
16366
16374
|
color,
|
|
16367
16375
|
component,
|
|
@@ -17502,7 +17510,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
17502
17510
|
const collapseClasses = generateUtilityClasses('MuiCollapse', ['root', 'horizontal', 'vertical', 'entered', 'hidden', 'wrapper', 'wrapperInner']);
|
|
17503
17511
|
var collapseClasses$1 = collapseClasses;
|
|
17504
17512
|
|
|
17505
|
-
const _excluded$
|
|
17513
|
+
const _excluded$22 = ["addEndListener", "children", "className", "collapsedSize", "component", "easing", "in", "onEnter", "onEntered", "onEntering", "onExit", "onExited", "onExiting", "orientation", "style", "timeout", "TransitionComponent"];
|
|
17506
17514
|
const useUtilityClasses$1L = ownerState => {
|
|
17507
17515
|
const {
|
|
17508
17516
|
orientation,
|
|
@@ -17602,7 +17610,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
17602
17610
|
// eslint-disable-next-line react/prop-types
|
|
17603
17611
|
TransitionComponent = Transition$1
|
|
17604
17612
|
} = props,
|
|
17605
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17613
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$22);
|
|
17606
17614
|
const ownerState = _extends({}, props, {
|
|
17607
17615
|
orientation,
|
|
17608
17616
|
collapsedSize: collapsedSizeProp
|
|
@@ -17870,7 +17878,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
17870
17878
|
const paperClasses = generateUtilityClasses('MuiPaper', ['root', 'rounded', 'outlined', 'elevation', 'elevation0', 'elevation1', 'elevation2', 'elevation3', 'elevation4', 'elevation5', 'elevation6', 'elevation7', 'elevation8', 'elevation9', 'elevation10', 'elevation11', 'elevation12', 'elevation13', 'elevation14', 'elevation15', 'elevation16', 'elevation17', 'elevation18', 'elevation19', 'elevation20', 'elevation21', 'elevation22', 'elevation23', 'elevation24']);
|
|
17871
17879
|
var paperClasses$1 = paperClasses;
|
|
17872
17880
|
|
|
17873
|
-
const _excluded$
|
|
17881
|
+
const _excluded$21 = ["className", "component", "elevation", "square", "variant"];
|
|
17874
17882
|
const useUtilityClasses$1K = ownerState => {
|
|
17875
17883
|
const {
|
|
17876
17884
|
square,
|
|
@@ -17925,7 +17933,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
17925
17933
|
square = false,
|
|
17926
17934
|
variant = 'elevation'
|
|
17927
17935
|
} = props,
|
|
17928
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17936
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$21);
|
|
17929
17937
|
const ownerState = _extends({}, props, {
|
|
17930
17938
|
component,
|
|
17931
17939
|
elevation,
|
|
@@ -18017,7 +18025,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18017
18025
|
const accordionClasses = generateUtilityClasses('MuiAccordion', ['root', 'rounded', 'expanded', 'disabled', 'gutters', 'region']);
|
|
18018
18026
|
var accordionClasses$1 = accordionClasses;
|
|
18019
18027
|
|
|
18020
|
-
const _excluded$
|
|
18028
|
+
const _excluded$20 = ["children", "className", "defaultExpanded", "disabled", "disableGutters", "expanded", "onChange", "square", "TransitionComponent", "TransitionProps"];
|
|
18021
18029
|
const useUtilityClasses$1J = ownerState => {
|
|
18022
18030
|
const {
|
|
18023
18031
|
classes,
|
|
@@ -18130,7 +18138,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18130
18138
|
TransitionComponent = Collapse$1,
|
|
18131
18139
|
TransitionProps
|
|
18132
18140
|
} = props,
|
|
18133
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18141
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$20);
|
|
18134
18142
|
const [expanded, setExpandedState] = useControlled({
|
|
18135
18143
|
controlled: expandedProp,
|
|
18136
18144
|
default: defaultExpanded,
|
|
@@ -18262,7 +18270,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18262
18270
|
const accordionActionsClasses = generateUtilityClasses('MuiAccordionActions', ['root', 'spacing']);
|
|
18263
18271
|
var accordionActionsClasses$1 = accordionActionsClasses;
|
|
18264
18272
|
|
|
18265
|
-
const _excluded$
|
|
18273
|
+
const _excluded$1$ = ["className", "disableSpacing"];
|
|
18266
18274
|
const useUtilityClasses$1I = ownerState => {
|
|
18267
18275
|
const {
|
|
18268
18276
|
classes,
|
|
@@ -18303,7 +18311,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18303
18311
|
className,
|
|
18304
18312
|
disableSpacing = false
|
|
18305
18313
|
} = props,
|
|
18306
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18314
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1$);
|
|
18307
18315
|
const ownerState = _extends({}, props, {
|
|
18308
18316
|
disableSpacing
|
|
18309
18317
|
});
|
|
@@ -18349,7 +18357,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18349
18357
|
const accordionDetailsClasses = generateUtilityClasses('MuiAccordionDetails', ['root']);
|
|
18350
18358
|
var accordionDetailsClasses$1 = accordionDetailsClasses;
|
|
18351
18359
|
|
|
18352
|
-
const _excluded$
|
|
18360
|
+
const _excluded$1_ = ["className"];
|
|
18353
18361
|
const useUtilityClasses$1H = ownerState => {
|
|
18354
18362
|
const {
|
|
18355
18363
|
classes
|
|
@@ -18376,7 +18384,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18376
18384
|
const {
|
|
18377
18385
|
className
|
|
18378
18386
|
} = props,
|
|
18379
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18387
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1_);
|
|
18380
18388
|
const ownerState = props;
|
|
18381
18389
|
const classes = useUtilityClasses$1H(ownerState);
|
|
18382
18390
|
return /*#__PURE__*/jsxRuntime_1(AccordionDetailsRoot, _extends({
|
|
@@ -18494,7 +18502,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18494
18502
|
const touchRippleClasses = generateUtilityClasses('MuiTouchRipple', ['root', 'ripple', 'rippleVisible', 'ripplePulsate', 'child', 'childLeaving', 'childPulsate']);
|
|
18495
18503
|
var touchRippleClasses$1 = touchRippleClasses;
|
|
18496
18504
|
|
|
18497
|
-
const _excluded$
|
|
18505
|
+
const _excluded$1Z = ["center", "classes", "className"];
|
|
18498
18506
|
let _$3 = t => t,
|
|
18499
18507
|
_t$3,
|
|
18500
18508
|
_t2$3,
|
|
@@ -18623,7 +18631,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18623
18631
|
classes = {},
|
|
18624
18632
|
className
|
|
18625
18633
|
} = props,
|
|
18626
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18634
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1Z);
|
|
18627
18635
|
const [ripples, setRipples] = React__namespace.useState([]);
|
|
18628
18636
|
const nextKey = React__namespace.useRef(0);
|
|
18629
18637
|
const rippleCallback = React__namespace.useRef(null);
|
|
@@ -18824,7 +18832,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18824
18832
|
const buttonBaseClasses = generateUtilityClasses('MuiButtonBase', ['root', 'disabled', 'focusVisible']);
|
|
18825
18833
|
var buttonBaseClasses$1 = buttonBaseClasses;
|
|
18826
18834
|
|
|
18827
|
-
const _excluded$
|
|
18835
|
+
const _excluded$1Y = ["action", "centerRipple", "children", "className", "component", "disabled", "disableRipple", "disableTouchRipple", "focusRipple", "focusVisibleClassName", "LinkComponent", "onBlur", "onClick", "onContextMenu", "onDragLeave", "onFocus", "onFocusVisible", "onKeyDown", "onKeyUp", "onMouseDown", "onMouseLeave", "onMouseUp", "onTouchEnd", "onTouchMove", "onTouchStart", "tabIndex", "TouchRippleProps", "touchRippleRef", "type"];
|
|
18828
18836
|
const useUtilityClasses$1G = ownerState => {
|
|
18829
18837
|
const {
|
|
18830
18838
|
disabled,
|
|
@@ -18926,7 +18934,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18926
18934
|
touchRippleRef,
|
|
18927
18935
|
type
|
|
18928
18936
|
} = props,
|
|
18929
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18937
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1Y);
|
|
18930
18938
|
const buttonRef = React__namespace.useRef(null);
|
|
18931
18939
|
const rippleRef = React__namespace.useRef(null);
|
|
18932
18940
|
const handleRippleRef = useForkRef(rippleRef, touchRippleRef);
|
|
@@ -19290,7 +19298,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
19290
19298
|
const accordionSummaryClasses = generateUtilityClasses('MuiAccordionSummary', ['root', 'expanded', 'focusVisible', 'disabled', 'gutters', 'contentGutters', 'content', 'expandIconWrapper']);
|
|
19291
19299
|
var accordionSummaryClasses$1 = accordionSummaryClasses;
|
|
19292
19300
|
|
|
19293
|
-
const _excluded$
|
|
19301
|
+
const _excluded$1X = ["children", "className", "expandIcon", "focusVisibleClassName", "onClick"];
|
|
19294
19302
|
const useUtilityClasses$1F = ownerState => {
|
|
19295
19303
|
const {
|
|
19296
19304
|
classes,
|
|
@@ -19385,7 +19393,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
19385
19393
|
focusVisibleClassName,
|
|
19386
19394
|
onClick
|
|
19387
19395
|
} = props,
|
|
19388
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19396
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1X);
|
|
19389
19397
|
const {
|
|
19390
19398
|
disabled = false,
|
|
19391
19399
|
disableGutters,
|
|
@@ -19482,7 +19490,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
19482
19490
|
const iconButtonClasses = generateUtilityClasses('MuiIconButton', ['root', 'disabled', 'colorInherit', 'colorPrimary', 'colorSecondary', 'colorError', 'colorInfo', 'colorSuccess', 'colorWarning', 'edgeStart', 'edgeEnd', 'sizeSmall', 'sizeMedium', 'sizeLarge']);
|
|
19483
19491
|
var iconButtonClasses$1 = iconButtonClasses;
|
|
19484
19492
|
|
|
19485
|
-
const _excluded$
|
|
19493
|
+
const _excluded$1W = ["edge", "children", "className", "color", "disabled", "disableFocusRipple", "size"];
|
|
19486
19494
|
const useUtilityClasses$1E = ownerState => {
|
|
19487
19495
|
const {
|
|
19488
19496
|
classes,
|
|
@@ -19583,7 +19591,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
19583
19591
|
disableFocusRipple = false,
|
|
19584
19592
|
size = 'medium'
|
|
19585
19593
|
} = props,
|
|
19586
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19594
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1W);
|
|
19587
19595
|
const ownerState = _extends({}, props, {
|
|
19588
19596
|
edge,
|
|
19589
19597
|
color,
|
|
@@ -19692,7 +19700,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
19692
19700
|
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
|
19693
19701
|
}), 'Close');
|
|
19694
19702
|
|
|
19695
|
-
const _excluded$
|
|
19703
|
+
const _excluded$1V = ["action", "children", "className", "closeText", "color", "components", "componentsProps", "icon", "iconMapping", "onClose", "role", "severity", "slotProps", "slots", "variant"];
|
|
19696
19704
|
const useUtilityClasses$1D = ownerState => {
|
|
19697
19705
|
const {
|
|
19698
19706
|
variant,
|
|
@@ -19822,7 +19830,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
19822
19830
|
slots = {},
|
|
19823
19831
|
variant = 'standard'
|
|
19824
19832
|
} = props,
|
|
19825
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19833
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1V);
|
|
19826
19834
|
const ownerState = _extends({}, props, {
|
|
19827
19835
|
color,
|
|
19828
19836
|
severity,
|
|
@@ -20003,7 +20011,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20003
20011
|
const typographyClasses = generateUtilityClasses('MuiTypography', ['root', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'subtitle1', 'subtitle2', 'body1', 'body2', 'inherit', 'button', 'caption', 'overline', 'alignLeft', 'alignRight', 'alignCenter', 'alignJustify', 'noWrap', 'gutterBottom', 'paragraph']);
|
|
20004
20012
|
var typographyClasses$1 = typographyClasses;
|
|
20005
20013
|
|
|
20006
|
-
const _excluded$
|
|
20014
|
+
const _excluded$1U = ["align", "className", "component", "gutterBottom", "noWrap", "paragraph", "variant", "variantMapping"];
|
|
20007
20015
|
const useUtilityClasses$1C = ownerState => {
|
|
20008
20016
|
const {
|
|
20009
20017
|
align,
|
|
@@ -20087,7 +20095,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20087
20095
|
variant = 'body1',
|
|
20088
20096
|
variantMapping = defaultVariantMapping
|
|
20089
20097
|
} = props,
|
|
20090
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
20098
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1U);
|
|
20091
20099
|
const ownerState = _extends({}, props, {
|
|
20092
20100
|
align,
|
|
20093
20101
|
color,
|
|
@@ -20191,7 +20199,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20191
20199
|
const alertTitleClasses = generateUtilityClasses('MuiAlertTitle', ['root']);
|
|
20192
20200
|
var alertTitleClasses$1 = alertTitleClasses;
|
|
20193
20201
|
|
|
20194
|
-
const _excluded$
|
|
20202
|
+
const _excluded$1T = ["className"];
|
|
20195
20203
|
const useUtilityClasses$1B = ownerState => {
|
|
20196
20204
|
const {
|
|
20197
20205
|
classes
|
|
@@ -20221,7 +20229,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20221
20229
|
const {
|
|
20222
20230
|
className
|
|
20223
20231
|
} = props,
|
|
20224
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
20232
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1T);
|
|
20225
20233
|
const ownerState = props;
|
|
20226
20234
|
const classes = useUtilityClasses$1B(ownerState);
|
|
20227
20235
|
return /*#__PURE__*/jsxRuntime_1(AlertTitleRoot, _extends({
|
|
@@ -20262,7 +20270,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20262
20270
|
const appBarClasses = generateUtilityClasses('MuiAppBar', ['root', 'positionFixed', 'positionAbsolute', 'positionSticky', 'positionStatic', 'positionRelative', 'colorDefault', 'colorPrimary', 'colorSecondary', 'colorInherit', 'colorTransparent']);
|
|
20263
20271
|
var appBarClasses$1 = appBarClasses;
|
|
20264
20272
|
|
|
20265
|
-
const _excluded$
|
|
20273
|
+
const _excluded$1S = ["className", "color", "enableColorOnDark", "position"];
|
|
20266
20274
|
const useUtilityClasses$1A = ownerState => {
|
|
20267
20275
|
const {
|
|
20268
20276
|
color,
|
|
@@ -20368,7 +20376,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20368
20376
|
enableColorOnDark = false,
|
|
20369
20377
|
position = 'fixed'
|
|
20370
20378
|
} = props,
|
|
20371
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
20379
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1S);
|
|
20372
20380
|
const ownerState = _extends({}, props, {
|
|
20373
20381
|
color,
|
|
20374
20382
|
position,
|
|
@@ -20427,7 +20435,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20427
20435
|
} ;
|
|
20428
20436
|
var AppBar$1 = AppBar;
|
|
20429
20437
|
|
|
20430
|
-
const _excluded$
|
|
20438
|
+
const _excluded$1R = ["components", "componentsProps", "slots", "slotProps"];
|
|
20431
20439
|
const PopperRoot = styled$1(PopperUnstyled$1, {
|
|
20432
20440
|
name: 'MuiPopper',
|
|
20433
20441
|
slot: 'Root',
|
|
@@ -20459,7 +20467,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20459
20467
|
slots,
|
|
20460
20468
|
slotProps
|
|
20461
20469
|
} = props,
|
|
20462
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
20470
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1R);
|
|
20463
20471
|
const RootComponent = (_slots$root = slots == null ? void 0 : slots.root) != null ? _slots$root : components == null ? void 0 : components.Root;
|
|
20464
20472
|
return /*#__PURE__*/jsxRuntime_1(PopperRoot, _extends({
|
|
20465
20473
|
direction: theme == null ? void 0 : theme.direction,
|
|
@@ -20606,7 +20614,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20606
20614
|
const listSubheaderClasses = generateUtilityClasses('MuiListSubheader', ['root', 'colorPrimary', 'colorInherit', 'gutters', 'inset', 'sticky']);
|
|
20607
20615
|
var listSubheaderClasses$1 = listSubheaderClasses;
|
|
20608
20616
|
|
|
20609
|
-
const _excluded$
|
|
20617
|
+
const _excluded$1Q = ["className", "color", "component", "disableGutters", "disableSticky", "inset"];
|
|
20610
20618
|
const useUtilityClasses$1z = ownerState => {
|
|
20611
20619
|
const {
|
|
20612
20620
|
classes,
|
|
@@ -20668,7 +20676,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20668
20676
|
disableSticky = false,
|
|
20669
20677
|
inset = false
|
|
20670
20678
|
} = props,
|
|
20671
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
20679
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1Q);
|
|
20672
20680
|
const ownerState = _extends({}, props, {
|
|
20673
20681
|
color,
|
|
20674
20682
|
component,
|
|
@@ -20744,7 +20752,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
20744
20752
|
const chipClasses = generateUtilityClasses('MuiChip', ['root', 'sizeSmall', 'sizeMedium', 'colorError', 'colorInfo', 'colorPrimary', 'colorSecondary', 'colorSuccess', 'colorWarning', 'disabled', 'clickable', 'clickableColorPrimary', 'clickableColorSecondary', 'deletable', 'deletableColorPrimary', 'deletableColorSecondary', 'outlined', 'filled', 'outlinedPrimary', 'outlinedSecondary', 'filledPrimary', 'filledSecondary', 'avatar', 'avatarSmall', 'avatarMedium', 'avatarColorPrimary', 'avatarColorSecondary', 'icon', 'iconSmall', 'iconMedium', 'iconColorPrimary', 'iconColorSecondary', 'label', 'labelSmall', 'labelMedium', 'deleteIcon', 'deleteIconSmall', 'deleteIconMedium', 'deleteIconColorPrimary', 'deleteIconColorSecondary', 'deleteIconOutlinedColorPrimary', 'deleteIconOutlinedColorSecondary', 'deleteIconFilledColorPrimary', 'deleteIconFilledColorSecondary', 'focusVisible']);
|
|
20745
20753
|
var chipClasses$1 = chipClasses;
|
|
20746
20754
|
|
|
20747
|
-
const _excluded$
|
|
20755
|
+
const _excluded$1P = ["avatar", "className", "clickable", "color", "component", "deleteIcon", "disabled", "icon", "label", "onClick", "onDelete", "onKeyDown", "onKeyUp", "size", "variant", "tabIndex", "skipFocusWhenDisabled"];
|
|
20748
20756
|
const useUtilityClasses$1y = ownerState => {
|
|
20749
20757
|
const {
|
|
20750
20758
|
classes,
|
|
@@ -21025,7 +21033,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
21025
21033
|
tabIndex,
|
|
21026
21034
|
skipFocusWhenDisabled = false
|
|
21027
21035
|
} = props,
|
|
21028
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
21036
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1P);
|
|
21029
21037
|
const chipRef = React__namespace.useRef(null);
|
|
21030
21038
|
const handleRef = useForkRef(chipRef, ref);
|
|
21031
21039
|
const handleDeleteIconClick = event => {
|
|
@@ -21311,7 +21319,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
21311
21319
|
const inputBaseClasses = generateUtilityClasses('MuiInputBase', ['root', 'formControl', 'focused', 'disabled', 'adornedStart', 'adornedEnd', 'error', 'sizeSmall', 'multiline', 'colorSecondary', 'fullWidth', 'hiddenLabel', 'readOnly', 'input', 'inputSizeSmall', 'inputMultiline', 'inputTypeSearch', 'inputAdornedStart', 'inputAdornedEnd', 'inputHiddenLabel']);
|
|
21312
21320
|
var inputBaseClasses$1 = inputBaseClasses;
|
|
21313
21321
|
|
|
21314
|
-
const _excluded$
|
|
21322
|
+
const _excluded$1O = ["aria-describedby", "autoComplete", "autoFocus", "className", "color", "components", "componentsProps", "defaultValue", "disabled", "disableInjectingGlobalStyles", "endAdornment", "error", "fullWidth", "id", "inputComponent", "inputProps", "inputRef", "margin", "maxRows", "minRows", "multiline", "name", "onBlur", "onChange", "onClick", "onFocus", "onKeyDown", "onKeyUp", "placeholder", "readOnly", "renderSuffix", "rows", "size", "slotProps", "slots", "startAdornment", "type", "value"];
|
|
21315
21323
|
const rootOverridesResolver = (props, styles) => {
|
|
21316
21324
|
const {
|
|
21317
21325
|
ownerState
|
|
@@ -21542,7 +21550,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
21542
21550
|
type = 'text',
|
|
21543
21551
|
value: valueProp
|
|
21544
21552
|
} = props,
|
|
21545
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
21553
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1O);
|
|
21546
21554
|
const value = inputPropsProp.value != null ? inputPropsProp.value : valueProp;
|
|
21547
21555
|
const {
|
|
21548
21556
|
current: isControlled
|
|
@@ -22027,7 +22035,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
22027
22035
|
var autocompleteClasses$1 = autocompleteClasses;
|
|
22028
22036
|
|
|
22029
22037
|
var _ClearIcon, _ArrowDropDownIcon;
|
|
22030
|
-
const _excluded$
|
|
22038
|
+
const _excluded$1N = ["autoComplete", "autoHighlight", "autoSelect", "blurOnSelect", "ChipProps", "className", "clearIcon", "clearOnBlur", "clearOnEscape", "clearText", "closeText", "componentsProps", "defaultValue", "disableClearable", "disableCloseOnSelect", "disabled", "disabledItemsFocusable", "disableListWrap", "disablePortal", "filterOptions", "filterSelectedOptions", "forcePopupIcon", "freeSolo", "fullWidth", "getLimitTagsText", "getOptionDisabled", "getOptionLabel", "isOptionEqualToValue", "groupBy", "handleHomeEndKeys", "id", "includeInputInList", "inputValue", "limitTags", "ListboxComponent", "ListboxProps", "loading", "loadingText", "multiple", "noOptionsText", "onChange", "onClose", "onHighlightChange", "onInputChange", "onOpen", "open", "openOnFocus", "openText", "options", "PaperComponent", "PopperComponent", "popupIcon", "readOnly", "renderGroup", "renderInput", "renderOption", "renderTags", "selectOnFocus", "size", "slotProps", "value"];
|
|
22031
22039
|
const useUtilityClasses$1w = ownerState => {
|
|
22032
22040
|
const {
|
|
22033
22041
|
classes,
|
|
@@ -22427,7 +22435,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
22427
22435
|
size = 'medium',
|
|
22428
22436
|
slotProps = {}
|
|
22429
22437
|
} = props,
|
|
22430
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
22438
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1N);
|
|
22431
22439
|
/* eslint-enable @typescript-eslint/no-unused-vars */
|
|
22432
22440
|
|
|
22433
22441
|
const {
|
|
@@ -23046,7 +23054,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23046
23054
|
const avatarClasses = generateUtilityClasses('MuiAvatar', ['root', 'colorDefault', 'circular', 'rounded', 'square', 'img', 'fallback']);
|
|
23047
23055
|
var avatarClasses$1 = avatarClasses;
|
|
23048
23056
|
|
|
23049
|
-
const _excluded$
|
|
23057
|
+
const _excluded$1M = ["alt", "children", "className", "component", "imgProps", "sizes", "src", "srcSet", "variant"];
|
|
23050
23058
|
const useUtilityClasses$1v = ownerState => {
|
|
23051
23059
|
const {
|
|
23052
23060
|
classes,
|
|
@@ -23174,7 +23182,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23174
23182
|
srcSet,
|
|
23175
23183
|
variant = 'circular'
|
|
23176
23184
|
} = props,
|
|
23177
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
23185
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1M);
|
|
23178
23186
|
let children = null;
|
|
23179
23187
|
|
|
23180
23188
|
// Use a hook instead of onError on the img element to support server-side rendering.
|
|
@@ -23282,7 +23290,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23282
23290
|
const avatarGroupClasses = generateUtilityClasses('MuiAvatarGroup', ['root', 'avatar']);
|
|
23283
23291
|
var avatarGroupClasses$1 = avatarGroupClasses;
|
|
23284
23292
|
|
|
23285
|
-
const _excluded$
|
|
23293
|
+
const _excluded$1L = ["children", "className", "component", "componentsProps", "max", "slotProps", "spacing", "total", "variant"];
|
|
23286
23294
|
const SPACINGS$2 = {
|
|
23287
23295
|
small: -16,
|
|
23288
23296
|
medium: null
|
|
@@ -23348,7 +23356,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23348
23356
|
total,
|
|
23349
23357
|
variant = 'circular'
|
|
23350
23358
|
} = props,
|
|
23351
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
23359
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1L);
|
|
23352
23360
|
let clampedMax = max < 2 ? 2 : max;
|
|
23353
23361
|
const ownerState = _extends({}, props, {
|
|
23354
23362
|
max,
|
|
@@ -23479,7 +23487,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23479
23487
|
} ;
|
|
23480
23488
|
var AvatarGroup$1 = AvatarGroup;
|
|
23481
23489
|
|
|
23482
|
-
const _excluded$
|
|
23490
|
+
const _excluded$1K = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "onEntered", "onEntering", "onExit", "onExited", "onExiting", "style", "timeout", "TransitionComponent"];
|
|
23483
23491
|
const styles$4 = {
|
|
23484
23492
|
entering: {
|
|
23485
23493
|
opacity: 1
|
|
@@ -23516,7 +23524,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23516
23524
|
// eslint-disable-next-line react/prop-types
|
|
23517
23525
|
TransitionComponent = Transition$1
|
|
23518
23526
|
} = props,
|
|
23519
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
23527
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1K);
|
|
23520
23528
|
const nodeRef = React__namespace.useRef(null);
|
|
23521
23529
|
const handleRef = useForkRef(nodeRef, children.ref, ref);
|
|
23522
23530
|
const normalizedTransitionCallback = callback => maybeIsAppearing => {
|
|
@@ -23678,7 +23686,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23678
23686
|
const backdropClasses = generateUtilityClasses('MuiBackdrop', ['root', 'invisible']);
|
|
23679
23687
|
var backdropClasses$1 = backdropClasses;
|
|
23680
23688
|
|
|
23681
|
-
const _excluded$
|
|
23689
|
+
const _excluded$1J = ["children", "className", "component", "components", "componentsProps", "invisible", "open", "slotProps", "slots", "TransitionComponent", "transitionDuration"];
|
|
23682
23690
|
const useUtilityClasses$1t = ownerState => {
|
|
23683
23691
|
const {
|
|
23684
23692
|
classes,
|
|
@@ -23733,7 +23741,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23733
23741
|
TransitionComponent = Fade$1,
|
|
23734
23742
|
transitionDuration
|
|
23735
23743
|
} = props,
|
|
23736
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
23744
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1J);
|
|
23737
23745
|
const ownerState = _extends({}, props, {
|
|
23738
23746
|
component,
|
|
23739
23747
|
invisible
|
|
@@ -23862,7 +23870,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
23862
23870
|
'anchorOriginTopLeftCircular', 'anchorOriginTopLeftRectangular', 'anchorOriginTopRightCircular', 'anchorOriginTopRightRectangular', 'anchorOriginBottomLeftCircular', 'anchorOriginBottomLeftRectangular', 'anchorOriginBottomRightCircular', 'anchorOriginBottomRightRectangular']);
|
|
23863
23871
|
var badgeClasses$1 = badgeClasses;
|
|
23864
23872
|
|
|
23865
|
-
const _excluded$
|
|
23873
|
+
const _excluded$1I = ["anchorOrigin", "className", "classes", "component", "components", "componentsProps", "children", "overlap", "color", "invisible", "max", "badgeContent", "slots", "slotProps", "showZero", "variant"];
|
|
23866
23874
|
const RADIUS_STANDARD = 10;
|
|
23867
23875
|
const RADIUS_DOT = 4;
|
|
23868
23876
|
const useUtilityClasses$1s = ownerState => {
|
|
@@ -24030,7 +24038,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24030
24038
|
showZero = false,
|
|
24031
24039
|
variant: variantProp = 'standard'
|
|
24032
24040
|
} = props,
|
|
24033
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
24041
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1I);
|
|
24034
24042
|
const {
|
|
24035
24043
|
badgeContent,
|
|
24036
24044
|
invisible: invisibleFromHook,
|
|
@@ -24222,7 +24230,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24222
24230
|
const bottomNavigationClasses = generateUtilityClasses('MuiBottomNavigation', ['root']);
|
|
24223
24231
|
var bottomNavigationClasses$1 = bottomNavigationClasses;
|
|
24224
24232
|
|
|
24225
|
-
const _excluded$
|
|
24233
|
+
const _excluded$1H = ["children", "className", "component", "onChange", "showLabels", "value"];
|
|
24226
24234
|
const useUtilityClasses$1r = ownerState => {
|
|
24227
24235
|
const {
|
|
24228
24236
|
classes
|
|
@@ -24257,7 +24265,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24257
24265
|
showLabels = false,
|
|
24258
24266
|
value
|
|
24259
24267
|
} = props,
|
|
24260
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
24268
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1H);
|
|
24261
24269
|
const ownerState = _extends({}, props, {
|
|
24262
24270
|
component,
|
|
24263
24271
|
showLabels
|
|
@@ -24340,7 +24348,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24340
24348
|
const bottomNavigationActionClasses = generateUtilityClasses('MuiBottomNavigationAction', ['root', 'iconOnly', 'selected', 'label']);
|
|
24341
24349
|
var bottomNavigationActionClasses$1 = bottomNavigationActionClasses;
|
|
24342
24350
|
|
|
24343
|
-
const _excluded$
|
|
24351
|
+
const _excluded$1G = ["className", "icon", "label", "onChange", "onClick", "selected", "showLabel", "value"];
|
|
24344
24352
|
const useUtilityClasses$1q = ownerState => {
|
|
24345
24353
|
const {
|
|
24346
24354
|
classes,
|
|
@@ -24418,7 +24426,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24418
24426
|
onClick,
|
|
24419
24427
|
value
|
|
24420
24428
|
} = props,
|
|
24421
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
24429
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1G);
|
|
24422
24430
|
const ownerState = props;
|
|
24423
24431
|
const classes = useUtilityClasses$1q(ownerState);
|
|
24424
24432
|
const handleChange = event => {
|
|
@@ -24527,6 +24535,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24527
24535
|
d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
|
|
24528
24536
|
}), 'MoreHoriz');
|
|
24529
24537
|
|
|
24538
|
+
const _excluded$1F = ["slots", "slotProps"];
|
|
24530
24539
|
const BreadcrumbCollapsedButton = styled$1(ButtonBase$1)(({
|
|
24531
24540
|
theme
|
|
24532
24541
|
}) => _extends({
|
|
@@ -24563,19 +24572,40 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24563
24572
|
* @ignore - internal component.
|
|
24564
24573
|
*/
|
|
24565
24574
|
function BreadcrumbCollapsed(props) {
|
|
24575
|
+
const {
|
|
24576
|
+
slots = {},
|
|
24577
|
+
slotProps = {}
|
|
24578
|
+
} = props,
|
|
24579
|
+
otherProps = _objectWithoutPropertiesLoose(props, _excluded$1F);
|
|
24566
24580
|
const ownerState = props;
|
|
24567
24581
|
return /*#__PURE__*/jsxRuntime_1("li", {
|
|
24568
24582
|
children: /*#__PURE__*/jsxRuntime_1(BreadcrumbCollapsedButton, _extends({
|
|
24569
24583
|
focusRipple: true
|
|
24570
|
-
},
|
|
24584
|
+
}, otherProps, {
|
|
24571
24585
|
ownerState: ownerState,
|
|
24572
|
-
children: /*#__PURE__*/jsxRuntime_1(BreadcrumbCollapsedIcon, {
|
|
24586
|
+
children: /*#__PURE__*/jsxRuntime_1(BreadcrumbCollapsedIcon, _extends({
|
|
24587
|
+
as: slots.CollapsedIcon,
|
|
24573
24588
|
ownerState: ownerState
|
|
24574
|
-
})
|
|
24589
|
+
}, slotProps.collapsedIcon))
|
|
24575
24590
|
}))
|
|
24576
24591
|
});
|
|
24577
24592
|
}
|
|
24578
24593
|
BreadcrumbCollapsed.propTypes = {
|
|
24594
|
+
/**
|
|
24595
|
+
* The props used for the CollapsedIcon slot.
|
|
24596
|
+
* @default {}
|
|
24597
|
+
*/
|
|
24598
|
+
slotProps: PropTypes.shape({
|
|
24599
|
+
collapsedIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
24600
|
+
}),
|
|
24601
|
+
/**
|
|
24602
|
+
* The components used for each slot inside the BreadcumbCollapsed.
|
|
24603
|
+
* Either a string to use a HTML element or a component.
|
|
24604
|
+
* @default {}
|
|
24605
|
+
*/
|
|
24606
|
+
slots: PropTypes.shape({
|
|
24607
|
+
CollapsedIcon: PropTypes.elementType
|
|
24608
|
+
}),
|
|
24579
24609
|
/**
|
|
24580
24610
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
24581
24611
|
*/
|
|
@@ -24588,7 +24618,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24588
24618
|
const breadcrumbsClasses = generateUtilityClasses('MuiBreadcrumbs', ['root', 'ol', 'li', 'separator']);
|
|
24589
24619
|
var breadcrumbsClasses$1 = breadcrumbsClasses;
|
|
24590
24620
|
|
|
24591
|
-
const _excluded$1E = ["children", "className", "component", "expandText", "itemsAfterCollapse", "itemsBeforeCollapse", "maxItems", "separator"];
|
|
24621
|
+
const _excluded$1E = ["children", "className", "component", "slots", "slotProps", "expandText", "itemsAfterCollapse", "itemsBeforeCollapse", "maxItems", "separator"];
|
|
24592
24622
|
const useUtilityClasses$1p = ownerState => {
|
|
24593
24623
|
const {
|
|
24594
24624
|
classes
|
|
@@ -24656,6 +24686,8 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24656
24686
|
children,
|
|
24657
24687
|
className,
|
|
24658
24688
|
component = 'nav',
|
|
24689
|
+
slots = {},
|
|
24690
|
+
slotProps = {},
|
|
24659
24691
|
expandText = 'Show path',
|
|
24660
24692
|
itemsAfterCollapse = 1,
|
|
24661
24693
|
itemsBeforeCollapse = 1,
|
|
@@ -24674,6 +24706,11 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24674
24706
|
separator
|
|
24675
24707
|
});
|
|
24676
24708
|
const classes = useUtilityClasses$1p(ownerState);
|
|
24709
|
+
const collapsedIconSlotProps = useSlotProps({
|
|
24710
|
+
elementType: slots.CollapsedIcon,
|
|
24711
|
+
externalSlotProps: slotProps.collapsedIcon,
|
|
24712
|
+
ownerState
|
|
24713
|
+
});
|
|
24677
24714
|
const listRef = React__namespace.useRef(null);
|
|
24678
24715
|
const renderItemsBeforeAndAfter = allItems => {
|
|
24679
24716
|
const handleClickExpand = () => {
|
|
@@ -24699,6 +24736,12 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24699
24736
|
}
|
|
24700
24737
|
return [...allItems.slice(0, itemsBeforeCollapse), /*#__PURE__*/jsxRuntime_1(BreadcrumbCollapsed, {
|
|
24701
24738
|
"aria-label": expandText,
|
|
24739
|
+
slots: {
|
|
24740
|
+
CollapsedIcon: slots.CollapsedIcon
|
|
24741
|
+
},
|
|
24742
|
+
slotProps: {
|
|
24743
|
+
collapsedIcon: collapsedIconSlotProps
|
|
24744
|
+
},
|
|
24702
24745
|
onClick: handleClickExpand
|
|
24703
24746
|
}, "ellipsis"), ...allItems.slice(allItems.length - itemsAfterCollapse, allItems.length)];
|
|
24704
24747
|
};
|
|
@@ -24779,6 +24822,21 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
24779
24822
|
* @default '/'
|
|
24780
24823
|
*/
|
|
24781
24824
|
separator: PropTypes.node,
|
|
24825
|
+
/**
|
|
24826
|
+
* The props used for each slot inside the Breadcumb.
|
|
24827
|
+
* @default {}
|
|
24828
|
+
*/
|
|
24829
|
+
slotProps: PropTypes.shape({
|
|
24830
|
+
collapsedIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
24831
|
+
}),
|
|
24832
|
+
/**
|
|
24833
|
+
* The components used for each slot inside the Breadcumb.
|
|
24834
|
+
* Either a string to use a HTML element or a component.
|
|
24835
|
+
* @default {}
|
|
24836
|
+
*/
|
|
24837
|
+
slots: PropTypes.shape({
|
|
24838
|
+
CollapsedIcon: PropTypes.elementType
|
|
24839
|
+
}),
|
|
24782
24840
|
/**
|
|
24783
24841
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
24784
24842
|
*/
|
|
@@ -34085,8 +34143,10 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
34085
34143
|
value: childContext,
|
|
34086
34144
|
children: /*#__PURE__*/jsxRuntime_1(ListItemButtonRoot, _extends({
|
|
34087
34145
|
ref: handleRef,
|
|
34088
|
-
href: other.href || other.to
|
|
34089
|
-
|
|
34146
|
+
href: other.href || other.to
|
|
34147
|
+
// `ButtonBase` processes `href` or `to` if `component` is set to 'button'
|
|
34148
|
+
,
|
|
34149
|
+
component: (other.href || other.to) && component === 'div' ? 'button' : component,
|
|
34090
34150
|
focusVisibleClassName: clsx(classes.focusVisible, focusVisibleClassName),
|
|
34091
34151
|
ownerState: ownerState,
|
|
34092
34152
|
className: clsx(classes.root, className)
|
|
@@ -44000,7 +44060,8 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
44000
44060
|
} = props,
|
|
44001
44061
|
other = _objectWithoutPropertiesLoose(props, _excluded$p);
|
|
44002
44062
|
const {
|
|
44003
|
-
disabled
|
|
44063
|
+
disabled,
|
|
44064
|
+
active
|
|
44004
44065
|
} = React__namespace.useContext(StepContext$1);
|
|
44005
44066
|
const {
|
|
44006
44067
|
orientation
|
|
@@ -44024,7 +44085,8 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
44024
44085
|
},
|
|
44025
44086
|
className: clsx(classes.root, className),
|
|
44026
44087
|
ref: ref,
|
|
44027
|
-
ownerState: ownerState
|
|
44088
|
+
ownerState: ownerState,
|
|
44089
|
+
"aria-current": active ? 'step' : undefined
|
|
44028
44090
|
}, other, {
|
|
44029
44091
|
children: child
|
|
44030
44092
|
}));
|
|
@@ -46472,7 +46534,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
46472
46534
|
d: "M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z"
|
|
46473
46535
|
}), 'KeyboardArrowRight');
|
|
46474
46536
|
|
|
46475
|
-
var _LastPageIcon, _FirstPageIcon, _KeyboardArrowRight
|
|
46537
|
+
var _LastPageIcon, _FirstPageIcon, _KeyboardArrowRight, _KeyboardArrowLeft, _KeyboardArrowLeft2, _KeyboardArrowRight2, _FirstPageIcon2, _LastPageIcon2;
|
|
46476
46538
|
const _excluded$a = ["backIconButtonProps", "count", "getItemAriaLabel", "nextIconButtonProps", "onPageChange", "page", "rowsPerPage", "showFirstButton", "showLastButton"];
|
|
46477
46539
|
const TablePaginationActions = /*#__PURE__*/React__namespace.forwardRef(function TablePaginationActions(props, ref) {
|
|
46478
46540
|
const {
|
|
@@ -46516,7 +46578,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
46516
46578
|
"aria-label": getItemAriaLabel('previous', page),
|
|
46517
46579
|
title: getItemAriaLabel('previous', page)
|
|
46518
46580
|
}, backIconButtonProps, {
|
|
46519
|
-
children: theme.direction === 'rtl' ? _KeyboardArrowRight
|
|
46581
|
+
children: theme.direction === 'rtl' ? _KeyboardArrowRight || (_KeyboardArrowRight = /*#__PURE__*/jsxRuntime_1(KeyboardArrowRight, {})) : _KeyboardArrowLeft || (_KeyboardArrowLeft = /*#__PURE__*/jsxRuntime_1(KeyboardArrowLeft, {}))
|
|
46520
46582
|
})), /*#__PURE__*/jsxRuntime_1(IconButton$1, _extends({
|
|
46521
46583
|
onClick: handleNextButtonClick,
|
|
46522
46584
|
disabled: count !== -1 ? page >= Math.ceil(count / rowsPerPage) - 1 : false,
|
|
@@ -47340,8 +47402,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47340
47402
|
const tabScrollButtonClasses = generateUtilityClasses('MuiTabScrollButton', ['root', 'vertical', 'horizontal', 'disabled']);
|
|
47341
47403
|
var tabScrollButtonClasses$1 = tabScrollButtonClasses;
|
|
47342
47404
|
|
|
47343
|
-
|
|
47344
|
-
const _excluded$5 = ["className", "direction", "orientation", "disabled"];
|
|
47405
|
+
const _excluded$5 = ["className", "slots", "slotProps", "direction", "orientation", "disabled"];
|
|
47345
47406
|
const useUtilityClasses$4 = ownerState => {
|
|
47346
47407
|
const {
|
|
47347
47408
|
classes,
|
|
@@ -47379,12 +47440,15 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47379
47440
|
}
|
|
47380
47441
|
}));
|
|
47381
47442
|
const TabScrollButton = /*#__PURE__*/React__namespace.forwardRef(function TabScrollButton(inProps, ref) {
|
|
47443
|
+
var _slots$StartScrollBut, _slots$EndScrollButto;
|
|
47382
47444
|
const props = useThemeProps({
|
|
47383
47445
|
props: inProps,
|
|
47384
47446
|
name: 'MuiTabScrollButton'
|
|
47385
47447
|
});
|
|
47386
47448
|
const {
|
|
47387
47449
|
className,
|
|
47450
|
+
slots = {},
|
|
47451
|
+
slotProps = {},
|
|
47388
47452
|
direction
|
|
47389
47453
|
} = props,
|
|
47390
47454
|
other = _objectWithoutPropertiesLoose(props, _excluded$5);
|
|
@@ -47394,6 +47458,24 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47394
47458
|
isRtl
|
|
47395
47459
|
}, props);
|
|
47396
47460
|
const classes = useUtilityClasses$4(ownerState);
|
|
47461
|
+
const StartButtonIcon = (_slots$StartScrollBut = slots.StartScrollButtonIcon) != null ? _slots$StartScrollBut : KeyboardArrowLeft;
|
|
47462
|
+
const EndButtonIcon = (_slots$EndScrollButto = slots.EndScrollButtonIcon) != null ? _slots$EndScrollButto : KeyboardArrowRight;
|
|
47463
|
+
const startButtonIconProps = useSlotProps({
|
|
47464
|
+
elementType: StartButtonIcon,
|
|
47465
|
+
externalSlotProps: slotProps.startScrollButtonIcon,
|
|
47466
|
+
additionalProps: {
|
|
47467
|
+
fontSize: 'small'
|
|
47468
|
+
},
|
|
47469
|
+
ownerState
|
|
47470
|
+
});
|
|
47471
|
+
const endButtonIconProps = useSlotProps({
|
|
47472
|
+
elementType: EndButtonIcon,
|
|
47473
|
+
externalSlotProps: slotProps.endScrollButtonIcon,
|
|
47474
|
+
additionalProps: {
|
|
47475
|
+
fontSize: 'small'
|
|
47476
|
+
},
|
|
47477
|
+
ownerState
|
|
47478
|
+
});
|
|
47397
47479
|
return /*#__PURE__*/jsxRuntime_1(TabScrollButtonRoot, _extends({
|
|
47398
47480
|
component: "div",
|
|
47399
47481
|
className: clsx(classes.root, className),
|
|
@@ -47402,11 +47484,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47402
47484
|
ownerState: ownerState,
|
|
47403
47485
|
tabIndex: null
|
|
47404
47486
|
}, other, {
|
|
47405
|
-
children: direction === 'left' ?
|
|
47406
|
-
fontSize: "small"
|
|
47407
|
-
})) : _KeyboardArrowRight || (_KeyboardArrowRight = /*#__PURE__*/jsxRuntime_1(KeyboardArrowRight, {
|
|
47408
|
-
fontSize: "small"
|
|
47409
|
-
}))
|
|
47487
|
+
children: direction === 'left' ? /*#__PURE__*/jsxRuntime_1(StartButtonIcon, _extends({}, startButtonIconProps)) : /*#__PURE__*/jsxRuntime_1(EndButtonIcon, _extends({}, endButtonIconProps))
|
|
47410
47488
|
}));
|
|
47411
47489
|
});
|
|
47412
47490
|
TabScrollButton.propTypes /* remove-proptypes */ = {
|
|
@@ -47439,6 +47517,23 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47439
47517
|
* The component orientation (layout flow direction).
|
|
47440
47518
|
*/
|
|
47441
47519
|
orientation: PropTypes.oneOf(['horizontal', 'vertical']).isRequired,
|
|
47520
|
+
/**
|
|
47521
|
+
* The extra props for the slot components.
|
|
47522
|
+
* You can override the existing props or add new ones.
|
|
47523
|
+
* @default {}
|
|
47524
|
+
*/
|
|
47525
|
+
slotProps: PropTypes.shape({
|
|
47526
|
+
endScrollButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
47527
|
+
startScrollButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
47528
|
+
}),
|
|
47529
|
+
/**
|
|
47530
|
+
* The components used for each slot inside.
|
|
47531
|
+
* @default {}
|
|
47532
|
+
*/
|
|
47533
|
+
slots: PropTypes.shape({
|
|
47534
|
+
EndScrollButtonIcon: PropTypes.elementType,
|
|
47535
|
+
StartScrollButtonIcon: PropTypes.elementType
|
|
47536
|
+
}),
|
|
47442
47537
|
/**
|
|
47443
47538
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
47444
47539
|
*/
|
|
@@ -47452,7 +47547,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47452
47547
|
const tabsClasses = generateUtilityClasses('MuiTabs', ['root', 'vertical', 'flexContainer', 'flexContainerVertical', 'centered', 'scroller', 'fixed', 'scrollableX', 'scrollableY', 'hideScrollbar', 'scrollButtons', 'scrollButtonsHideMobile', 'indicator']);
|
|
47453
47548
|
var tabsClasses$1 = tabsClasses;
|
|
47454
47549
|
|
|
47455
|
-
const _excluded$4 = ["aria-label", "aria-labelledby", "action", "centered", "children", "className", "component", "allowScrollButtonsMobile", "indicatorColor", "onChange", "orientation", "ScrollButtonComponent", "scrollButtons", "selectionFollowsFocus", "TabIndicatorProps", "TabScrollButtonProps", "textColor", "value", "variant", "visibleScrollbar"];
|
|
47550
|
+
const _excluded$4 = ["aria-label", "aria-labelledby", "action", "centered", "children", "className", "component", "allowScrollButtonsMobile", "indicatorColor", "onChange", "orientation", "ScrollButtonComponent", "scrollButtons", "selectionFollowsFocus", "slots", "slotProps", "TabIndicatorProps", "TabScrollButtonProps", "textColor", "value", "variant", "visibleScrollbar"];
|
|
47456
47551
|
const nextItem = (list, item) => {
|
|
47457
47552
|
if (list === item) {
|
|
47458
47553
|
return list.firstChild;
|
|
@@ -47658,6 +47753,8 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47658
47753
|
ScrollButtonComponent = TabScrollButton$1,
|
|
47659
47754
|
scrollButtons = 'auto',
|
|
47660
47755
|
selectionFollowsFocus,
|
|
47756
|
+
slots = {},
|
|
47757
|
+
slotProps = {},
|
|
47661
47758
|
TabIndicatorProps = {},
|
|
47662
47759
|
TabScrollButtonProps = {},
|
|
47663
47760
|
textColor = 'primary',
|
|
@@ -47691,6 +47788,16 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47691
47788
|
scrollButtonsHideMobile: !allowScrollButtonsMobile
|
|
47692
47789
|
});
|
|
47693
47790
|
const classes = useUtilityClasses$3(ownerState);
|
|
47791
|
+
const startScrollButtonIconProps = useSlotProps({
|
|
47792
|
+
elementType: slots.StartScrollButtonIcon,
|
|
47793
|
+
externalSlotProps: slotProps.startScrollButtonIcon,
|
|
47794
|
+
ownerState
|
|
47795
|
+
});
|
|
47796
|
+
const endScrollButtonIconProps = useSlotProps({
|
|
47797
|
+
elementType: slots.EndScrollButtonIcon,
|
|
47798
|
+
externalSlotProps: slotProps.endScrollButtonIcon,
|
|
47799
|
+
ownerState
|
|
47800
|
+
});
|
|
47694
47801
|
{
|
|
47695
47802
|
if (centered && scrollable) {
|
|
47696
47803
|
console.error('MUI: You can not use the `centered={true}` and `variant="scrollable"` properties ' + 'at the same time on a `Tabs` component.');
|
|
@@ -47855,6 +47962,12 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47855
47962
|
const scrollButtonsActive = displayScroll.start || displayScroll.end;
|
|
47856
47963
|
const showScrollButtons = scrollable && (scrollButtons === 'auto' && scrollButtonsActive || scrollButtons === true);
|
|
47857
47964
|
conditionalElements.scrollButtonStart = showScrollButtons ? /*#__PURE__*/jsxRuntime_1(ScrollButtonComponent, _extends({
|
|
47965
|
+
slots: {
|
|
47966
|
+
StartScrollButtonIcon: slots.StartScrollButtonIcon
|
|
47967
|
+
},
|
|
47968
|
+
slotProps: {
|
|
47969
|
+
startScrollButtonIcon: startScrollButtonIconProps
|
|
47970
|
+
},
|
|
47858
47971
|
orientation: orientation,
|
|
47859
47972
|
direction: isRtl ? 'right' : 'left',
|
|
47860
47973
|
onClick: handleStartScrollClick,
|
|
@@ -47863,6 +47976,12 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
47863
47976
|
className: clsx(classes.scrollButtons, TabScrollButtonProps.className)
|
|
47864
47977
|
})) : null;
|
|
47865
47978
|
conditionalElements.scrollButtonEnd = showScrollButtons ? /*#__PURE__*/jsxRuntime_1(ScrollButtonComponent, _extends({
|
|
47979
|
+
slots: {
|
|
47980
|
+
EndScrollButtonIcon: slots.EndScrollButtonIcon
|
|
47981
|
+
},
|
|
47982
|
+
slotProps: {
|
|
47983
|
+
endScrollButtonIcon: endScrollButtonIconProps
|
|
47984
|
+
},
|
|
47866
47985
|
orientation: orientation,
|
|
47867
47986
|
direction: isRtl ? 'left' : 'right',
|
|
47868
47987
|
onClick: handleEndScrollClick,
|
|
@@ -48162,6 +48281,23 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
48162
48281
|
* changes on activation.
|
|
48163
48282
|
*/
|
|
48164
48283
|
selectionFollowsFocus: PropTypes.bool,
|
|
48284
|
+
/**
|
|
48285
|
+
* The extra props for the slot components.
|
|
48286
|
+
* You can override the existing props or add new ones.
|
|
48287
|
+
* @default {}
|
|
48288
|
+
*/
|
|
48289
|
+
slotProps: PropTypes.shape({
|
|
48290
|
+
endScrollButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
48291
|
+
startScrollButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
48292
|
+
}),
|
|
48293
|
+
/**
|
|
48294
|
+
* The components used for each slot inside.
|
|
48295
|
+
* @default {}
|
|
48296
|
+
*/
|
|
48297
|
+
slots: PropTypes.shape({
|
|
48298
|
+
EndScrollButtonIcon: PropTypes.elementType,
|
|
48299
|
+
StartScrollButtonIcon: PropTypes.elementType
|
|
48300
|
+
}),
|
|
48165
48301
|
/**
|
|
48166
48302
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
48167
48303
|
*/
|