@mui/material 5.15.13 → 5.15.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/Accordion/Accordion.js +30 -23
- package/AccordionActions/AccordionActions.js +14 -12
- package/AccordionDetails/AccordionDetails.js +2 -2
- package/AccordionSummary/AccordionSummary.js +29 -23
- package/Autocomplete/Autocomplete.d.ts +1 -1
- package/Autocomplete/Autocomplete.js +59 -33
- package/Autocomplete/autocompleteClasses.d.ts +3 -3
- package/CHANGELOG.md +116 -60
- package/CircularProgress/CircularProgress.d.ts +1 -1
- package/CircularProgress/CircularProgress.js +1 -1
- package/Icon/Icon.d.ts +1 -1
- package/Icon/Icon.js +1 -1
- package/OverridableComponent.d.ts +1 -1
- package/Popper/Popper.d.ts +3 -26
- package/README.md +2 -2
- package/Select/Select.d.ts +8 -20
- package/Slider/Slider.js +404 -223
- package/SvgIcon/SvgIcon.js +1 -1
- package/index.js +1 -1
- package/legacy/Accordion/Accordion.js +33 -22
- package/legacy/AccordionActions/AccordionActions.js +17 -14
- package/legacy/AccordionDetails/AccordionDetails.js +2 -2
- package/legacy/AccordionSummary/AccordionSummary.js +31 -22
- package/legacy/Autocomplete/Autocomplete.js +132 -113
- package/legacy/CircularProgress/CircularProgress.js +1 -1
- package/legacy/Icon/Icon.js +1 -1
- package/legacy/Slider/Slider.js +373 -191
- package/legacy/SvgIcon/SvgIcon.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/styles/experimental_extendTheme.js +1 -1
- package/legacy/styles/rootShouldForwardProp.js +5 -0
- package/legacy/styles/slotShouldForwardProp.js +5 -0
- package/legacy/styles/styled.js +4 -5
- package/legacy/usePagination/usePagination.js +1 -1
- package/modern/Accordion/Accordion.js +30 -23
- package/modern/AccordionActions/AccordionActions.js +14 -12
- package/modern/AccordionDetails/AccordionDetails.js +2 -2
- package/modern/AccordionSummary/AccordionSummary.js +29 -23
- package/modern/Autocomplete/Autocomplete.js +59 -33
- package/modern/CircularProgress/CircularProgress.js +1 -1
- package/modern/Icon/Icon.js +1 -1
- package/modern/Slider/Slider.js +337 -172
- package/modern/SvgIcon/SvgIcon.js +1 -1
- package/modern/index.js +1 -1
- package/modern/styles/experimental_extendTheme.js +1 -1
- package/modern/styles/rootShouldForwardProp.js +3 -0
- package/modern/styles/slotShouldForwardProp.js +5 -0
- package/modern/styles/styled.js +4 -3
- package/modern/usePagination/usePagination.js +1 -1
- package/node/Accordion/Accordion.js +32 -25
- package/node/AccordionActions/AccordionActions.js +16 -14
- package/node/AccordionDetails/AccordionDetails.js +4 -4
- package/node/AccordionSummary/AccordionSummary.js +33 -27
- package/node/Autocomplete/Autocomplete.js +71 -45
- package/node/CircularProgress/CircularProgress.js +1 -1
- package/node/Icon/Icon.js +1 -1
- package/node/Slider/Slider.js +414 -233
- package/node/SvgIcon/SvgIcon.js +1 -1
- package/node/index.js +1 -1
- package/node/styles/experimental_extendTheme.js +1 -1
- package/node/styles/rootShouldForwardProp.js +10 -0
- package/node/styles/slotShouldForwardProp.js +11 -0
- package/node/styles/styled.js +17 -8
- package/node/usePagination/usePagination.js +1 -1
- package/package.json +6 -6
- package/styles/experimental_extendTheme.js +1 -1
- package/styles/rootShouldForwardProp.d.ts +2 -0
- package/styles/rootShouldForwardProp.js +3 -0
- package/styles/slotShouldForwardProp.d.ts +2 -0
- package/styles/slotShouldForwardProp.js +5 -0
- package/styles/styled.d.ts +2 -3
- package/styles/styled.js +4 -3
- package/umd/material-ui.development.js +822 -582
- package/umd/material-ui.production.min.js +2 -2
- package/usePagination/usePagination.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/material v5.15.
|
|
2
|
+
* @mui/material v5.15.14
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -7169,7 +7169,7 @@
|
|
|
7169
7169
|
return resolveProps(theme.components[name].defaultProps, props);
|
|
7170
7170
|
}
|
|
7171
7171
|
|
|
7172
|
-
function useThemeProps$
|
|
7172
|
+
function useThemeProps$c(_ref) {
|
|
7173
7173
|
var props = _ref.props,
|
|
7174
7174
|
name = _ref.name,
|
|
7175
7175
|
defaultTheme = _ref.defaultTheme,
|
|
@@ -8738,7 +8738,7 @@
|
|
|
8738
8738
|
// do nothing if mode does not change
|
|
8739
8739
|
return currentState;
|
|
8740
8740
|
}
|
|
8741
|
-
var newMode =
|
|
8741
|
+
var newMode = mode != null ? mode : defaultMode;
|
|
8742
8742
|
try {
|
|
8743
8743
|
localStorage.setItem(modeStorageKey, newMode);
|
|
8744
8744
|
} catch (e) {
|
|
@@ -8819,11 +8819,17 @@
|
|
|
8819
8819
|
});
|
|
8820
8820
|
}
|
|
8821
8821
|
}, [joinedColorSchemes, colorSchemeStorageKey, defaultLightColorScheme, defaultDarkColorScheme]);
|
|
8822
|
-
var handleMediaQuery = React__namespace.useCallback(function (
|
|
8822
|
+
var handleMediaQuery = React__namespace.useCallback(function (event) {
|
|
8823
8823
|
if (state.mode === 'system') {
|
|
8824
8824
|
setState(function (currentState) {
|
|
8825
|
+
var systemMode = event != null && event.matches ? 'dark' : 'light';
|
|
8826
|
+
|
|
8827
|
+
// Early exit, nothing changed.
|
|
8828
|
+
if (currentState.systemMode === systemMode) {
|
|
8829
|
+
return currentState;
|
|
8830
|
+
}
|
|
8825
8831
|
return _extends({}, currentState, {
|
|
8826
|
-
systemMode:
|
|
8832
|
+
systemMode: systemMode
|
|
8827
8833
|
});
|
|
8828
8834
|
});
|
|
8829
8835
|
}
|
|
@@ -8844,36 +8850,36 @@
|
|
|
8844
8850
|
media.addListener(handler);
|
|
8845
8851
|
handler(media);
|
|
8846
8852
|
return function () {
|
|
8847
|
-
|
|
8853
|
+
media.removeListener(handler);
|
|
8848
8854
|
};
|
|
8849
8855
|
}, []);
|
|
8850
8856
|
|
|
8851
8857
|
// Handle when localStorage has changed
|
|
8852
8858
|
React__namespace.useEffect(function () {
|
|
8853
|
-
|
|
8854
|
-
var
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
8860
|
-
|
|
8859
|
+
if (storageWindow) {
|
|
8860
|
+
var handleStorage = function handleStorage(event) {
|
|
8861
|
+
var value = event.newValue;
|
|
8862
|
+
if (typeof event.key === 'string' && event.key.startsWith(colorSchemeStorageKey) && (!value || joinedColorSchemes.match(value))) {
|
|
8863
|
+
// If the key is deleted, value will be null then reset color scheme to the default one.
|
|
8864
|
+
if (event.key.endsWith('light')) {
|
|
8865
|
+
setColorScheme({
|
|
8866
|
+
light: value
|
|
8867
|
+
});
|
|
8868
|
+
}
|
|
8869
|
+
if (event.key.endsWith('dark')) {
|
|
8870
|
+
setColorScheme({
|
|
8871
|
+
dark: value
|
|
8872
|
+
});
|
|
8873
|
+
}
|
|
8861
8874
|
}
|
|
8862
|
-
if (event.key
|
|
8863
|
-
|
|
8864
|
-
dark: value
|
|
8865
|
-
});
|
|
8875
|
+
if (event.key === modeStorageKey && (!value || ['light', 'dark', 'system'].includes(value))) {
|
|
8876
|
+
setMode(value || defaultMode);
|
|
8866
8877
|
}
|
|
8867
|
-
}
|
|
8868
|
-
if (event.key === modeStorageKey && (!value || ['light', 'dark', 'system'].includes(value))) {
|
|
8869
|
-
setMode(value || defaultMode);
|
|
8870
|
-
}
|
|
8871
|
-
};
|
|
8872
|
-
if (storageWindow) {
|
|
8878
|
+
};
|
|
8873
8879
|
// For syncing color-scheme changes between iframes
|
|
8874
8880
|
storageWindow.addEventListener('storage', handleStorage);
|
|
8875
8881
|
return function () {
|
|
8876
|
-
|
|
8882
|
+
storageWindow.removeEventListener('storage', handleStorage);
|
|
8877
8883
|
};
|
|
8878
8884
|
}
|
|
8879
8885
|
return undefined;
|
|
@@ -8917,53 +8923,53 @@
|
|
|
8917
8923
|
}
|
|
8918
8924
|
return value;
|
|
8919
8925
|
};
|
|
8920
|
-
function CssVarsProvider(
|
|
8921
|
-
var children =
|
|
8922
|
-
|
|
8923
|
-
themeProp =
|
|
8924
|
-
|
|
8925
|
-
modeStorageKey =
|
|
8926
|
-
|
|
8927
|
-
colorSchemeStorageKey =
|
|
8928
|
-
|
|
8929
|
-
attribute =
|
|
8930
|
-
|
|
8931
|
-
defaultMode =
|
|
8932
|
-
|
|
8933
|
-
defaultColorScheme =
|
|
8934
|
-
|
|
8935
|
-
disableTransitionOnChange =
|
|
8936
|
-
|
|
8937
|
-
storageWindow =
|
|
8938
|
-
|
|
8939
|
-
documentNode =
|
|
8940
|
-
|
|
8941
|
-
colorSchemeNode =
|
|
8942
|
-
|
|
8943
|
-
colorSchemeSelector =
|
|
8944
|
-
|
|
8945
|
-
disableNestedContext =
|
|
8946
|
-
|
|
8947
|
-
disableStyleSheetGeneration =
|
|
8926
|
+
function CssVarsProvider(props) {
|
|
8927
|
+
var children = props.children,
|
|
8928
|
+
_props$theme = props.theme,
|
|
8929
|
+
themeProp = _props$theme === void 0 ? defaultTheme : _props$theme,
|
|
8930
|
+
_props$modeStorageKey = props.modeStorageKey,
|
|
8931
|
+
modeStorageKey = _props$modeStorageKey === void 0 ? defaultModeStorageKey : _props$modeStorageKey,
|
|
8932
|
+
_props$colorSchemeSto = props.colorSchemeStorageKey,
|
|
8933
|
+
colorSchemeStorageKey = _props$colorSchemeSto === void 0 ? defaultColorSchemeStorageKey : _props$colorSchemeSto,
|
|
8934
|
+
_props$attribute = props.attribute,
|
|
8935
|
+
attribute = _props$attribute === void 0 ? defaultAttribute : _props$attribute,
|
|
8936
|
+
_props$defaultMode = props.defaultMode,
|
|
8937
|
+
defaultMode = _props$defaultMode === void 0 ? designSystemMode : _props$defaultMode,
|
|
8938
|
+
_props$defaultColorSc = props.defaultColorScheme,
|
|
8939
|
+
defaultColorScheme = _props$defaultColorSc === void 0 ? designSystemColorScheme : _props$defaultColorSc,
|
|
8940
|
+
_props$disableTransit = props.disableTransitionOnChange,
|
|
8941
|
+
disableTransitionOnChange = _props$disableTransit === void 0 ? designSystemTransitionOnChange : _props$disableTransit,
|
|
8942
|
+
_props$storageWindow = props.storageWindow,
|
|
8943
|
+
storageWindow = _props$storageWindow === void 0 ? typeof window === 'undefined' ? undefined : window : _props$storageWindow,
|
|
8944
|
+
_props$documentNode = props.documentNode,
|
|
8945
|
+
documentNode = _props$documentNode === void 0 ? typeof document === 'undefined' ? undefined : document : _props$documentNode,
|
|
8946
|
+
_props$colorSchemeNod = props.colorSchemeNode,
|
|
8947
|
+
colorSchemeNode = _props$colorSchemeNod === void 0 ? typeof document === 'undefined' ? undefined : document.documentElement : _props$colorSchemeNod,
|
|
8948
|
+
_props$colorSchemeSel = props.colorSchemeSelector,
|
|
8949
|
+
colorSchemeSelector = _props$colorSchemeSel === void 0 ? ':root' : _props$colorSchemeSel,
|
|
8950
|
+
_props$disableNestedC = props.disableNestedContext,
|
|
8951
|
+
disableNestedContext = _props$disableNestedC === void 0 ? false : _props$disableNestedC,
|
|
8952
|
+
_props$disableStyleSh = props.disableStyleSheetGeneration,
|
|
8953
|
+
disableStyleSheetGeneration = _props$disableStyleSh === void 0 ? false : _props$disableStyleSh;
|
|
8948
8954
|
var hasMounted = React__namespace.useRef(false);
|
|
8949
8955
|
var upperTheme = useTheme$1();
|
|
8950
8956
|
var ctx = React__namespace.useContext(ColorSchemeContext);
|
|
8951
8957
|
var nested = !!ctx && !disableNestedContext;
|
|
8952
8958
|
var scopedTheme = themeProp[themeId];
|
|
8953
|
-
var
|
|
8954
|
-
|
|
8955
|
-
colorSchemes =
|
|
8956
|
-
|
|
8957
|
-
components =
|
|
8958
|
-
|
|
8959
|
-
generateCssVars =
|
|
8959
|
+
var _ref = scopedTheme || themeProp,
|
|
8960
|
+
_ref$colorSchemes = _ref.colorSchemes,
|
|
8961
|
+
colorSchemes = _ref$colorSchemes === void 0 ? {} : _ref$colorSchemes,
|
|
8962
|
+
_ref$components = _ref.components,
|
|
8963
|
+
components = _ref$components === void 0 ? {} : _ref$components,
|
|
8964
|
+
_ref$generateCssVars = _ref.generateCssVars,
|
|
8965
|
+
generateCssVars = _ref$generateCssVars === void 0 ? function () {
|
|
8960
8966
|
return {
|
|
8961
8967
|
vars: {},
|
|
8962
8968
|
css: {}
|
|
8963
8969
|
};
|
|
8964
|
-
} :
|
|
8965
|
-
cssVarPrefix =
|
|
8966
|
-
restThemeProp = _objectWithoutProperties(
|
|
8970
|
+
} : _ref$generateCssVars,
|
|
8971
|
+
cssVarPrefix = _ref.cssVarPrefix,
|
|
8972
|
+
restThemeProp = _objectWithoutProperties(_ref, ["colorSchemes", "components", "generateCssVars", "cssVarPrefix"]);
|
|
8967
8973
|
var allColorSchemes = Object.keys(colorSchemes);
|
|
8968
8974
|
var defaultLightColorScheme = typeof defaultColorScheme === 'string' ? defaultColorScheme : defaultColorScheme.light;
|
|
8969
8975
|
var defaultDarkColorScheme = typeof defaultColorScheme === 'string' ? defaultColorScheme : defaultColorScheme.dark;
|
|
@@ -9032,10 +9038,10 @@
|
|
|
9032
9038
|
// The other color schemes uses selector, default as data attribute, to increase the CSS specificity so that they can override the default color scheme stylesheet.
|
|
9033
9039
|
var defaultColorSchemeStyleSheet = {};
|
|
9034
9040
|
var otherColorSchemesStyleSheet = {};
|
|
9035
|
-
Object.entries(colorSchemes).forEach(function (
|
|
9036
|
-
var
|
|
9037
|
-
key =
|
|
9038
|
-
scheme =
|
|
9041
|
+
Object.entries(colorSchemes).forEach(function (_ref2) {
|
|
9042
|
+
var _ref3 = _slicedToArray(_ref2, 2),
|
|
9043
|
+
key = _ref3[0],
|
|
9044
|
+
scheme = _ref3[1];
|
|
9039
9045
|
var _generateCssVars2 = generateCssVars(key),
|
|
9040
9046
|
css = _generateCssVars2.css,
|
|
9041
9047
|
vars = _generateCssVars2.vars;
|
|
@@ -9117,14 +9123,14 @@
|
|
|
9117
9123
|
}, []);
|
|
9118
9124
|
var contextValue = React__namespace.useMemo(function () {
|
|
9119
9125
|
return {
|
|
9120
|
-
|
|
9121
|
-
systemMode: systemMode,
|
|
9122
|
-
setMode: setMode,
|
|
9123
|
-
lightColorScheme: lightColorScheme,
|
|
9124
|
-
darkColorScheme: darkColorScheme,
|
|
9126
|
+
allColorSchemes: allColorSchemes,
|
|
9125
9127
|
colorScheme: colorScheme,
|
|
9128
|
+
darkColorScheme: darkColorScheme,
|
|
9129
|
+
lightColorScheme: lightColorScheme,
|
|
9130
|
+
mode: mode,
|
|
9126
9131
|
setColorScheme: setColorScheme,
|
|
9127
|
-
|
|
9132
|
+
setMode: setMode,
|
|
9133
|
+
systemMode: systemMode
|
|
9128
9134
|
};
|
|
9129
9135
|
}, [allColorSchemes, colorScheme, darkColorScheme, lightColorScheme, mode, setColorScheme, setMode, systemMode]);
|
|
9130
9136
|
var shouldGenerateStyleSheet = true;
|
|
@@ -9476,7 +9482,7 @@
|
|
|
9476
9482
|
}
|
|
9477
9483
|
});
|
|
9478
9484
|
var useThemePropsDefault$2 = function useThemePropsDefault(inProps) {
|
|
9479
|
-
return useThemeProps$
|
|
9485
|
+
return useThemeProps$c({
|
|
9480
9486
|
props: inProps,
|
|
9481
9487
|
name: 'MuiContainer',
|
|
9482
9488
|
defaultTheme: defaultTheme$6
|
|
@@ -9864,7 +9870,7 @@
|
|
|
9864
9870
|
}
|
|
9865
9871
|
});
|
|
9866
9872
|
function useThemePropsDefault$1(props) {
|
|
9867
|
-
return useThemeProps$
|
|
9873
|
+
return useThemeProps$c({
|
|
9868
9874
|
props: props,
|
|
9869
9875
|
name: 'MuiGrid',
|
|
9870
9876
|
defaultTheme: defaultTheme$5
|
|
@@ -10031,7 +10037,7 @@
|
|
|
10031
10037
|
}
|
|
10032
10038
|
});
|
|
10033
10039
|
function useThemePropsDefault(props) {
|
|
10034
|
-
return useThemeProps$
|
|
10040
|
+
return useThemeProps$c({
|
|
10035
10041
|
props: props,
|
|
10036
10042
|
name: 'MuiStack',
|
|
10037
10043
|
defaultTheme: defaultTheme$4
|
|
@@ -11073,10 +11079,10 @@
|
|
|
11073
11079
|
return theme[THEME_ID] || theme;
|
|
11074
11080
|
}
|
|
11075
11081
|
|
|
11076
|
-
function useThemeProps$
|
|
11082
|
+
function useThemeProps$b(_ref) {
|
|
11077
11083
|
var props = _ref.props,
|
|
11078
11084
|
name = _ref.name;
|
|
11079
|
-
return useThemeProps$
|
|
11085
|
+
return useThemeProps$c({
|
|
11080
11086
|
props: props,
|
|
11081
11087
|
name: name,
|
|
11082
11088
|
defaultTheme: defaultTheme$3,
|
|
@@ -11084,14 +11090,20 @@
|
|
|
11084
11090
|
});
|
|
11085
11091
|
}
|
|
11086
11092
|
|
|
11093
|
+
// copied from @mui/system/createStyled
|
|
11094
|
+
function slotShouldForwardProp(prop) {
|
|
11095
|
+
return prop !== 'ownerState' && prop !== 'theme' && prop !== 'sx' && prop !== 'as';
|
|
11096
|
+
}
|
|
11097
|
+
|
|
11087
11098
|
var rootShouldForwardProp = function rootShouldForwardProp(prop) {
|
|
11088
|
-
return
|
|
11099
|
+
return slotShouldForwardProp(prop) && prop !== 'classes';
|
|
11089
11100
|
};
|
|
11090
|
-
var
|
|
11101
|
+
var rootShouldForwardProp$1 = rootShouldForwardProp;
|
|
11102
|
+
|
|
11091
11103
|
var styled = createStyled({
|
|
11092
11104
|
themeId: THEME_ID,
|
|
11093
11105
|
defaultTheme: defaultTheme$3,
|
|
11094
|
-
rootShouldForwardProp: rootShouldForwardProp
|
|
11106
|
+
rootShouldForwardProp: rootShouldForwardProp$1
|
|
11095
11107
|
});
|
|
11096
11108
|
var styled$1 = styled;
|
|
11097
11109
|
|
|
@@ -11175,7 +11187,7 @@
|
|
|
11175
11187
|
if (!("".concat(key, "Channel") in obj)) {
|
|
11176
11188
|
// custom channel token is not provided, generate one.
|
|
11177
11189
|
// if channel token can't be generated, show a warning.
|
|
11178
|
-
obj["".concat(key, "Channel")] = private_safeColorChannel(toRgb(obj[key]), "MUI: Can't create `palette.".concat(key, "Channel` because `palette.").concat(key, "` is not one of these formats: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().") + '\n' + "To suppress this warning, you need to explicitly provide the `palette.".concat(key, "Channel` as a string (in rgb format,
|
|
11190
|
+
obj["".concat(key, "Channel")] = private_safeColorChannel(toRgb(obj[key]), "MUI: Can't create `palette.".concat(key, "Channel` because `palette.").concat(key, "` is not one of these formats: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color().") + '\n' + "To suppress this warning, you need to explicitly provide the `palette.".concat(key, "Channel` as a string (in rgb format, for example \"12 12 12\") or undefined if you want to remove the channel token."));
|
|
11179
11191
|
}
|
|
11180
11192
|
}
|
|
11181
11193
|
var silent = function silent(fn) {
|
|
@@ -11549,7 +11561,7 @@
|
|
|
11549
11561
|
height: '1em',
|
|
11550
11562
|
display: 'inline-block',
|
|
11551
11563
|
// the <svg> will define the property that has `currentColor`
|
|
11552
|
-
//
|
|
11564
|
+
// for example heroicons uses fill="none" and stroke="currentColor"
|
|
11553
11565
|
fill: ownerState.hasSvgAsChild ? undefined : 'currentColor',
|
|
11554
11566
|
flexShrink: 0,
|
|
11555
11567
|
transition: (_theme$transitions = theme.transitions) == null || (_theme$transitions$cr = _theme$transitions.create) == null ? void 0 : _theme$transitions$cr.call(_theme$transitions, 'fill', {
|
|
@@ -11570,7 +11582,7 @@
|
|
|
11570
11582
|
};
|
|
11571
11583
|
});
|
|
11572
11584
|
var SvgIcon = /*#__PURE__*/React__namespace.forwardRef(function SvgIcon(inProps, ref) {
|
|
11573
|
-
var props = useThemeProps$
|
|
11585
|
+
var props = useThemeProps$b({
|
|
11574
11586
|
props: inProps,
|
|
11575
11587
|
name: 'MuiSvgIcon'
|
|
11576
11588
|
});
|
|
@@ -11727,6 +11739,11 @@
|
|
|
11727
11739
|
return _arrayWithHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableRest();
|
|
11728
11740
|
}
|
|
11729
11741
|
|
|
11742
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
11743
|
+
function createUseThemeProps(name) {
|
|
11744
|
+
return useThemeProps$b;
|
|
11745
|
+
}
|
|
11746
|
+
|
|
11730
11747
|
function _setPrototypeOf(o, p) {
|
|
11731
11748
|
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
11732
11749
|
o.__proto__ = p;
|
|
@@ -12814,7 +12831,7 @@
|
|
|
12814
12831
|
* It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
|
|
12815
12832
|
*/
|
|
12816
12833
|
var Collapse = /*#__PURE__*/React__namespace.forwardRef(function Collapse(inProps, ref) {
|
|
12817
|
-
var props = useThemeProps$
|
|
12834
|
+
var props = useThemeProps$b({
|
|
12818
12835
|
props: inProps,
|
|
12819
12836
|
name: 'MuiCollapse'
|
|
12820
12837
|
});
|
|
@@ -13144,7 +13161,7 @@
|
|
|
13144
13161
|
}));
|
|
13145
13162
|
});
|
|
13146
13163
|
var Paper = /*#__PURE__*/React__namespace.forwardRef(function Paper(inProps, ref) {
|
|
13147
|
-
var props = useThemeProps$
|
|
13164
|
+
var props = useThemeProps$b({
|
|
13148
13165
|
props: inProps,
|
|
13149
13166
|
name: 'MuiPaper'
|
|
13150
13167
|
});
|
|
@@ -13521,6 +13538,7 @@
|
|
|
13521
13538
|
var accordionClasses = generateUtilityClasses$1('MuiAccordion', ['root', 'rounded', 'expanded', 'disabled', 'gutters', 'region']);
|
|
13522
13539
|
var accordionClasses$1 = accordionClasses;
|
|
13523
13540
|
|
|
13541
|
+
var useThemeProps$a = createUseThemeProps();
|
|
13524
13542
|
var useUtilityClasses$1L = function useUtilityClasses(ownerState) {
|
|
13525
13543
|
var classes = ownerState.classes,
|
|
13526
13544
|
square = ownerState.square,
|
|
@@ -13585,29 +13603,40 @@
|
|
|
13585
13603
|
backgroundColor: (theme.vars || theme).palette.action.disabledBackground
|
|
13586
13604
|
});
|
|
13587
13605
|
}, function (_ref4) {
|
|
13588
|
-
var theme = _ref4.theme
|
|
13589
|
-
|
|
13590
|
-
|
|
13591
|
-
|
|
13592
|
-
|
|
13593
|
-
|
|
13594
|
-
|
|
13595
|
-
|
|
13596
|
-
|
|
13597
|
-
|
|
13598
|
-
|
|
13599
|
-
|
|
13600
|
-
|
|
13601
|
-
|
|
13602
|
-
|
|
13606
|
+
var theme = _ref4.theme;
|
|
13607
|
+
return {
|
|
13608
|
+
variants: [{
|
|
13609
|
+
props: function props(_props) {
|
|
13610
|
+
return !_props.square;
|
|
13611
|
+
},
|
|
13612
|
+
style: {
|
|
13613
|
+
borderRadius: 0,
|
|
13614
|
+
'&:first-of-type': {
|
|
13615
|
+
borderTopLeftRadius: (theme.vars || theme).shape.borderRadius,
|
|
13616
|
+
borderTopRightRadius: (theme.vars || theme).shape.borderRadius
|
|
13617
|
+
},
|
|
13618
|
+
'&:last-of-type': {
|
|
13619
|
+
borderBottomLeftRadius: (theme.vars || theme).shape.borderRadius,
|
|
13620
|
+
borderBottomRightRadius: (theme.vars || theme).shape.borderRadius,
|
|
13621
|
+
// Fix a rendering issue on Edge
|
|
13622
|
+
'@supports (-ms-ime-align: auto)': {
|
|
13623
|
+
borderBottomLeftRadius: 0,
|
|
13624
|
+
borderBottomRightRadius: 0
|
|
13625
|
+
}
|
|
13626
|
+
}
|
|
13603
13627
|
}
|
|
13604
|
-
}
|
|
13605
|
-
|
|
13606
|
-
|
|
13607
|
-
|
|
13628
|
+
}, {
|
|
13629
|
+
props: function props(_props2) {
|
|
13630
|
+
return !_props2.disableGutters;
|
|
13631
|
+
},
|
|
13632
|
+
style: _defineProperty({}, "&.".concat(accordionClasses$1.expanded), {
|
|
13633
|
+
margin: '16px 0'
|
|
13634
|
+
})
|
|
13635
|
+
}]
|
|
13636
|
+
};
|
|
13608
13637
|
});
|
|
13609
13638
|
var Accordion = /*#__PURE__*/React__namespace.forwardRef(function Accordion(inProps, ref) {
|
|
13610
|
-
var props = useThemeProps$
|
|
13639
|
+
var props = useThemeProps$a({
|
|
13611
13640
|
props: inProps,
|
|
13612
13641
|
name: 'MuiAccordion'
|
|
13613
13642
|
});
|
|
@@ -13801,6 +13830,7 @@
|
|
|
13801
13830
|
var accordionActionsClasses = generateUtilityClasses$1('MuiAccordionActions', ['root', 'spacing']);
|
|
13802
13831
|
var accordionActionsClasses$1 = accordionActionsClasses;
|
|
13803
13832
|
|
|
13833
|
+
var useThemeProps$9 = createUseThemeProps();
|
|
13804
13834
|
var useUtilityClasses$1K = function useUtilityClasses(ownerState) {
|
|
13805
13835
|
var classes = ownerState.classes,
|
|
13806
13836
|
disableSpacing = ownerState.disableSpacing;
|
|
@@ -13816,21 +13846,24 @@
|
|
|
13816
13846
|
var ownerState = props.ownerState;
|
|
13817
13847
|
return [styles.root, !ownerState.disableSpacing && styles.spacing];
|
|
13818
13848
|
}
|
|
13819
|
-
})(
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
|
|
13824
|
-
|
|
13825
|
-
|
|
13826
|
-
|
|
13827
|
-
|
|
13828
|
-
|
|
13849
|
+
})({
|
|
13850
|
+
display: 'flex',
|
|
13851
|
+
alignItems: 'center',
|
|
13852
|
+
padding: 8,
|
|
13853
|
+
justifyContent: 'flex-end',
|
|
13854
|
+
variants: [{
|
|
13855
|
+
props: function props(_props) {
|
|
13856
|
+
return !_props.disableSpacing;
|
|
13857
|
+
},
|
|
13858
|
+
style: {
|
|
13859
|
+
'& > :not(style) ~ :not(style)': {
|
|
13860
|
+
marginLeft: 8
|
|
13861
|
+
}
|
|
13829
13862
|
}
|
|
13830
|
-
}
|
|
13863
|
+
}]
|
|
13831
13864
|
});
|
|
13832
13865
|
var AccordionActions = /*#__PURE__*/React__namespace.forwardRef(function AccordionActions(inProps, ref) {
|
|
13833
|
-
var props = useThemeProps$
|
|
13866
|
+
var props = useThemeProps$9({
|
|
13834
13867
|
props: inProps,
|
|
13835
13868
|
name: 'MuiAccordionActions'
|
|
13836
13869
|
});
|
|
@@ -13883,6 +13916,7 @@
|
|
|
13883
13916
|
var accordionDetailsClasses = generateUtilityClasses$1('MuiAccordionDetails', ['root']);
|
|
13884
13917
|
var accordionDetailsClasses$1 = accordionDetailsClasses;
|
|
13885
13918
|
|
|
13919
|
+
var useThemeProps$8 = createUseThemeProps();
|
|
13886
13920
|
var useUtilityClasses$1J = function useUtilityClasses(ownerState) {
|
|
13887
13921
|
var classes = ownerState.classes;
|
|
13888
13922
|
var slots = {
|
|
@@ -13903,7 +13937,7 @@
|
|
|
13903
13937
|
};
|
|
13904
13938
|
});
|
|
13905
13939
|
var AccordionDetails = /*#__PURE__*/React__namespace.forwardRef(function AccordionDetails(inProps, ref) {
|
|
13906
|
-
var props = useThemeProps$
|
|
13940
|
+
var props = useThemeProps$8({
|
|
13907
13941
|
props: inProps,
|
|
13908
13942
|
name: 'MuiAccordionDetails'
|
|
13909
13943
|
});
|
|
@@ -14083,7 +14117,7 @@
|
|
|
14083
14117
|
* TODO v5: Make private
|
|
14084
14118
|
*/
|
|
14085
14119
|
var TouchRipple = /*#__PURE__*/React__namespace.forwardRef(function TouchRipple(inProps, ref) {
|
|
14086
|
-
var props = useThemeProps$
|
|
14120
|
+
var props = useThemeProps$b({
|
|
14087
14121
|
props: inProps,
|
|
14088
14122
|
name: 'MuiTouchRipple'
|
|
14089
14123
|
});
|
|
@@ -14359,7 +14393,7 @@
|
|
|
14359
14393
|
* It contains a load of style reset and some focus/ripple logic.
|
|
14360
14394
|
*/
|
|
14361
14395
|
var ButtonBase = /*#__PURE__*/React__namespace.forwardRef(function ButtonBase(inProps, ref) {
|
|
14362
|
-
var props = useThemeProps$
|
|
14396
|
+
var props = useThemeProps$b({
|
|
14363
14397
|
props: inProps,
|
|
14364
14398
|
name: 'MuiButtonBase'
|
|
14365
14399
|
});
|
|
@@ -14770,6 +14804,7 @@
|
|
|
14770
14804
|
var accordionSummaryClasses = generateUtilityClasses$1('MuiAccordionSummary', ['root', 'expanded', 'focusVisible', 'disabled', 'gutters', 'contentGutters', 'content', 'expandIconWrapper']);
|
|
14771
14805
|
var accordionSummaryClasses$1 = accordionSummaryClasses;
|
|
14772
14806
|
|
|
14807
|
+
var useThemeProps$7 = createUseThemeProps();
|
|
14773
14808
|
var useUtilityClasses$1H = function useUtilityClasses(ownerState) {
|
|
14774
14809
|
var classes = ownerState.classes,
|
|
14775
14810
|
expanded = ownerState.expanded,
|
|
@@ -14790,12 +14825,11 @@
|
|
|
14790
14825
|
return styles.root;
|
|
14791
14826
|
}
|
|
14792
14827
|
})(function (_ref) {
|
|
14793
|
-
var theme = _ref.theme
|
|
14794
|
-
ownerState = _ref.ownerState;
|
|
14828
|
+
var theme = _ref.theme;
|
|
14795
14829
|
var transition = {
|
|
14796
14830
|
duration: theme.transitions.duration.shortest
|
|
14797
14831
|
};
|
|
14798
|
-
return
|
|
14832
|
+
return _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
14799
14833
|
display: 'flex',
|
|
14800
14834
|
minHeight: 48,
|
|
14801
14835
|
padding: theme.spacing(0, 2),
|
|
@@ -14806,9 +14840,14 @@
|
|
|
14806
14840
|
opacity: (theme.vars || theme).palette.action.disabledOpacity
|
|
14807
14841
|
}), "&:hover:not(.".concat(accordionSummaryClasses$1.disabled, ")"), {
|
|
14808
14842
|
cursor: 'pointer'
|
|
14809
|
-
}),
|
|
14810
|
-
|
|
14811
|
-
|
|
14843
|
+
}), "variants", [{
|
|
14844
|
+
props: function props(_props) {
|
|
14845
|
+
return !_props.disableGutters;
|
|
14846
|
+
},
|
|
14847
|
+
style: _defineProperty({}, "&.".concat(accordionSummaryClasses$1.expanded), {
|
|
14848
|
+
minHeight: 64
|
|
14849
|
+
})
|
|
14850
|
+
}]);
|
|
14812
14851
|
});
|
|
14813
14852
|
var AccordionSummaryContent = styled$1('div', {
|
|
14814
14853
|
name: 'MuiAccordionSummary',
|
|
@@ -14817,19 +14856,24 @@
|
|
|
14817
14856
|
return styles.content;
|
|
14818
14857
|
}
|
|
14819
14858
|
})(function (_ref3) {
|
|
14820
|
-
var theme = _ref3.theme
|
|
14821
|
-
|
|
14822
|
-
return _extends({
|
|
14859
|
+
var theme = _ref3.theme;
|
|
14860
|
+
return {
|
|
14823
14861
|
display: 'flex',
|
|
14824
14862
|
flexGrow: 1,
|
|
14825
|
-
margin: '12px 0'
|
|
14826
|
-
|
|
14827
|
-
|
|
14828
|
-
|
|
14829
|
-
|
|
14830
|
-
|
|
14831
|
-
|
|
14832
|
-
|
|
14863
|
+
margin: '12px 0',
|
|
14864
|
+
variants: [{
|
|
14865
|
+
props: function props(_props2) {
|
|
14866
|
+
return !_props2.disableGutters;
|
|
14867
|
+
},
|
|
14868
|
+
style: _defineProperty({
|
|
14869
|
+
transition: theme.transitions.create(['margin'], {
|
|
14870
|
+
duration: theme.transitions.duration.shortest
|
|
14871
|
+
})
|
|
14872
|
+
}, "&.".concat(accordionSummaryClasses$1.expanded), {
|
|
14873
|
+
margin: '20px 0'
|
|
14874
|
+
})
|
|
14875
|
+
}]
|
|
14876
|
+
};
|
|
14833
14877
|
});
|
|
14834
14878
|
var AccordionSummaryExpandIconWrapper = styled$1('div', {
|
|
14835
14879
|
name: 'MuiAccordionSummary',
|
|
@@ -14837,8 +14881,8 @@
|
|
|
14837
14881
|
overridesResolver: function overridesResolver(props, styles) {
|
|
14838
14882
|
return styles.expandIconWrapper;
|
|
14839
14883
|
}
|
|
14840
|
-
})(function (
|
|
14841
|
-
var theme =
|
|
14884
|
+
})(function (_ref4) {
|
|
14885
|
+
var theme = _ref4.theme;
|
|
14842
14886
|
return _defineProperty({
|
|
14843
14887
|
display: 'flex',
|
|
14844
14888
|
color: (theme.vars || theme).palette.action.active,
|
|
@@ -14851,7 +14895,7 @@
|
|
|
14851
14895
|
});
|
|
14852
14896
|
});
|
|
14853
14897
|
var AccordionSummary = /*#__PURE__*/React__namespace.forwardRef(function AccordionSummary(inProps, ref) {
|
|
14854
|
-
var props = useThemeProps$
|
|
14898
|
+
var props = useThemeProps$7({
|
|
14855
14899
|
props: inProps,
|
|
14856
14900
|
name: 'MuiAccordionSummary'
|
|
14857
14901
|
});
|
|
@@ -14945,11 +14989,6 @@
|
|
|
14945
14989
|
} ;
|
|
14946
14990
|
var AccordionSummary$1 = AccordionSummary;
|
|
14947
14991
|
|
|
14948
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
14949
|
-
function createUseThemeProps(name) {
|
|
14950
|
-
return useThemeProps$5;
|
|
14951
|
-
}
|
|
14952
|
-
|
|
14953
14992
|
function getAlertUtilityClass(slot) {
|
|
14954
14993
|
return generateUtilityClass$1('MuiAlert', slot);
|
|
14955
14994
|
}
|
|
@@ -15043,7 +15082,7 @@
|
|
|
15043
15082
|
* regarding the available icon options.
|
|
15044
15083
|
*/
|
|
15045
15084
|
var IconButton = /*#__PURE__*/React__namespace.forwardRef(function IconButton(inProps, ref) {
|
|
15046
|
-
var props = useThemeProps$
|
|
15085
|
+
var props = useThemeProps$b({
|
|
15047
15086
|
props: inProps,
|
|
15048
15087
|
name: 'MuiIconButton'
|
|
15049
15088
|
});
|
|
@@ -15170,7 +15209,7 @@
|
|
|
15170
15209
|
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"
|
|
15171
15210
|
}), 'Close');
|
|
15172
15211
|
|
|
15173
|
-
var useThemeProps$
|
|
15212
|
+
var useThemeProps$6 = createUseThemeProps();
|
|
15174
15213
|
var useUtilityClasses$1F = function useUtilityClasses(ownerState) {
|
|
15175
15214
|
var variant = ownerState.variant,
|
|
15176
15215
|
color = ownerState.color,
|
|
@@ -15318,7 +15357,7 @@
|
|
|
15318
15357
|
})
|
|
15319
15358
|
};
|
|
15320
15359
|
var Alert = /*#__PURE__*/React__namespace.forwardRef(function Alert(inProps, ref) {
|
|
15321
|
-
var props = useThemeProps$
|
|
15360
|
+
var props = useThemeProps$6({
|
|
15322
15361
|
props: inProps,
|
|
15323
15362
|
name: 'MuiAlert'
|
|
15324
15363
|
});
|
|
@@ -15603,7 +15642,7 @@
|
|
|
15603
15642
|
return colorTransformations$1[color] || color;
|
|
15604
15643
|
};
|
|
15605
15644
|
var Typography = /*#__PURE__*/React__namespace.forwardRef(function Typography(inProps, ref) {
|
|
15606
|
-
var themeProps = useThemeProps$
|
|
15645
|
+
var themeProps = useThemeProps$b({
|
|
15607
15646
|
props: inProps,
|
|
15608
15647
|
name: 'MuiTypography'
|
|
15609
15648
|
});
|
|
@@ -15729,7 +15768,7 @@
|
|
|
15729
15768
|
var alertTitleClasses = generateUtilityClasses$1('MuiAlertTitle', ['root']);
|
|
15730
15769
|
var alertTitleClasses$1 = alertTitleClasses;
|
|
15731
15770
|
|
|
15732
|
-
var useThemeProps$
|
|
15771
|
+
var useThemeProps$5 = createUseThemeProps();
|
|
15733
15772
|
var useUtilityClasses$1D = function useUtilityClasses(ownerState) {
|
|
15734
15773
|
var classes = ownerState.classes;
|
|
15735
15774
|
var slots = {
|
|
@@ -15751,7 +15790,7 @@
|
|
|
15751
15790
|
};
|
|
15752
15791
|
});
|
|
15753
15792
|
var AlertTitle = /*#__PURE__*/React__namespace.forwardRef(function AlertTitle(inProps, ref) {
|
|
15754
|
-
var props = useThemeProps$
|
|
15793
|
+
var props = useThemeProps$5({
|
|
15755
15794
|
props: inProps,
|
|
15756
15795
|
name: 'MuiAlertTitle'
|
|
15757
15796
|
});
|
|
@@ -15889,7 +15928,7 @@
|
|
|
15889
15928
|
}));
|
|
15890
15929
|
});
|
|
15891
15930
|
var AppBar = /*#__PURE__*/React__namespace.forwardRef(function AppBar(inProps, ref) {
|
|
15892
|
-
var props = useThemeProps$
|
|
15931
|
+
var props = useThemeProps$b({
|
|
15893
15932
|
props: inProps,
|
|
15894
15933
|
name: 'MuiAppBar'
|
|
15895
15934
|
});
|
|
@@ -16422,7 +16461,7 @@
|
|
|
16422
16461
|
doc.addEventListener('keydown', loopFocus, true);
|
|
16423
16462
|
|
|
16424
16463
|
// With Edge, Safari and Firefox, no focus related events are fired when the focused area stops being a focused area.
|
|
16425
|
-
//
|
|
16464
|
+
// for example https://bugzilla.mozilla.org/show_bug.cgi?id=559561.
|
|
16426
16465
|
// Instead, we can look if the active element was restored on the BODY element.
|
|
16427
16466
|
//
|
|
16428
16467
|
// The whatwg spec defines how the browser should behave but does not explicitly mention any events:
|
|
@@ -20841,7 +20880,7 @@
|
|
|
20841
20880
|
React__namespace.useEffect(function () {
|
|
20842
20881
|
if (!inputRef.current || inputRef.current.nodeName !== 'INPUT') {
|
|
20843
20882
|
if (inputRef.current && inputRef.current.nodeName === 'TEXTAREA') {
|
|
20844
|
-
console.warn(["A textarea element was provided to ".concat(componentName, " where input was expected."), "This is not a supported scenario but it may work under certain conditions.", "A textarea keyboard navigation may conflict with Autocomplete controls (
|
|
20883
|
+
console.warn(["A textarea element was provided to ".concat(componentName, " where input was expected."), "This is not a supported scenario but it may work under certain conditions.", "A textarea keyboard navigation may conflict with Autocomplete controls (for example enter and arrow keys).", "Make sure to test keyboard navigation and add custom event handlers if necessary."].join('\n'));
|
|
20845
20884
|
} else {
|
|
20846
20885
|
console.error(["MUI: Unable to find the input element. It was resolved to ".concat(inputRef.current, " while an HTMLInputElement was expected."), "Instead, ".concat(componentName, " expects an input element."), '', componentName === 'useAutocomplete' ? 'Make sure you have bound getInputProps correctly and that the normal ref/effect resolutions order is guaranteed.' : 'Make sure you have customized the input component correctly.'].join('\n'));
|
|
20847
20886
|
}
|
|
@@ -21406,7 +21445,7 @@
|
|
|
21406
21445
|
var Popper = /*#__PURE__*/React__namespace.forwardRef(function Popper(inProps, ref) {
|
|
21407
21446
|
var _slots$root;
|
|
21408
21447
|
var theme = useTheme$3();
|
|
21409
|
-
var props = useThemeProps$
|
|
21448
|
+
var props = useThemeProps$b({
|
|
21410
21449
|
props: inProps,
|
|
21411
21450
|
name: 'MuiPopper'
|
|
21412
21451
|
});
|
|
@@ -21631,7 +21670,7 @@
|
|
|
21631
21670
|
});
|
|
21632
21671
|
});
|
|
21633
21672
|
var ListSubheader = /*#__PURE__*/React__namespace.forwardRef(function ListSubheader(inProps, ref) {
|
|
21634
|
-
var props = useThemeProps$
|
|
21673
|
+
var props = useThemeProps$b({
|
|
21635
21674
|
props: inProps,
|
|
21636
21675
|
name: 'MuiListSubheader'
|
|
21637
21676
|
});
|
|
@@ -21930,7 +21969,7 @@
|
|
|
21930
21969
|
* Chips represent complex entities in small blocks, such as a contact.
|
|
21931
21970
|
*/
|
|
21932
21971
|
var Chip = /*#__PURE__*/React__namespace.forwardRef(function Chip(inProps, ref) {
|
|
21933
|
-
var props = useThemeProps$
|
|
21972
|
+
var props = useThemeProps$b({
|
|
21934
21973
|
props: inProps,
|
|
21935
21974
|
name: 'MuiChip'
|
|
21936
21975
|
});
|
|
@@ -22418,7 +22457,7 @@
|
|
|
22418
22457
|
*/
|
|
22419
22458
|
var InputBase = /*#__PURE__*/React__namespace.forwardRef(function InputBase(inProps, ref) {
|
|
22420
22459
|
var _slotProps$input;
|
|
22421
|
-
var props = useThemeProps$
|
|
22460
|
+
var props = useThemeProps$b({
|
|
22422
22461
|
props: inProps,
|
|
22423
22462
|
name: 'MuiInputBase'
|
|
22424
22463
|
});
|
|
@@ -22957,7 +22996,8 @@
|
|
|
22957
22996
|
var autocompleteClasses = generateUtilityClasses$1('MuiAutocomplete', ['root', 'expanded', 'fullWidth', 'focused', 'focusVisible', 'tag', 'tagSizeSmall', 'tagSizeMedium', 'hasPopupIcon', 'hasClearIcon', 'inputRoot', 'input', 'inputFocused', 'endAdornment', 'clearIndicator', 'popupIndicator', 'popupIndicatorOpen', 'popper', 'popperDisablePortal', 'paper', 'listbox', 'loading', 'noOptions', 'option', 'groupLabel', 'groupUl']);
|
|
22958
22997
|
var autocompleteClasses$1 = autocompleteClasses;
|
|
22959
22998
|
|
|
22960
|
-
var _ClearIcon, _ArrowDropDownIcon;
|
|
22999
|
+
var _styled, _ClearIcon, _ArrowDropDownIcon;
|
|
23000
|
+
var useThemeProps$4 = createUseThemeProps();
|
|
22961
23001
|
var useUtilityClasses$1x = function useUtilityClasses(ownerState) {
|
|
22962
23002
|
var classes = ownerState.classes,
|
|
22963
23003
|
disablePortal = ownerState.disablePortal,
|
|
@@ -23000,89 +23040,100 @@
|
|
|
23000
23040
|
size = ownerState.size;
|
|
23001
23041
|
return [_defineProperty({}, "& .".concat(autocompleteClasses$1.tag), styles.tag), _defineProperty({}, "& .".concat(autocompleteClasses$1.tag), styles["tagSize".concat(capitalize(size))]), _defineProperty({}, "& .".concat(autocompleteClasses$1.inputRoot), styles.inputRoot), _defineProperty({}, "& .".concat(autocompleteClasses$1.input), styles.input), _defineProperty({}, "& .".concat(autocompleteClasses$1.input), inputFocused && styles.inputFocused), styles.root, fullWidth && styles.fullWidth, hasPopupIcon && styles.hasPopupIcon, hasClearIcon && styles.hasClearIcon];
|
|
23002
23042
|
}
|
|
23003
|
-
})(
|
|
23004
|
-
|
|
23005
|
-
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23043
|
+
})((_styled = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_styled, "&.".concat(autocompleteClasses$1.focused, " .").concat(autocompleteClasses$1.clearIndicator), {
|
|
23044
|
+
visibility: 'visible'
|
|
23045
|
+
}), '@media (pointer: fine)', _defineProperty({}, "&:hover .".concat(autocompleteClasses$1.clearIndicator), {
|
|
23046
|
+
visibility: 'visible'
|
|
23047
|
+
})), "& .".concat(autocompleteClasses$1.tag), {
|
|
23048
|
+
margin: 3,
|
|
23049
|
+
maxWidth: 'calc(100% - 6px)'
|
|
23050
|
+
}), "& .".concat(autocompleteClasses$1.inputRoot), _defineProperty(_defineProperty(_defineProperty({
|
|
23051
|
+
flexWrap: 'wrap'
|
|
23052
|
+
}, ".".concat(autocompleteClasses$1.hasPopupIcon, "&, .").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23053
|
+
paddingRight: 26 + 4
|
|
23054
|
+
}), ".".concat(autocompleteClasses$1.hasPopupIcon, ".").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23055
|
+
paddingRight: 52 + 4
|
|
23056
|
+
}), "& .".concat(autocompleteClasses$1.input), {
|
|
23057
|
+
width: 0,
|
|
23058
|
+
minWidth: 30
|
|
23059
|
+
})), "& .".concat(inputClasses$1.root), {
|
|
23060
|
+
paddingBottom: 1,
|
|
23061
|
+
'& .MuiInput-input': {
|
|
23062
|
+
padding: '4px 4px 4px 0px'
|
|
23063
|
+
}
|
|
23064
|
+
}), "& .".concat(inputClasses$1.root, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({}, "& .".concat(inputClasses$1.input), {
|
|
23065
|
+
padding: '2px 4px 3px 0'
|
|
23066
|
+
})), "& .".concat(outlinedInputClasses$1.root), _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
23067
|
+
padding: 9
|
|
23068
|
+
}, ".".concat(autocompleteClasses$1.hasPopupIcon, "&, .").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23069
|
+
paddingRight: 26 + 4 + 9
|
|
23070
|
+
}), ".".concat(autocompleteClasses$1.hasPopupIcon, ".").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23071
|
+
paddingRight: 52 + 4 + 9
|
|
23072
|
+
}), "& .".concat(autocompleteClasses$1.input), {
|
|
23073
|
+
padding: '7.5px 4px 7.5px 5px'
|
|
23074
|
+
}), "& .".concat(autocompleteClasses$1.endAdornment), {
|
|
23075
|
+
right: 9
|
|
23076
|
+
})), "& .".concat(outlinedInputClasses$1.root, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({
|
|
23077
|
+
// Don't specify paddingRight, as it overrides the default value set when there is only
|
|
23078
|
+
// one of the popup or clear icon as the specificity is equal so the latter one wins
|
|
23079
|
+
paddingTop: 6,
|
|
23080
|
+
paddingBottom: 6,
|
|
23081
|
+
paddingLeft: 6
|
|
23082
|
+
}, "& .".concat(autocompleteClasses$1.input), {
|
|
23083
|
+
padding: '2.5px 4px 2.5px 8px'
|
|
23084
|
+
})), "& .".concat(filledInputClasses$1.root), _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
23085
|
+
paddingTop: 19,
|
|
23086
|
+
paddingLeft: 8
|
|
23087
|
+
}, ".".concat(autocompleteClasses$1.hasPopupIcon, "&, .").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23088
|
+
paddingRight: 26 + 4 + 9
|
|
23089
|
+
}), ".".concat(autocompleteClasses$1.hasPopupIcon, ".").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23090
|
+
paddingRight: 52 + 4 + 9
|
|
23091
|
+
}), "& .".concat(filledInputClasses$1.input), {
|
|
23092
|
+
padding: '7px 4px'
|
|
23093
|
+
}), "& .".concat(autocompleteClasses$1.endAdornment), {
|
|
23094
|
+
right: 9
|
|
23095
|
+
})), "& .".concat(filledInputClasses$1.root, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({
|
|
23096
|
+
paddingBottom: 1
|
|
23097
|
+
}, "& .".concat(filledInputClasses$1.input), {
|
|
23098
|
+
padding: '2.5px 4px'
|
|
23099
|
+
})), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_styled, "& .".concat(inputBaseClasses$1.hiddenLabel), {
|
|
23100
|
+
paddingTop: 8
|
|
23101
|
+
}), "& .".concat(filledInputClasses$1.root, ".").concat(inputBaseClasses$1.hiddenLabel), _defineProperty({
|
|
23102
|
+
paddingTop: 0,
|
|
23103
|
+
paddingBottom: 0
|
|
23104
|
+
}, "& .".concat(autocompleteClasses$1.input), {
|
|
23105
|
+
paddingTop: 16,
|
|
23106
|
+
paddingBottom: 17
|
|
23107
|
+
})), "& .".concat(filledInputClasses$1.root, ".").concat(inputBaseClasses$1.hiddenLabel, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({}, "& .".concat(autocompleteClasses$1.input), {
|
|
23108
|
+
paddingTop: 8,
|
|
23109
|
+
paddingBottom: 9
|
|
23110
|
+
})), "& .".concat(autocompleteClasses$1.input), {
|
|
23111
|
+
flexGrow: 1,
|
|
23112
|
+
textOverflow: 'ellipsis',
|
|
23113
|
+
opacity: 0
|
|
23114
|
+
}), "variants", [{
|
|
23115
|
+
props: {
|
|
23116
|
+
fullWidth: true
|
|
23117
|
+
},
|
|
23118
|
+
style: {
|
|
23011
23119
|
width: '100%'
|
|
23012
|
-
}
|
|
23013
|
-
|
|
23014
|
-
|
|
23015
|
-
|
|
23120
|
+
}
|
|
23121
|
+
}, {
|
|
23122
|
+
props: {
|
|
23123
|
+
size: 'small'
|
|
23124
|
+
},
|
|
23125
|
+
style: _defineProperty({}, "& .".concat(autocompleteClasses$1.tag), {
|
|
23016
23126
|
margin: 2,
|
|
23017
23127
|
maxWidth: 'calc(100% - 4px)'
|
|
23018
|
-
})
|
|
23019
|
-
|
|
23020
|
-
|
|
23021
|
-
|
|
23022
|
-
}
|
|
23023
|
-
|
|
23024
|
-
}), "& .".concat(autocompleteClasses$1.input), {
|
|
23025
|
-
width: 0,
|
|
23026
|
-
minWidth: 30
|
|
23027
|
-
})), "& .".concat(inputClasses$1.root), {
|
|
23028
|
-
paddingBottom: 1,
|
|
23029
|
-
'& .MuiInput-input': {
|
|
23030
|
-
padding: '4px 4px 4px 0px'
|
|
23031
|
-
}
|
|
23032
|
-
}), "& .".concat(inputClasses$1.root, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({}, "& .".concat(inputClasses$1.input), {
|
|
23033
|
-
padding: '2px 4px 3px 0'
|
|
23034
|
-
})), "& .".concat(outlinedInputClasses$1.root), _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
23035
|
-
padding: 9
|
|
23036
|
-
}, ".".concat(autocompleteClasses$1.hasPopupIcon, "&, .").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23037
|
-
paddingRight: 26 + 4 + 9
|
|
23038
|
-
}), ".".concat(autocompleteClasses$1.hasPopupIcon, ".").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23039
|
-
paddingRight: 52 + 4 + 9
|
|
23040
|
-
}), "& .".concat(autocompleteClasses$1.input), {
|
|
23041
|
-
padding: '7.5px 4px 7.5px 5px'
|
|
23042
|
-
}), "& .".concat(autocompleteClasses$1.endAdornment), {
|
|
23043
|
-
right: 9
|
|
23044
|
-
})), "& .".concat(outlinedInputClasses$1.root, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({
|
|
23045
|
-
// Don't specify paddingRight, as it overrides the default value set when there is only
|
|
23046
|
-
// one of the popup or clear icon as the specificity is equal so the latter one wins
|
|
23047
|
-
paddingTop: 6,
|
|
23048
|
-
paddingBottom: 6,
|
|
23049
|
-
paddingLeft: 6
|
|
23050
|
-
}, "& .".concat(autocompleteClasses$1.input), {
|
|
23051
|
-
padding: '2.5px 4px 2.5px 8px'
|
|
23052
|
-
})), "& .".concat(filledInputClasses$1.root), _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
23053
|
-
paddingTop: 19,
|
|
23054
|
-
paddingLeft: 8
|
|
23055
|
-
}, ".".concat(autocompleteClasses$1.hasPopupIcon, "&, .").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23056
|
-
paddingRight: 26 + 4 + 9
|
|
23057
|
-
}), ".".concat(autocompleteClasses$1.hasPopupIcon, ".").concat(autocompleteClasses$1.hasClearIcon, "&"), {
|
|
23058
|
-
paddingRight: 52 + 4 + 9
|
|
23059
|
-
}), "& .".concat(filledInputClasses$1.input), {
|
|
23060
|
-
padding: '7px 4px'
|
|
23061
|
-
}), "& .".concat(autocompleteClasses$1.endAdornment), {
|
|
23062
|
-
right: 9
|
|
23063
|
-
})), "& .".concat(filledInputClasses$1.root, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({
|
|
23064
|
-
paddingBottom: 1
|
|
23065
|
-
}, "& .".concat(filledInputClasses$1.input), {
|
|
23066
|
-
padding: '2.5px 4px'
|
|
23067
|
-
})), "& .".concat(inputBaseClasses$1.hiddenLabel), {
|
|
23068
|
-
paddingTop: 8
|
|
23069
|
-
}), "& .".concat(filledInputClasses$1.root, ".").concat(inputBaseClasses$1.hiddenLabel), _defineProperty({
|
|
23070
|
-
paddingTop: 0,
|
|
23071
|
-
paddingBottom: 0
|
|
23072
|
-
}, "& .".concat(autocompleteClasses$1.input), {
|
|
23073
|
-
paddingTop: 16,
|
|
23074
|
-
paddingBottom: 17
|
|
23075
|
-
})), _defineProperty(_defineProperty(_extends3, "& .".concat(filledInputClasses$1.root, ".").concat(inputBaseClasses$1.hiddenLabel, ".").concat(inputBaseClasses$1.sizeSmall), _defineProperty({}, "& .".concat(autocompleteClasses$1.input), {
|
|
23076
|
-
paddingTop: 8,
|
|
23077
|
-
paddingBottom: 9
|
|
23078
|
-
})), "& .".concat(autocompleteClasses$1.input), _extends({
|
|
23079
|
-
flexGrow: 1,
|
|
23080
|
-
textOverflow: 'ellipsis',
|
|
23081
|
-
opacity: 0
|
|
23082
|
-
}, ownerState.inputFocused && {
|
|
23128
|
+
})
|
|
23129
|
+
}, {
|
|
23130
|
+
props: {
|
|
23131
|
+
inputFocused: true
|
|
23132
|
+
},
|
|
23133
|
+
style: _defineProperty({}, "& .".concat(autocompleteClasses$1.input), {
|
|
23083
23134
|
opacity: 1
|
|
23084
|
-
})
|
|
23085
|
-
});
|
|
23135
|
+
})
|
|
23136
|
+
}])));
|
|
23086
23137
|
var AutocompleteEndAdornment = styled$1('div', {
|
|
23087
23138
|
name: 'MuiAutocomplete',
|
|
23088
23139
|
slot: 'EndAdornment',
|
|
@@ -23110,18 +23161,21 @@
|
|
|
23110
23161
|
var AutocompletePopupIndicator = styled$1(IconButton$1, {
|
|
23111
23162
|
name: 'MuiAutocomplete',
|
|
23112
23163
|
slot: 'PopupIndicator',
|
|
23113
|
-
overridesResolver: function overridesResolver(
|
|
23114
|
-
var ownerState =
|
|
23164
|
+
overridesResolver: function overridesResolver(_ref6, styles) {
|
|
23165
|
+
var ownerState = _ref6.ownerState;
|
|
23115
23166
|
return _extends({}, styles.popupIndicator, ownerState.popupOpen && styles.popupIndicatorOpen);
|
|
23116
23167
|
}
|
|
23117
|
-
})(
|
|
23118
|
-
|
|
23119
|
-
|
|
23120
|
-
|
|
23121
|
-
|
|
23122
|
-
|
|
23123
|
-
|
|
23124
|
-
|
|
23168
|
+
})({
|
|
23169
|
+
padding: 2,
|
|
23170
|
+
marginRight: -2,
|
|
23171
|
+
variants: [{
|
|
23172
|
+
props: {
|
|
23173
|
+
popupOpen: true
|
|
23174
|
+
},
|
|
23175
|
+
style: {
|
|
23176
|
+
transform: 'rotate(180deg)'
|
|
23177
|
+
}
|
|
23178
|
+
}]
|
|
23125
23179
|
});
|
|
23126
23180
|
var AutocompletePopper = styled$1(Popper$1, {
|
|
23127
23181
|
name: 'MuiAutocomplete',
|
|
@@ -23130,14 +23184,19 @@
|
|
|
23130
23184
|
var ownerState = props.ownerState;
|
|
23131
23185
|
return [_defineProperty({}, "& .".concat(autocompleteClasses$1.option), styles.option), styles.popper, ownerState.disablePortal && styles.popperDisablePortal];
|
|
23132
23186
|
}
|
|
23133
|
-
})(function (
|
|
23134
|
-
var theme =
|
|
23135
|
-
|
|
23136
|
-
|
|
23137
|
-
|
|
23138
|
-
|
|
23139
|
-
|
|
23140
|
-
|
|
23187
|
+
})(function (_ref8) {
|
|
23188
|
+
var theme = _ref8.theme;
|
|
23189
|
+
return {
|
|
23190
|
+
zIndex: (theme.vars || theme).zIndex.modal,
|
|
23191
|
+
variants: [{
|
|
23192
|
+
props: {
|
|
23193
|
+
disablePortal: true
|
|
23194
|
+
},
|
|
23195
|
+
style: {
|
|
23196
|
+
position: 'absolute'
|
|
23197
|
+
}
|
|
23198
|
+
}]
|
|
23199
|
+
};
|
|
23141
23200
|
});
|
|
23142
23201
|
var AutocompletePaper = styled$1(Paper$1, {
|
|
23143
23202
|
name: 'MuiAutocomplete',
|
|
@@ -23145,8 +23204,8 @@
|
|
|
23145
23204
|
overridesResolver: function overridesResolver(props, styles) {
|
|
23146
23205
|
return styles.paper;
|
|
23147
23206
|
}
|
|
23148
|
-
})(function (
|
|
23149
|
-
var theme =
|
|
23207
|
+
})(function (_ref9) {
|
|
23208
|
+
var theme = _ref9.theme;
|
|
23150
23209
|
return _extends({}, theme.typography.body1, {
|
|
23151
23210
|
overflow: 'auto'
|
|
23152
23211
|
});
|
|
@@ -23157,8 +23216,8 @@
|
|
|
23157
23216
|
overridesResolver: function overridesResolver(props, styles) {
|
|
23158
23217
|
return styles.loading;
|
|
23159
23218
|
}
|
|
23160
|
-
})(function (
|
|
23161
|
-
var theme =
|
|
23219
|
+
})(function (_ref10) {
|
|
23220
|
+
var theme = _ref10.theme;
|
|
23162
23221
|
return {
|
|
23163
23222
|
color: (theme.vars || theme).palette.text.secondary,
|
|
23164
23223
|
padding: '14px 16px'
|
|
@@ -23170,8 +23229,8 @@
|
|
|
23170
23229
|
overridesResolver: function overridesResolver(props, styles) {
|
|
23171
23230
|
return styles.noOptions;
|
|
23172
23231
|
}
|
|
23173
|
-
})(function (
|
|
23174
|
-
var theme =
|
|
23232
|
+
})(function (_ref11) {
|
|
23233
|
+
var theme = _ref11.theme;
|
|
23175
23234
|
return {
|
|
23176
23235
|
color: (theme.vars || theme).palette.text.secondary,
|
|
23177
23236
|
padding: '14px 16px'
|
|
@@ -23183,8 +23242,8 @@
|
|
|
23183
23242
|
overridesResolver: function overridesResolver(props, styles) {
|
|
23184
23243
|
return styles.listbox;
|
|
23185
23244
|
}
|
|
23186
|
-
})(function (
|
|
23187
|
-
var theme =
|
|
23245
|
+
})(function (_ref12) {
|
|
23246
|
+
var theme = _ref12.theme;
|
|
23188
23247
|
return _defineProperty({
|
|
23189
23248
|
listStyle: 'none',
|
|
23190
23249
|
margin: 0,
|
|
@@ -23237,8 +23296,8 @@
|
|
|
23237
23296
|
overridesResolver: function overridesResolver(props, styles) {
|
|
23238
23297
|
return styles.groupLabel;
|
|
23239
23298
|
}
|
|
23240
|
-
})(function (
|
|
23241
|
-
var theme =
|
|
23299
|
+
})(function (_ref14) {
|
|
23300
|
+
var theme = _ref14.theme;
|
|
23242
23301
|
return {
|
|
23243
23302
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
|
23244
23303
|
top: -8
|
|
@@ -23257,7 +23316,7 @@
|
|
|
23257
23316
|
}));
|
|
23258
23317
|
var Autocomplete = /*#__PURE__*/React__namespace.forwardRef(function Autocomplete(inProps, ref) {
|
|
23259
23318
|
var _slotProps$clearIndic, _slotProps$paper, _slotProps$popper, _slotProps$popupIndic;
|
|
23260
|
-
var props = useThemeProps$
|
|
23319
|
+
var props = useThemeProps$4({
|
|
23261
23320
|
props: inProps,
|
|
23262
23321
|
name: 'MuiAutocomplete'
|
|
23263
23322
|
});
|
|
@@ -23385,8 +23444,8 @@
|
|
|
23385
23444
|
var hasPopupIcon = (!freeSolo || forcePopupIcon === true) && forcePopupIcon !== false;
|
|
23386
23445
|
var _getInputProps = getInputProps(),
|
|
23387
23446
|
handleInputMouseDown = _getInputProps.onMouseDown;
|
|
23388
|
-
var
|
|
23389
|
-
externalListboxRef =
|
|
23447
|
+
var _ref15 = ListboxProps != null ? ListboxProps : {},
|
|
23448
|
+
externalListboxRef = _ref15.ref;
|
|
23390
23449
|
var _getListboxProps = getListboxProps(),
|
|
23391
23450
|
listboxRef = _getListboxProps.ref,
|
|
23392
23451
|
otherListboxProps = _objectWithoutProperties(_getListboxProps, ["ref"]);
|
|
@@ -23843,7 +23902,7 @@
|
|
|
23843
23902
|
ListboxProps: PropTypes.object,
|
|
23844
23903
|
/**
|
|
23845
23904
|
* If `true`, the component is in a loading state.
|
|
23846
|
-
* This shows the `loadingText` in place of suggestions (only if there are no suggestions to show,
|
|
23905
|
+
* This shows the `loadingText` in place of suggestions (only if there are no suggestions to show, for example `options` are empty).
|
|
23847
23906
|
* @default false
|
|
23848
23907
|
*/
|
|
23849
23908
|
loading: PropTypes.bool,
|
|
@@ -24033,7 +24092,7 @@
|
|
|
24033
24092
|
var avatarClasses = generateUtilityClasses$1('MuiAvatar', ['root', 'colorDefault', 'circular', 'rounded', 'square', 'img', 'fallback']);
|
|
24034
24093
|
var avatarClasses$1 = avatarClasses;
|
|
24035
24094
|
|
|
24036
|
-
var useThemeProps$
|
|
24095
|
+
var useThemeProps$3 = createUseThemeProps();
|
|
24037
24096
|
var useUtilityClasses$1w = function useUtilityClasses(ownerState) {
|
|
24038
24097
|
var classes = ownerState.classes,
|
|
24039
24098
|
variant = ownerState.variant,
|
|
@@ -24165,7 +24224,7 @@
|
|
|
24165
24224
|
return loaded;
|
|
24166
24225
|
}
|
|
24167
24226
|
var Avatar = /*#__PURE__*/React__namespace.forwardRef(function Avatar(inProps, ref) {
|
|
24168
|
-
var props = useThemeProps$
|
|
24227
|
+
var props = useThemeProps$3({
|
|
24169
24228
|
props: inProps,
|
|
24170
24229
|
name: 'MuiAvatar'
|
|
24171
24230
|
});
|
|
@@ -24355,7 +24414,7 @@
|
|
|
24355
24414
|
});
|
|
24356
24415
|
var AvatarGroup = /*#__PURE__*/React__namespace.forwardRef(function AvatarGroup(inProps, ref) {
|
|
24357
24416
|
var _slotProps$additional;
|
|
24358
|
-
var props = useThemeProps$
|
|
24417
|
+
var props = useThemeProps$b({
|
|
24359
24418
|
props: inProps,
|
|
24360
24419
|
name: 'MuiAvatarGroup'
|
|
24361
24420
|
});
|
|
@@ -24737,7 +24796,7 @@
|
|
|
24737
24796
|
});
|
|
24738
24797
|
var Backdrop = /*#__PURE__*/React__namespace.forwardRef(function Backdrop(inProps, ref) {
|
|
24739
24798
|
var _slotProps$root, _ref2, _slots$root;
|
|
24740
|
-
var props = useThemeProps$
|
|
24799
|
+
var props = useThemeProps$b({
|
|
24741
24800
|
props: inProps,
|
|
24742
24801
|
name: 'MuiBackdrop'
|
|
24743
24802
|
});
|
|
@@ -24890,7 +24949,7 @@
|
|
|
24890
24949
|
|
|
24891
24950
|
var RADIUS_STANDARD = 10;
|
|
24892
24951
|
var RADIUS_DOT = 4;
|
|
24893
|
-
var useThemeProps$
|
|
24952
|
+
var useThemeProps$2 = createUseThemeProps();
|
|
24894
24953
|
var useUtilityClasses$1t = function useUtilityClasses(ownerState) {
|
|
24895
24954
|
var color = ownerState.color,
|
|
24896
24955
|
anchorOrigin = ownerState.anchorOrigin,
|
|
@@ -25093,7 +25152,7 @@
|
|
|
25093
25152
|
});
|
|
25094
25153
|
var Badge = /*#__PURE__*/React__namespace.forwardRef(function Badge(inProps, ref) {
|
|
25095
25154
|
var _ref11, _slots$root, _ref12, _slots$badge, _slotProps$root, _slotProps$badge;
|
|
25096
|
-
var props = useThemeProps$
|
|
25155
|
+
var props = useThemeProps$2({
|
|
25097
25156
|
props: inProps,
|
|
25098
25157
|
name: 'MuiBadge'
|
|
25099
25158
|
});
|
|
@@ -25342,7 +25401,7 @@
|
|
|
25342
25401
|
};
|
|
25343
25402
|
});
|
|
25344
25403
|
var BottomNavigation = /*#__PURE__*/React__namespace.forwardRef(function BottomNavigation(inProps, ref) {
|
|
25345
|
-
var props = useThemeProps$
|
|
25404
|
+
var props = useThemeProps$b({
|
|
25346
25405
|
props: inProps,
|
|
25347
25406
|
name: 'MuiBottomNavigation'
|
|
25348
25407
|
});
|
|
@@ -25498,7 +25557,7 @@
|
|
|
25498
25557
|
}));
|
|
25499
25558
|
});
|
|
25500
25559
|
var BottomNavigationAction = /*#__PURE__*/React__namespace.forwardRef(function BottomNavigationAction(inProps, ref) {
|
|
25501
|
-
var props = useThemeProps$
|
|
25560
|
+
var props = useThemeProps$b({
|
|
25502
25561
|
props: inProps,
|
|
25503
25562
|
name: 'MuiBottomNavigationAction'
|
|
25504
25563
|
});
|
|
@@ -25765,7 +25824,7 @@
|
|
|
25765
25824
|
}, []);
|
|
25766
25825
|
}
|
|
25767
25826
|
var Breadcrumbs = /*#__PURE__*/React__namespace.forwardRef(function Breadcrumbs(inProps, ref) {
|
|
25768
|
-
var props = useThemeProps$
|
|
25827
|
+
var props = useThemeProps$b({
|
|
25769
25828
|
props: inProps,
|
|
25770
25829
|
name: 'MuiBreadcrumbs'
|
|
25771
25830
|
});
|
|
@@ -25998,7 +26057,7 @@
|
|
|
25998
26057
|
};
|
|
25999
26058
|
var ButtonRoot = styled$1(ButtonBase$1, {
|
|
26000
26059
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
26001
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
26060
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
26002
26061
|
},
|
|
26003
26062
|
name: 'MuiButton',
|
|
26004
26063
|
slot: 'Root',
|
|
@@ -26164,7 +26223,7 @@
|
|
|
26164
26223
|
var contextProps = React__namespace.useContext(ButtonGroupContext$1);
|
|
26165
26224
|
var buttonGroupButtonContextPositionClassName = React__namespace.useContext(ButtonGroupButtonContext$1);
|
|
26166
26225
|
var resolvedProps = resolveProps(contextProps, inProps);
|
|
26167
|
-
var props = useThemeProps$
|
|
26226
|
+
var props = useThemeProps$b({
|
|
26168
26227
|
props: resolvedProps,
|
|
26169
26228
|
name: 'MuiButton'
|
|
26170
26229
|
});
|
|
@@ -26425,7 +26484,7 @@
|
|
|
26425
26484
|
})));
|
|
26426
26485
|
});
|
|
26427
26486
|
var ButtonGroup = /*#__PURE__*/React__namespace.forwardRef(function ButtonGroup(inProps, ref) {
|
|
26428
|
-
var props = useThemeProps$
|
|
26487
|
+
var props = useThemeProps$b({
|
|
26429
26488
|
props: inProps,
|
|
26430
26489
|
name: 'MuiButtonGroup'
|
|
26431
26490
|
});
|
|
@@ -26614,7 +26673,7 @@
|
|
|
26614
26673
|
};
|
|
26615
26674
|
});
|
|
26616
26675
|
var Card = /*#__PURE__*/React__namespace.forwardRef(function Card(inProps, ref) {
|
|
26617
|
-
var props = useThemeProps$
|
|
26676
|
+
var props = useThemeProps$b({
|
|
26618
26677
|
props: inProps,
|
|
26619
26678
|
name: 'MuiCard'
|
|
26620
26679
|
});
|
|
@@ -26729,7 +26788,7 @@
|
|
|
26729
26788
|
};
|
|
26730
26789
|
});
|
|
26731
26790
|
var CardActionArea = /*#__PURE__*/React__namespace.forwardRef(function CardActionArea(inProps, ref) {
|
|
26732
|
-
var props = useThemeProps$
|
|
26791
|
+
var props = useThemeProps$b({
|
|
26733
26792
|
props: inProps,
|
|
26734
26793
|
name: 'MuiCardActionArea'
|
|
26735
26794
|
});
|
|
@@ -26813,7 +26872,7 @@
|
|
|
26813
26872
|
});
|
|
26814
26873
|
});
|
|
26815
26874
|
var CardActions = /*#__PURE__*/React__namespace.forwardRef(function CardActions(inProps, ref) {
|
|
26816
|
-
var props = useThemeProps$
|
|
26875
|
+
var props = useThemeProps$b({
|
|
26817
26876
|
props: inProps,
|
|
26818
26877
|
name: 'MuiCardActions'
|
|
26819
26878
|
});
|
|
@@ -26888,7 +26947,7 @@
|
|
|
26888
26947
|
};
|
|
26889
26948
|
});
|
|
26890
26949
|
var CardContent = /*#__PURE__*/React__namespace.forwardRef(function CardContent(inProps, ref) {
|
|
26891
|
-
var props = useThemeProps$
|
|
26950
|
+
var props = useThemeProps$b({
|
|
26892
26951
|
props: inProps,
|
|
26893
26952
|
name: 'MuiCardContent'
|
|
26894
26953
|
});
|
|
@@ -26999,7 +27058,7 @@
|
|
|
26999
27058
|
flex: '1 1 auto'
|
|
27000
27059
|
});
|
|
27001
27060
|
var CardHeader = /*#__PURE__*/React__namespace.forwardRef(function CardHeader(inProps, ref) {
|
|
27002
|
-
var props = useThemeProps$
|
|
27061
|
+
var props = useThemeProps$b({
|
|
27003
27062
|
props: inProps,
|
|
27004
27063
|
name: 'MuiCardHeader'
|
|
27005
27064
|
});
|
|
@@ -27168,7 +27227,7 @@
|
|
|
27168
27227
|
var MEDIA_COMPONENTS = ['video', 'audio', 'picture', 'iframe', 'img'];
|
|
27169
27228
|
var IMAGE_COMPONENTS = ['picture', 'img'];
|
|
27170
27229
|
var CardMedia = /*#__PURE__*/React__namespace.forwardRef(function CardMedia(inProps, ref) {
|
|
27171
|
-
var props = useThemeProps$
|
|
27230
|
+
var props = useThemeProps$b({
|
|
27172
27231
|
props: inProps,
|
|
27173
27232
|
name: 'MuiCardMedia'
|
|
27174
27233
|
});
|
|
@@ -27280,7 +27339,7 @@
|
|
|
27280
27339
|
});
|
|
27281
27340
|
});
|
|
27282
27341
|
var SwitchBaseInput = styled$1('input', {
|
|
27283
|
-
shouldForwardProp: rootShouldForwardProp
|
|
27342
|
+
shouldForwardProp: rootShouldForwardProp$1
|
|
27284
27343
|
})({
|
|
27285
27344
|
cursor: 'inherit',
|
|
27286
27345
|
position: 'absolute',
|
|
@@ -27547,7 +27606,7 @@
|
|
|
27547
27606
|
};
|
|
27548
27607
|
var CheckboxRoot = styled$1(SwitchBase$1, {
|
|
27549
27608
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
27550
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
27609
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
27551
27610
|
},
|
|
27552
27611
|
name: 'MuiCheckbox',
|
|
27553
27612
|
slot: 'Root',
|
|
@@ -27579,7 +27638,7 @@
|
|
|
27579
27638
|
var defaultIndeterminateIcon = /*#__PURE__*/jsxRuntime_1(IndeterminateCheckBoxIcon, {});
|
|
27580
27639
|
var Checkbox = /*#__PURE__*/React__namespace.forwardRef(function Checkbox(inProps, ref) {
|
|
27581
27640
|
var _icon$props$fontSize, _indeterminateIcon$pr;
|
|
27582
|
-
var props = useThemeProps$
|
|
27641
|
+
var props = useThemeProps$b({
|
|
27583
27642
|
props: inProps,
|
|
27584
27643
|
name: 'MuiCheckbox'
|
|
27585
27644
|
});
|
|
@@ -27811,7 +27870,7 @@
|
|
|
27811
27870
|
* attribute to `true` on that region until it has finished loading.
|
|
27812
27871
|
*/
|
|
27813
27872
|
var CircularProgress = /*#__PURE__*/React__namespace.forwardRef(function CircularProgress(inProps, ref) {
|
|
27814
|
-
var props = useThemeProps$
|
|
27873
|
+
var props = useThemeProps$b({
|
|
27815
27874
|
props: inProps,
|
|
27816
27875
|
name: 'MuiCircularProgress'
|
|
27817
27876
|
});
|
|
@@ -27910,7 +27969,7 @@
|
|
|
27910
27969
|
/**
|
|
27911
27970
|
* The size of the component.
|
|
27912
27971
|
* If using a number, the pixel unit is assumed.
|
|
27913
|
-
* If using a string, you need to provide the CSS unit,
|
|
27972
|
+
* If using a string, you need to provide the CSS unit, for example '3rem'.
|
|
27914
27973
|
* @default 40
|
|
27915
27974
|
*/
|
|
27916
27975
|
size: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
@@ -27952,7 +28011,7 @@
|
|
|
27952
28011
|
}
|
|
27953
28012
|
}),
|
|
27954
28013
|
useThemeProps: function useThemeProps(inProps) {
|
|
27955
|
-
return useThemeProps$
|
|
28014
|
+
return useThemeProps$b({
|
|
27956
28015
|
props: inProps,
|
|
27957
28016
|
name: 'MuiContainer'
|
|
27958
28017
|
});
|
|
@@ -28075,7 +28134,7 @@
|
|
|
28075
28134
|
return defaultStyles;
|
|
28076
28135
|
};
|
|
28077
28136
|
function CssBaseline(inProps) {
|
|
28078
|
-
var props = useThemeProps$
|
|
28137
|
+
var props = useThemeProps$b({
|
|
28079
28138
|
props: inProps,
|
|
28080
28139
|
name: 'MuiCssBaseline'
|
|
28081
28140
|
});
|
|
@@ -28204,7 +28263,7 @@
|
|
|
28204
28263
|
*/
|
|
28205
28264
|
var Modal = /*#__PURE__*/React__namespace.forwardRef(function Modal(inProps, ref) {
|
|
28206
28265
|
var _ref2, _slots$root, _ref3, _slots$backdrop, _slotProps$root, _slotProps$backdrop;
|
|
28207
|
-
var props = useThemeProps$
|
|
28266
|
+
var props = useThemeProps$b({
|
|
28208
28267
|
name: 'MuiModal',
|
|
28209
28268
|
props: inProps
|
|
28210
28269
|
});
|
|
@@ -28658,7 +28717,7 @@
|
|
|
28658
28717
|
* Dialogs are overlaid modal paper based components with a backdrop.
|
|
28659
28718
|
*/
|
|
28660
28719
|
var Dialog = /*#__PURE__*/React__namespace.forwardRef(function Dialog(inProps, ref) {
|
|
28661
|
-
var props = useThemeProps$
|
|
28720
|
+
var props = useThemeProps$b({
|
|
28662
28721
|
props: inProps,
|
|
28663
28722
|
name: 'MuiDialog'
|
|
28664
28723
|
});
|
|
@@ -28942,7 +29001,7 @@
|
|
|
28942
29001
|
});
|
|
28943
29002
|
});
|
|
28944
29003
|
var DialogActions = /*#__PURE__*/React__namespace.forwardRef(function DialogActions(inProps, ref) {
|
|
28945
|
-
var props = useThemeProps$
|
|
29004
|
+
var props = useThemeProps$b({
|
|
28946
29005
|
props: inProps,
|
|
28947
29006
|
name: 'MuiDialogActions'
|
|
28948
29007
|
});
|
|
@@ -29034,7 +29093,7 @@
|
|
|
29034
29093
|
}));
|
|
29035
29094
|
});
|
|
29036
29095
|
var DialogContent = /*#__PURE__*/React__namespace.forwardRef(function DialogContent(inProps, ref) {
|
|
29037
|
-
var props = useThemeProps$
|
|
29096
|
+
var props = useThemeProps$b({
|
|
29038
29097
|
props: inProps,
|
|
29039
29098
|
name: 'MuiDialogContent'
|
|
29040
29099
|
});
|
|
@@ -29097,7 +29156,7 @@
|
|
|
29097
29156
|
};
|
|
29098
29157
|
var DialogContentTextRoot = styled$1(Typography$1, {
|
|
29099
29158
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
29100
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
29159
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
29101
29160
|
},
|
|
29102
29161
|
name: 'MuiDialogContentText',
|
|
29103
29162
|
slot: 'Root',
|
|
@@ -29106,7 +29165,7 @@
|
|
|
29106
29165
|
}
|
|
29107
29166
|
})({});
|
|
29108
29167
|
var DialogContentText = /*#__PURE__*/React__namespace.forwardRef(function DialogContentText(inProps, ref) {
|
|
29109
|
-
var props = useThemeProps$
|
|
29168
|
+
var props = useThemeProps$b({
|
|
29110
29169
|
props: inProps,
|
|
29111
29170
|
name: 'MuiDialogContentText'
|
|
29112
29171
|
});
|
|
@@ -29167,7 +29226,7 @@
|
|
|
29167
29226
|
flex: '0 0 auto'
|
|
29168
29227
|
});
|
|
29169
29228
|
var DialogTitle = /*#__PURE__*/React__namespace.forwardRef(function DialogTitle(inProps, ref) {
|
|
29170
|
-
var props = useThemeProps$
|
|
29229
|
+
var props = useThemeProps$b({
|
|
29171
29230
|
props: inProps,
|
|
29172
29231
|
name: 'MuiDialogTitle'
|
|
29173
29232
|
});
|
|
@@ -29347,7 +29406,7 @@
|
|
|
29347
29406
|
});
|
|
29348
29407
|
});
|
|
29349
29408
|
var Divider = /*#__PURE__*/React__namespace.forwardRef(function Divider(inProps, ref) {
|
|
29350
|
-
var props = useThemeProps$
|
|
29409
|
+
var props = useThemeProps$b({
|
|
29351
29410
|
props: inProps,
|
|
29352
29411
|
name: 'MuiDivider'
|
|
29353
29412
|
});
|
|
@@ -29814,7 +29873,7 @@
|
|
|
29814
29873
|
};
|
|
29815
29874
|
});
|
|
29816
29875
|
var DrawerDockedRoot = styled$1('div', {
|
|
29817
|
-
shouldForwardProp: rootShouldForwardProp,
|
|
29876
|
+
shouldForwardProp: rootShouldForwardProp$1,
|
|
29818
29877
|
name: 'MuiDrawer',
|
|
29819
29878
|
slot: 'Docked',
|
|
29820
29879
|
skipVariantsResolver: false,
|
|
@@ -29894,7 +29953,7 @@
|
|
|
29894
29953
|
* when `variant="temporary"` is set.
|
|
29895
29954
|
*/
|
|
29896
29955
|
var Drawer = /*#__PURE__*/React__namespace.forwardRef(function Drawer(inProps, ref) {
|
|
29897
|
-
var props = useThemeProps$
|
|
29956
|
+
var props = useThemeProps$b({
|
|
29898
29957
|
props: inProps,
|
|
29899
29958
|
name: 'MuiDrawer'
|
|
29900
29959
|
});
|
|
@@ -30106,7 +30165,7 @@
|
|
|
30106
30165
|
name: 'MuiFab',
|
|
30107
30166
|
slot: 'Root',
|
|
30108
30167
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
30109
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
30168
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
30110
30169
|
},
|
|
30111
30170
|
overridesResolver: function overridesResolver(props, styles) {
|
|
30112
30171
|
var ownerState = props.ownerState;
|
|
@@ -30194,7 +30253,7 @@
|
|
|
30194
30253
|
});
|
|
30195
30254
|
});
|
|
30196
30255
|
var Fab = /*#__PURE__*/React__namespace.forwardRef(function Fab(inProps, ref) {
|
|
30197
|
-
var props = useThemeProps$
|
|
30256
|
+
var props = useThemeProps$b({
|
|
30198
30257
|
props: inProps,
|
|
30199
30258
|
name: 'MuiFab'
|
|
30200
30259
|
});
|
|
@@ -30318,7 +30377,7 @@
|
|
|
30318
30377
|
};
|
|
30319
30378
|
var FilledInputRoot = styled$1(InputBaseRoot, {
|
|
30320
30379
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
30321
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
30380
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
30322
30381
|
},
|
|
30323
30382
|
name: 'MuiFilledInput',
|
|
30324
30383
|
slot: 'Root',
|
|
@@ -30465,7 +30524,7 @@
|
|
|
30465
30524
|
});
|
|
30466
30525
|
var FilledInput = /*#__PURE__*/React__namespace.forwardRef(function FilledInput(inProps, ref) {
|
|
30467
30526
|
var _ref5, _slots$root, _ref6, _slots$input;
|
|
30468
|
-
var props = useThemeProps$
|
|
30527
|
+
var props = useThemeProps$b({
|
|
30469
30528
|
props: inProps,
|
|
30470
30529
|
name: 'MuiFilledInput'
|
|
30471
30530
|
});
|
|
@@ -30785,7 +30844,7 @@
|
|
|
30785
30844
|
* For instance, only one input can be focused at the same time, the state shouldn't be shared.
|
|
30786
30845
|
*/
|
|
30787
30846
|
var FormControl = /*#__PURE__*/React__namespace.forwardRef(function FormControl(inProps, ref) {
|
|
30788
|
-
var props = useThemeProps$
|
|
30847
|
+
var props = useThemeProps$b({
|
|
30789
30848
|
props: inProps,
|
|
30790
30849
|
name: 'MuiFormControl'
|
|
30791
30850
|
});
|
|
@@ -31016,7 +31075,7 @@
|
|
|
31016
31075
|
}
|
|
31017
31076
|
}),
|
|
31018
31077
|
useThemeProps: function useThemeProps(inProps) {
|
|
31019
|
-
return useThemeProps$
|
|
31078
|
+
return useThemeProps$b({
|
|
31020
31079
|
props: inProps,
|
|
31021
31080
|
name: 'MuiStack'
|
|
31022
31081
|
});
|
|
@@ -31145,7 +31204,7 @@
|
|
|
31145
31204
|
*/
|
|
31146
31205
|
var FormControlLabel = /*#__PURE__*/React__namespace.forwardRef(function FormControlLabel(inProps, ref) {
|
|
31147
31206
|
var _ref5, _slotProps$typography;
|
|
31148
|
-
var props = useThemeProps$
|
|
31207
|
+
var props = useThemeProps$b({
|
|
31149
31208
|
props: inProps,
|
|
31150
31209
|
name: 'MuiFormControlLabel'
|
|
31151
31210
|
});
|
|
@@ -31338,7 +31397,7 @@
|
|
|
31338
31397
|
* For the `Radio`, you should be using the `RadioGroup` component instead of this one.
|
|
31339
31398
|
*/
|
|
31340
31399
|
var FormGroup = /*#__PURE__*/React__namespace.forwardRef(function FormGroup(inProps, ref) {
|
|
31341
|
-
var props = useThemeProps$
|
|
31400
|
+
var props = useThemeProps$b({
|
|
31342
31401
|
props: inProps,
|
|
31343
31402
|
name: 'MuiFormGroup'
|
|
31344
31403
|
});
|
|
@@ -31443,7 +31502,7 @@
|
|
|
31443
31502
|
});
|
|
31444
31503
|
});
|
|
31445
31504
|
var FormHelperText = /*#__PURE__*/React__namespace.forwardRef(function FormHelperText(inProps, ref) {
|
|
31446
|
-
var props = useThemeProps$
|
|
31505
|
+
var props = useThemeProps$b({
|
|
31447
31506
|
props: inProps,
|
|
31448
31507
|
name: 'MuiFormHelperText'
|
|
31449
31508
|
});
|
|
@@ -31607,7 +31666,7 @@
|
|
|
31607
31666
|
});
|
|
31608
31667
|
});
|
|
31609
31668
|
var FormLabel = /*#__PURE__*/React__namespace.forwardRef(function FormLabel(inProps, ref) {
|
|
31610
|
-
var props = useThemeProps$
|
|
31669
|
+
var props = useThemeProps$b({
|
|
31611
31670
|
props: inProps,
|
|
31612
31671
|
name: 'MuiFormLabel'
|
|
31613
31672
|
});
|
|
@@ -32063,7 +32122,7 @@
|
|
|
32063
32122
|
return composeClasses(slots, getGridUtilityClass, classes);
|
|
32064
32123
|
};
|
|
32065
32124
|
var Grid = /*#__PURE__*/React__namespace.forwardRef(function Grid(inProps, ref) {
|
|
32066
|
-
var themeProps = useThemeProps$
|
|
32125
|
+
var themeProps = useThemeProps$b({
|
|
32067
32126
|
props: inProps,
|
|
32068
32127
|
name: 'MuiGrid'
|
|
32069
32128
|
});
|
|
@@ -32281,7 +32340,7 @@
|
|
|
32281
32340
|
}),
|
|
32282
32341
|
componentName: 'MuiGrid2',
|
|
32283
32342
|
useThemeProps: function useThemeProps(inProps) {
|
|
32284
|
-
return useThemeProps$
|
|
32343
|
+
return useThemeProps$b({
|
|
32285
32344
|
props: inProps,
|
|
32286
32345
|
name: 'MuiGrid2'
|
|
32287
32346
|
});
|
|
@@ -33133,7 +33192,7 @@
|
|
|
33133
33192
|
};
|
|
33134
33193
|
});
|
|
33135
33194
|
var Icon = /*#__PURE__*/React__namespace.forwardRef(function Icon(inProps, ref) {
|
|
33136
|
-
var props = useThemeProps$
|
|
33195
|
+
var props = useThemeProps$b({
|
|
33137
33196
|
props: inProps,
|
|
33138
33197
|
name: 'MuiIcon'
|
|
33139
33198
|
});
|
|
@@ -33172,7 +33231,7 @@
|
|
|
33172
33231
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
33173
33232
|
/**
|
|
33174
33233
|
* The base class applied to the icon. Defaults to 'material-icons', but can be changed to any
|
|
33175
|
-
* other base class that suits the icon font you're using (
|
|
33234
|
+
* other base class that suits the icon font you're using (for example material-icons-rounded, fas, etc).
|
|
33176
33235
|
* @default 'material-icons'
|
|
33177
33236
|
*/
|
|
33178
33237
|
baseClassName: PropTypes.string,
|
|
@@ -33258,7 +33317,7 @@
|
|
|
33258
33317
|
});
|
|
33259
33318
|
});
|
|
33260
33319
|
var ImageList = /*#__PURE__*/React__namespace.forwardRef(function ImageList(inProps, ref) {
|
|
33261
|
-
var props = useThemeProps$
|
|
33320
|
+
var props = useThemeProps$b({
|
|
33262
33321
|
props: inProps,
|
|
33263
33322
|
name: 'MuiImageList'
|
|
33264
33323
|
});
|
|
@@ -33419,7 +33478,7 @@
|
|
|
33419
33478
|
})));
|
|
33420
33479
|
});
|
|
33421
33480
|
var ImageListItem = /*#__PURE__*/React__namespace.forwardRef(function ImageListItem(inProps, ref) {
|
|
33422
|
-
var props = useThemeProps$
|
|
33481
|
+
var props = useThemeProps$b({
|
|
33423
33482
|
props: inProps,
|
|
33424
33483
|
name: 'MuiImageListItem'
|
|
33425
33484
|
});
|
|
@@ -33647,7 +33706,7 @@
|
|
|
33647
33706
|
});
|
|
33648
33707
|
});
|
|
33649
33708
|
var ImageListItemBar = /*#__PURE__*/React__namespace.forwardRef(function ImageListItemBar(inProps, ref) {
|
|
33650
|
-
var props = useThemeProps$
|
|
33709
|
+
var props = useThemeProps$b({
|
|
33651
33710
|
props: inProps,
|
|
33652
33711
|
name: 'MuiImageListItemBar'
|
|
33653
33712
|
});
|
|
@@ -33746,7 +33805,7 @@
|
|
|
33746
33805
|
};
|
|
33747
33806
|
var InputRoot = styled$1(InputBaseRoot, {
|
|
33748
33807
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
33749
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
33808
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
33750
33809
|
},
|
|
33751
33810
|
name: 'MuiInput',
|
|
33752
33811
|
slot: 'Root',
|
|
@@ -33821,7 +33880,7 @@
|
|
|
33821
33880
|
})({});
|
|
33822
33881
|
var Input = /*#__PURE__*/React__namespace.forwardRef(function Input(inProps, ref) {
|
|
33823
33882
|
var _ref3, _slots$root, _ref4, _slots$input;
|
|
33824
|
-
var props = useThemeProps$
|
|
33883
|
+
var props = useThemeProps$b({
|
|
33825
33884
|
props: inProps,
|
|
33826
33885
|
name: 'MuiInput'
|
|
33827
33886
|
});
|
|
@@ -34109,7 +34168,7 @@
|
|
|
34109
34168
|
});
|
|
34110
34169
|
});
|
|
34111
34170
|
var InputAdornment = /*#__PURE__*/React__namespace.forwardRef(function InputAdornment(inProps, ref) {
|
|
34112
|
-
var props = useThemeProps$
|
|
34171
|
+
var props = useThemeProps$b({
|
|
34113
34172
|
props: inProps,
|
|
34114
34173
|
name: 'MuiInputAdornment'
|
|
34115
34174
|
});
|
|
@@ -34237,7 +34296,7 @@
|
|
|
34237
34296
|
};
|
|
34238
34297
|
var InputLabelRoot = styled$1(FormLabel$1, {
|
|
34239
34298
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
34240
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
34299
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
34241
34300
|
},
|
|
34242
34301
|
name: 'MuiInputLabel',
|
|
34243
34302
|
slot: 'Root',
|
|
@@ -34309,7 +34368,7 @@
|
|
|
34309
34368
|
}));
|
|
34310
34369
|
});
|
|
34311
34370
|
var InputLabel = /*#__PURE__*/React__namespace.forwardRef(function InputLabel(inProps, ref) {
|
|
34312
|
-
var props = useThemeProps$
|
|
34371
|
+
var props = useThemeProps$b({
|
|
34313
34372
|
name: 'MuiInputLabel',
|
|
34314
34373
|
props: inProps
|
|
34315
34374
|
});
|
|
@@ -34581,7 +34640,7 @@
|
|
|
34581
34640
|
* attribute to `true` on that region until it has finished loading.
|
|
34582
34641
|
*/
|
|
34583
34642
|
var LinearProgress = /*#__PURE__*/React__namespace.forwardRef(function LinearProgress(inProps, ref) {
|
|
34584
|
-
var props = useThemeProps$
|
|
34643
|
+
var props = useThemeProps$b({
|
|
34585
34644
|
props: inProps,
|
|
34586
34645
|
name: 'MuiLinearProgress'
|
|
34587
34646
|
});
|
|
@@ -34788,7 +34847,7 @@
|
|
|
34788
34847
|
}));
|
|
34789
34848
|
});
|
|
34790
34849
|
var Link = /*#__PURE__*/React__namespace.forwardRef(function Link(inProps, ref) {
|
|
34791
|
-
var props = useThemeProps$
|
|
34850
|
+
var props = useThemeProps$b({
|
|
34792
34851
|
props: inProps,
|
|
34793
34852
|
name: 'MuiLink'
|
|
34794
34853
|
});
|
|
@@ -34959,7 +35018,7 @@
|
|
|
34959
35018
|
});
|
|
34960
35019
|
});
|
|
34961
35020
|
var List = /*#__PURE__*/React__namespace.forwardRef(function List(inProps, ref) {
|
|
34962
|
-
var props = useThemeProps$
|
|
35021
|
+
var props = useThemeProps$b({
|
|
34963
35022
|
props: inProps,
|
|
34964
35023
|
name: 'MuiList'
|
|
34965
35024
|
});
|
|
@@ -35073,7 +35132,7 @@
|
|
|
35073
35132
|
};
|
|
35074
35133
|
var ListItemButtonRoot = styled$1(ButtonBase$1, {
|
|
35075
35134
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
35076
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
35135
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
35077
35136
|
},
|
|
35078
35137
|
name: 'MuiListItemButton',
|
|
35079
35138
|
slot: 'Root',
|
|
@@ -35132,7 +35191,7 @@
|
|
|
35132
35191
|
});
|
|
35133
35192
|
});
|
|
35134
35193
|
var ListItemButton = /*#__PURE__*/React__namespace.forwardRef(function ListItemButton(inProps, ref) {
|
|
35135
|
-
var props = useThemeProps$
|
|
35194
|
+
var props = useThemeProps$b({
|
|
35136
35195
|
props: inProps,
|
|
35137
35196
|
name: 'MuiListItemButton'
|
|
35138
35197
|
});
|
|
@@ -35315,7 +35374,7 @@
|
|
|
35315
35374
|
* Must be used as the last child of ListItem to function properly.
|
|
35316
35375
|
*/
|
|
35317
35376
|
var ListItemSecondaryAction = /*#__PURE__*/React__namespace.forwardRef(function ListItemSecondaryAction(inProps, ref) {
|
|
35318
|
-
var props = useThemeProps$
|
|
35377
|
+
var props = useThemeProps$b({
|
|
35319
35378
|
props: inProps,
|
|
35320
35379
|
name: 'MuiListItemSecondaryAction'
|
|
35321
35380
|
});
|
|
@@ -35460,7 +35519,7 @@
|
|
|
35460
35519
|
* Uses an additional container component if `ListItemSecondaryAction` is the last child.
|
|
35461
35520
|
*/
|
|
35462
35521
|
var ListItem = /*#__PURE__*/React__namespace.forwardRef(function ListItem(inProps, ref) {
|
|
35463
|
-
var props = useThemeProps$
|
|
35522
|
+
var props = useThemeProps$b({
|
|
35464
35523
|
props: inProps,
|
|
35465
35524
|
name: 'MuiListItem'
|
|
35466
35525
|
});
|
|
@@ -35794,7 +35853,7 @@
|
|
|
35794
35853
|
* A simple wrapper to apply `List` styles to an `Avatar`.
|
|
35795
35854
|
*/
|
|
35796
35855
|
var ListItemAvatar = /*#__PURE__*/React__namespace.forwardRef(function ListItemAvatar(inProps, ref) {
|
|
35797
|
-
var props = useThemeProps$
|
|
35856
|
+
var props = useThemeProps$b({
|
|
35798
35857
|
props: inProps,
|
|
35799
35858
|
name: 'MuiListItemAvatar'
|
|
35800
35859
|
});
|
|
@@ -35873,7 +35932,7 @@
|
|
|
35873
35932
|
* A simple wrapper to apply `List` styles to an `Icon` or `SvgIcon`.
|
|
35874
35933
|
*/
|
|
35875
35934
|
var ListItemIcon = /*#__PURE__*/React__namespace.forwardRef(function ListItemIcon(inProps, ref) {
|
|
35876
|
-
var props = useThemeProps$
|
|
35935
|
+
var props = useThemeProps$b({
|
|
35877
35936
|
props: inProps,
|
|
35878
35937
|
name: 'MuiListItemIcon'
|
|
35879
35938
|
});
|
|
@@ -35956,7 +36015,7 @@
|
|
|
35956
36015
|
});
|
|
35957
36016
|
});
|
|
35958
36017
|
var ListItemText = /*#__PURE__*/React__namespace.forwardRef(function ListItemText(inProps, ref) {
|
|
35959
|
-
var props = useThemeProps$
|
|
36018
|
+
var props = useThemeProps$b({
|
|
35960
36019
|
props: inProps,
|
|
35961
36020
|
name: 'MuiListItemText'
|
|
35962
36021
|
});
|
|
@@ -36412,7 +36471,7 @@
|
|
|
36412
36471
|
});
|
|
36413
36472
|
var Popover = /*#__PURE__*/React__namespace.forwardRef(function Popover(inProps, ref) {
|
|
36414
36473
|
var _slotProps$paper, _slots$root, _slots$paper;
|
|
36415
|
-
var props = useThemeProps$
|
|
36474
|
+
var props = useThemeProps$b({
|
|
36416
36475
|
props: inProps,
|
|
36417
36476
|
name: 'MuiPopover'
|
|
36418
36477
|
});
|
|
@@ -36895,7 +36954,7 @@
|
|
|
36895
36954
|
};
|
|
36896
36955
|
var MenuRoot = styled$1(Popover$1, {
|
|
36897
36956
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
36898
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
36957
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
36899
36958
|
},
|
|
36900
36959
|
name: 'MuiMenu',
|
|
36901
36960
|
slot: 'Root',
|
|
@@ -36929,7 +36988,7 @@
|
|
|
36929
36988
|
});
|
|
36930
36989
|
var Menu = /*#__PURE__*/React__namespace.forwardRef(function Menu(inProps, ref) {
|
|
36931
36990
|
var _slots$paper, _slotProps$paper;
|
|
36932
|
-
var props = useThemeProps$
|
|
36991
|
+
var props = useThemeProps$b({
|
|
36933
36992
|
props: inProps,
|
|
36934
36993
|
name: 'MuiMenu'
|
|
36935
36994
|
});
|
|
@@ -37201,7 +37260,7 @@
|
|
|
37201
37260
|
};
|
|
37202
37261
|
var MenuItemRoot = styled$1(ButtonBase$1, {
|
|
37203
37262
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
37204
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
37263
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
37205
37264
|
},
|
|
37206
37265
|
name: 'MuiMenuItem',
|
|
37207
37266
|
slot: 'Root',
|
|
@@ -37273,7 +37332,7 @@
|
|
|
37273
37332
|
})));
|
|
37274
37333
|
});
|
|
37275
37334
|
var MenuItem = /*#__PURE__*/React__namespace.forwardRef(function MenuItem(inProps, ref) {
|
|
37276
|
-
var props = useThemeProps$
|
|
37335
|
+
var props = useThemeProps$b({
|
|
37277
37336
|
props: inProps,
|
|
37278
37337
|
name: 'MuiMenuItem'
|
|
37279
37338
|
});
|
|
@@ -37515,7 +37574,7 @@
|
|
|
37515
37574
|
});
|
|
37516
37575
|
});
|
|
37517
37576
|
var MobileStepper = /*#__PURE__*/React__namespace.forwardRef(function MobileStepper(inProps, ref) {
|
|
37518
|
-
var props = useThemeProps$
|
|
37577
|
+
var props = useThemeProps$b({
|
|
37519
37578
|
props: inProps,
|
|
37520
37579
|
name: 'MuiMobileStepper'
|
|
37521
37580
|
});
|
|
@@ -37694,7 +37753,7 @@
|
|
|
37694
37753
|
var NativeSelectSelect = styled$1('select', {
|
|
37695
37754
|
name: 'MuiNativeSelect',
|
|
37696
37755
|
slot: 'Select',
|
|
37697
|
-
shouldForwardProp: rootShouldForwardProp,
|
|
37756
|
+
shouldForwardProp: rootShouldForwardProp$1,
|
|
37698
37757
|
overridesResolver: function overridesResolver(props, styles) {
|
|
37699
37758
|
var ownerState = props.ownerState;
|
|
37700
37759
|
return [styles.select, styles[ownerState.variant], ownerState.error && styles.error, _defineProperty({}, "&.".concat(nativeSelectClasses$1.multiple), styles.multiple)];
|
|
@@ -37832,7 +37891,7 @@
|
|
|
37832
37891
|
* An alternative to `<Select native />` with a much smaller bundle size footprint.
|
|
37833
37892
|
*/
|
|
37834
37893
|
var NativeSelect = /*#__PURE__*/React__namespace.forwardRef(function NativeSelect(inProps, ref) {
|
|
37835
|
-
var props = useThemeProps$
|
|
37894
|
+
var props = useThemeProps$b({
|
|
37836
37895
|
name: 'MuiNativeSelect',
|
|
37837
37896
|
props: inProps
|
|
37838
37897
|
});
|
|
@@ -37935,7 +37994,7 @@
|
|
|
37935
37994
|
|
|
37936
37995
|
var _span$1;
|
|
37937
37996
|
var NotchedOutlineRoot$1 = styled$1('fieldset', {
|
|
37938
|
-
shouldForwardProp: rootShouldForwardProp
|
|
37997
|
+
shouldForwardProp: rootShouldForwardProp$1
|
|
37939
37998
|
})({
|
|
37940
37999
|
textAlign: 'left',
|
|
37941
38000
|
position: 'absolute',
|
|
@@ -37953,7 +38012,7 @@
|
|
|
37953
38012
|
minWidth: '0%'
|
|
37954
38013
|
});
|
|
37955
38014
|
var NotchedOutlineLegend = styled$1('legend', {
|
|
37956
|
-
shouldForwardProp: rootShouldForwardProp
|
|
38015
|
+
shouldForwardProp: rootShouldForwardProp$1
|
|
37957
38016
|
})(function (_ref) {
|
|
37958
38017
|
var ownerState = _ref.ownerState,
|
|
37959
38018
|
theme = _ref.theme;
|
|
@@ -38073,7 +38132,7 @@
|
|
|
38073
38132
|
};
|
|
38074
38133
|
var OutlinedInputRoot = styled$1(InputBaseRoot, {
|
|
38075
38134
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
38076
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
38135
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
38077
38136
|
},
|
|
38078
38137
|
name: 'MuiOutlinedInput',
|
|
38079
38138
|
slot: 'Root',
|
|
@@ -38157,7 +38216,7 @@
|
|
|
38157
38216
|
});
|
|
38158
38217
|
var OutlinedInput = /*#__PURE__*/React__namespace.forwardRef(function OutlinedInput(inProps, ref) {
|
|
38159
38218
|
var _ref5, _slots$root, _ref6, _slots$input, _React$Fragment;
|
|
38160
|
-
var props = useThemeProps$
|
|
38219
|
+
var props = useThemeProps$b({
|
|
38161
38220
|
props: inProps,
|
|
38162
38221
|
name: 'MuiOutlinedInput'
|
|
38163
38222
|
});
|
|
@@ -38469,7 +38528,7 @@
|
|
|
38469
38528
|
endPages.length > 0 ? endPages[0] - 2 : count - 1);
|
|
38470
38529
|
|
|
38471
38530
|
// Basic list of items to render
|
|
38472
|
-
//
|
|
38531
|
+
// for example itemList = ['first', 'previous', 1, 'ellipsis', 4, 5, 6, 'ellipsis', 10, 'next', 'last']
|
|
38473
38532
|
var itemList = [].concat(_toConsumableArray(showFirstButton ? ['first'] : []), _toConsumableArray(hidePrevButton ? [] : ['previous']), _toConsumableArray(startPages), _toConsumableArray(siblingsStart > boundaryCount + 2 ? ['start-ellipsis'] : boundaryCount + 1 < count - boundaryCount ? [boundaryCount + 1] : []), _toConsumableArray(range(siblingsStart, siblingsEnd)), _toConsumableArray(siblingsEnd < count - boundaryCount - 1 ? ['end-ellipsis'] : count - boundaryCount > boundaryCount ? [count - boundaryCount] : []), _toConsumableArray(endPages), _toConsumableArray(hideNextButton ? [] : ['next']), _toConsumableArray(showLastButton ? ['last'] : []));
|
|
38474
38533
|
|
|
38475
38534
|
// Map the button type to its page number
|
|
@@ -38707,7 +38766,7 @@
|
|
|
38707
38766
|
});
|
|
38708
38767
|
});
|
|
38709
38768
|
var PaginationItem = /*#__PURE__*/React__namespace.forwardRef(function PaginationItem(inProps, ref) {
|
|
38710
|
-
var props = useThemeProps$
|
|
38769
|
+
var props = useThemeProps$b({
|
|
38711
38770
|
props: inProps,
|
|
38712
38771
|
name: 'MuiPaginationItem'
|
|
38713
38772
|
});
|
|
@@ -38910,7 +38969,7 @@
|
|
|
38910
38969
|
return "Go to ".concat(type, " page");
|
|
38911
38970
|
}
|
|
38912
38971
|
var Pagination = /*#__PURE__*/React__namespace.forwardRef(function Pagination(inProps, ref) {
|
|
38913
|
-
var props = useThemeProps$
|
|
38972
|
+
var props = useThemeProps$b({
|
|
38914
38973
|
props: inProps,
|
|
38915
38974
|
name: 'MuiPagination'
|
|
38916
38975
|
});
|
|
@@ -39123,7 +39182,7 @@
|
|
|
39123
39182
|
}), 'RadioButtonChecked');
|
|
39124
39183
|
|
|
39125
39184
|
var RadioButtonIconRoot = styled$1('span', {
|
|
39126
|
-
shouldForwardProp: rootShouldForwardProp
|
|
39185
|
+
shouldForwardProp: rootShouldForwardProp$1
|
|
39127
39186
|
})({
|
|
39128
39187
|
position: 'relative',
|
|
39129
39188
|
display: 'flex'
|
|
@@ -39224,7 +39283,7 @@
|
|
|
39224
39283
|
};
|
|
39225
39284
|
var RadioRoot = styled$1(SwitchBase$1, {
|
|
39226
39285
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
39227
|
-
return rootShouldForwardProp(prop) || prop === 'classes';
|
|
39286
|
+
return rootShouldForwardProp$1(prop) || prop === 'classes';
|
|
39228
39287
|
},
|
|
39229
39288
|
name: 'MuiRadio',
|
|
39230
39289
|
slot: 'Root',
|
|
@@ -39265,7 +39324,7 @@
|
|
|
39265
39324
|
var defaultIcon$1 = /*#__PURE__*/jsxRuntime_1(RadioButtonIcon, {});
|
|
39266
39325
|
var Radio = /*#__PURE__*/React__namespace.forwardRef(function Radio(inProps, ref) {
|
|
39267
39326
|
var _defaultIcon$props$fo, _defaultCheckedIcon$p;
|
|
39268
|
-
var props = useThemeProps$
|
|
39327
|
+
var props = useThemeProps$b({
|
|
39269
39328
|
props: inProps,
|
|
39270
39329
|
name: 'MuiRadio'
|
|
39271
39330
|
});
|
|
@@ -39746,7 +39805,7 @@
|
|
|
39746
39805
|
return "".concat(value, " Star").concat(value !== 1 ? 's' : '');
|
|
39747
39806
|
}
|
|
39748
39807
|
var Rating = /*#__PURE__*/React__namespace.forwardRef(function Rating(inProps, ref) {
|
|
39749
|
-
var props = useThemeProps$
|
|
39808
|
+
var props = useThemeProps$b({
|
|
39750
39809
|
name: 'MuiRating',
|
|
39751
39810
|
props: inProps
|
|
39752
39811
|
});
|
|
@@ -40187,7 +40246,7 @@
|
|
|
40187
40246
|
}, colorSchemeStyles);
|
|
40188
40247
|
});
|
|
40189
40248
|
var ScopedCssBaseline = /*#__PURE__*/React__namespace.forwardRef(function ScopedCssBaseline(inProps, ref) {
|
|
40190
|
-
var props = useThemeProps$
|
|
40249
|
+
var props = useThemeProps$b({
|
|
40191
40250
|
props: inProps,
|
|
40192
40251
|
name: 'MuiScopedCssBaseline'
|
|
40193
40252
|
});
|
|
@@ -40901,7 +40960,7 @@
|
|
|
40901
40960
|
return styles.root;
|
|
40902
40961
|
},
|
|
40903
40962
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
40904
|
-
return rootShouldForwardProp(prop) && prop !== 'variant';
|
|
40963
|
+
return rootShouldForwardProp$1(prop) && prop !== 'variant';
|
|
40905
40964
|
},
|
|
40906
40965
|
slot: 'Root'
|
|
40907
40966
|
};
|
|
@@ -40909,7 +40968,7 @@
|
|
|
40909
40968
|
var StyledOutlinedInput = styled$1(OutlinedInput$1, styledRootConfig)('');
|
|
40910
40969
|
var StyledFilledInput = styled$1(FilledInput$1, styledRootConfig)('');
|
|
40911
40970
|
var Select = /*#__PURE__*/React__namespace.forwardRef(function Select(inProps, ref) {
|
|
40912
|
-
var props = useThemeProps$
|
|
40971
|
+
var props = useThemeProps$b({
|
|
40913
40972
|
name: 'MuiSelect',
|
|
40914
40973
|
props: inProps
|
|
40915
40974
|
});
|
|
@@ -41232,7 +41291,7 @@
|
|
|
41232
41291
|
return ownerState.animation === 'wave' && css(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n position: relative;\n overflow: hidden;\n\n /* Fix bug in Safari https://bugs.webkit.org/show_bug.cgi?id=68196 */\n -webkit-mask-image: -webkit-radial-gradient(white, black);\n\n &::after {\n animation: ", " 2s linear 0.5s infinite;\n background: linear-gradient(\n 90deg,\n transparent,\n ", ",\n transparent\n );\n content: '';\n position: absolute;\n transform: translateX(-100%); /* Avoid flash during server-side hydration */\n bottom: 0;\n left: 0;\n right: 0;\n top: 0;\n }\n "])), waveKeyframe, (theme.vars || theme).palette.action.hover);
|
|
41233
41292
|
});
|
|
41234
41293
|
var Skeleton = /*#__PURE__*/React__namespace.forwardRef(function Skeleton(inProps, ref) {
|
|
41235
|
-
var props = useThemeProps$
|
|
41294
|
+
var props = useThemeProps$b({
|
|
41236
41295
|
props: inProps,
|
|
41237
41296
|
name: 'MuiSkeleton'
|
|
41238
41297
|
});
|
|
@@ -41374,6 +41433,7 @@
|
|
|
41374
41433
|
value: PropTypes.node
|
|
41375
41434
|
} ;
|
|
41376
41435
|
|
|
41436
|
+
var useThemeProps$1 = createUseThemeProps();
|
|
41377
41437
|
function Identity(x) {
|
|
41378
41438
|
return x;
|
|
41379
41439
|
}
|
|
@@ -41385,44 +41445,16 @@
|
|
|
41385
41445
|
return [styles.root, styles["color".concat(capitalize(ownerState.color))], ownerState.size !== 'medium' && styles["size".concat(capitalize(ownerState.size))], ownerState.marked && styles.marked, ownerState.orientation === 'vertical' && styles.vertical, ownerState.track === 'inverted' && styles.trackInverted, ownerState.track === false && styles.trackFalse];
|
|
41386
41446
|
}
|
|
41387
41447
|
})(function (_ref) {
|
|
41388
|
-
var
|
|
41389
|
-
|
|
41390
|
-
return
|
|
41448
|
+
var _theme$vars;
|
|
41449
|
+
var theme = _ref.theme;
|
|
41450
|
+
return _defineProperty(_defineProperty(_defineProperty({
|
|
41391
41451
|
borderRadius: 12,
|
|
41392
41452
|
boxSizing: 'content-box',
|
|
41393
41453
|
display: 'inline-block',
|
|
41394
41454
|
position: 'relative',
|
|
41395
41455
|
cursor: 'pointer',
|
|
41396
41456
|
touchAction: 'none',
|
|
41397
|
-
|
|
41398
|
-
WebkitTapHighlightColor: 'transparent'
|
|
41399
|
-
}, ownerState.orientation === 'horizontal' && _extends({
|
|
41400
|
-
height: 4,
|
|
41401
|
-
width: '100%',
|
|
41402
|
-
padding: '13px 0',
|
|
41403
|
-
// The primary input mechanism of the device includes a pointing device of limited accuracy.
|
|
41404
|
-
'@media (pointer: coarse)': {
|
|
41405
|
-
// Reach 42px touch target, about ~8mm on screen.
|
|
41406
|
-
padding: '20px 0'
|
|
41407
|
-
}
|
|
41408
|
-
}, ownerState.size === 'small' && {
|
|
41409
|
-
height: 2
|
|
41410
|
-
}, ownerState.marked && {
|
|
41411
|
-
marginBottom: 20
|
|
41412
|
-
}), ownerState.orientation === 'vertical' && _extends({
|
|
41413
|
-
height: '100%',
|
|
41414
|
-
width: 4,
|
|
41415
|
-
padding: '0 13px',
|
|
41416
|
-
// The primary input mechanism of the device includes a pointing device of limited accuracy.
|
|
41417
|
-
'@media (pointer: coarse)': {
|
|
41418
|
-
// Reach 42px touch target, about ~8mm on screen.
|
|
41419
|
-
padding: '0 20px'
|
|
41420
|
-
}
|
|
41421
|
-
}, ownerState.size === 'small' && {
|
|
41422
|
-
width: 2
|
|
41423
|
-
}, ownerState.marked && {
|
|
41424
|
-
marginRight: 44
|
|
41425
|
-
}), _defineProperty(_defineProperty({
|
|
41457
|
+
WebkitTapHighlightColor: 'transparent',
|
|
41426
41458
|
'@media print': {
|
|
41427
41459
|
colorAdjust: 'exact'
|
|
41428
41460
|
}
|
|
@@ -41432,7 +41464,79 @@
|
|
|
41432
41464
|
color: (theme.vars || theme).palette.grey[400]
|
|
41433
41465
|
}), "&.".concat(sliderClasses$1.dragging), _defineProperty({}, "& .".concat(sliderClasses$1.thumb, ", & .").concat(sliderClasses$1.track), {
|
|
41434
41466
|
transition: 'none'
|
|
41435
|
-
})))
|
|
41467
|
+
})), "variants", [].concat(_toConsumableArray(Object.keys(((_theme$vars = theme.vars) != null ? _theme$vars : theme).palette).filter(function (key) {
|
|
41468
|
+
var _theme$vars2;
|
|
41469
|
+
return ((_theme$vars2 = theme.vars) != null ? _theme$vars2 : theme).palette[key].main;
|
|
41470
|
+
}).map(function (color) {
|
|
41471
|
+
return {
|
|
41472
|
+
props: {
|
|
41473
|
+
color: color
|
|
41474
|
+
},
|
|
41475
|
+
style: {
|
|
41476
|
+
color: (theme.vars || theme).palette[color].main
|
|
41477
|
+
}
|
|
41478
|
+
};
|
|
41479
|
+
})), [{
|
|
41480
|
+
props: {
|
|
41481
|
+
orientation: 'horizontal'
|
|
41482
|
+
},
|
|
41483
|
+
style: {
|
|
41484
|
+
height: 4,
|
|
41485
|
+
width: '100%',
|
|
41486
|
+
padding: '13px 0',
|
|
41487
|
+
// The primary input mechanism of the device includes a pointing device of limited accuracy.
|
|
41488
|
+
'@media (pointer: coarse)': {
|
|
41489
|
+
// Reach 42px touch target, about ~8mm on screen.
|
|
41490
|
+
padding: '20px 0'
|
|
41491
|
+
}
|
|
41492
|
+
}
|
|
41493
|
+
}, {
|
|
41494
|
+
props: {
|
|
41495
|
+
orientation: 'horizontal',
|
|
41496
|
+
size: 'small'
|
|
41497
|
+
},
|
|
41498
|
+
style: {
|
|
41499
|
+
height: 2
|
|
41500
|
+
}
|
|
41501
|
+
}, {
|
|
41502
|
+
props: {
|
|
41503
|
+
orientation: 'horizontal',
|
|
41504
|
+
marked: true
|
|
41505
|
+
},
|
|
41506
|
+
style: {
|
|
41507
|
+
marginBottom: 20
|
|
41508
|
+
}
|
|
41509
|
+
}, {
|
|
41510
|
+
props: {
|
|
41511
|
+
orientation: 'vertical'
|
|
41512
|
+
},
|
|
41513
|
+
style: {
|
|
41514
|
+
height: '100%',
|
|
41515
|
+
width: 4,
|
|
41516
|
+
padding: '0 13px',
|
|
41517
|
+
// The primary input mechanism of the device includes a pointing device of limited accuracy.
|
|
41518
|
+
'@media (pointer: coarse)': {
|
|
41519
|
+
// Reach 42px touch target, about ~8mm on screen.
|
|
41520
|
+
padding: '0 20px'
|
|
41521
|
+
}
|
|
41522
|
+
}
|
|
41523
|
+
}, {
|
|
41524
|
+
props: {
|
|
41525
|
+
orientation: 'vertical',
|
|
41526
|
+
size: 'small'
|
|
41527
|
+
},
|
|
41528
|
+
style: {
|
|
41529
|
+
width: 2
|
|
41530
|
+
}
|
|
41531
|
+
}, {
|
|
41532
|
+
props: {
|
|
41533
|
+
orientation: 'vertical',
|
|
41534
|
+
marked: true
|
|
41535
|
+
},
|
|
41536
|
+
style: {
|
|
41537
|
+
marginRight: 44
|
|
41538
|
+
}
|
|
41539
|
+
}]));
|
|
41436
41540
|
});
|
|
41437
41541
|
var SliderRail = styled$1('span', {
|
|
41438
41542
|
name: 'MuiSlider',
|
|
@@ -41440,27 +41544,40 @@
|
|
|
41440
41544
|
overridesResolver: function overridesResolver(props, styles) {
|
|
41441
41545
|
return styles.rail;
|
|
41442
41546
|
}
|
|
41443
|
-
})(
|
|
41444
|
-
|
|
41445
|
-
|
|
41446
|
-
|
|
41447
|
-
|
|
41448
|
-
|
|
41449
|
-
|
|
41450
|
-
|
|
41451
|
-
|
|
41452
|
-
|
|
41453
|
-
|
|
41454
|
-
|
|
41455
|
-
|
|
41456
|
-
|
|
41457
|
-
|
|
41458
|
-
|
|
41459
|
-
|
|
41460
|
-
|
|
41461
|
-
|
|
41462
|
-
|
|
41463
|
-
|
|
41547
|
+
})({
|
|
41548
|
+
display: 'block',
|
|
41549
|
+
position: 'absolute',
|
|
41550
|
+
borderRadius: 'inherit',
|
|
41551
|
+
backgroundColor: 'currentColor',
|
|
41552
|
+
opacity: 0.38,
|
|
41553
|
+
variants: [{
|
|
41554
|
+
props: {
|
|
41555
|
+
orientation: 'horizontal'
|
|
41556
|
+
},
|
|
41557
|
+
style: {
|
|
41558
|
+
width: '100%',
|
|
41559
|
+
height: 'inherit',
|
|
41560
|
+
top: '50%',
|
|
41561
|
+
transform: 'translateY(-50%)'
|
|
41562
|
+
}
|
|
41563
|
+
}, {
|
|
41564
|
+
props: {
|
|
41565
|
+
orientation: 'vertical'
|
|
41566
|
+
},
|
|
41567
|
+
style: {
|
|
41568
|
+
height: '100%',
|
|
41569
|
+
width: 'inherit',
|
|
41570
|
+
left: '50%',
|
|
41571
|
+
transform: 'translateX(-50%)'
|
|
41572
|
+
}
|
|
41573
|
+
}, {
|
|
41574
|
+
props: {
|
|
41575
|
+
track: 'inverted'
|
|
41576
|
+
},
|
|
41577
|
+
style: {
|
|
41578
|
+
opacity: 1
|
|
41579
|
+
}
|
|
41580
|
+
}]
|
|
41464
41581
|
});
|
|
41465
41582
|
var SliderTrack = styled$1('span', {
|
|
41466
41583
|
name: 'MuiSlider',
|
|
@@ -41469,12 +41586,9 @@
|
|
|
41469
41586
|
return styles.track;
|
|
41470
41587
|
}
|
|
41471
41588
|
})(function (_ref3) {
|
|
41472
|
-
var
|
|
41473
|
-
|
|
41474
|
-
|
|
41475
|
-
// Same logic as the LinearProgress track color
|
|
41476
|
-
theme.palette.mode === 'light' ? lighten(theme.palette[ownerState.color].main, 0.62) : darken(theme.palette[ownerState.color].main, 0.5);
|
|
41477
|
-
return _extends({
|
|
41589
|
+
var _theme$vars3;
|
|
41590
|
+
var theme = _ref3.theme;
|
|
41591
|
+
return {
|
|
41478
41592
|
display: 'block',
|
|
41479
41593
|
position: 'absolute',
|
|
41480
41594
|
borderRadius: 'inherit',
|
|
@@ -41482,23 +41596,62 @@
|
|
|
41482
41596
|
backgroundColor: 'currentColor',
|
|
41483
41597
|
transition: theme.transitions.create(['left', 'width', 'bottom', 'height'], {
|
|
41484
41598
|
duration: theme.transitions.duration.shortest
|
|
41485
|
-
})
|
|
41486
|
-
|
|
41487
|
-
|
|
41488
|
-
|
|
41489
|
-
|
|
41490
|
-
|
|
41491
|
-
|
|
41492
|
-
|
|
41493
|
-
|
|
41494
|
-
|
|
41495
|
-
|
|
41496
|
-
|
|
41497
|
-
|
|
41498
|
-
|
|
41499
|
-
|
|
41500
|
-
|
|
41501
|
-
|
|
41599
|
+
}),
|
|
41600
|
+
variants: [{
|
|
41601
|
+
props: {
|
|
41602
|
+
size: 'small'
|
|
41603
|
+
},
|
|
41604
|
+
style: {
|
|
41605
|
+
border: 'none'
|
|
41606
|
+
}
|
|
41607
|
+
}, {
|
|
41608
|
+
props: {
|
|
41609
|
+
orientation: 'horizontal'
|
|
41610
|
+
},
|
|
41611
|
+
style: {
|
|
41612
|
+
height: 'inherit',
|
|
41613
|
+
top: '50%',
|
|
41614
|
+
transform: 'translateY(-50%)'
|
|
41615
|
+
}
|
|
41616
|
+
}, {
|
|
41617
|
+
props: {
|
|
41618
|
+
orientation: 'vertical'
|
|
41619
|
+
},
|
|
41620
|
+
style: {
|
|
41621
|
+
width: 'inherit',
|
|
41622
|
+
left: '50%',
|
|
41623
|
+
transform: 'translateX(-50%)'
|
|
41624
|
+
}
|
|
41625
|
+
}, {
|
|
41626
|
+
props: {
|
|
41627
|
+
track: false
|
|
41628
|
+
},
|
|
41629
|
+
style: {
|
|
41630
|
+
display: 'none'
|
|
41631
|
+
}
|
|
41632
|
+
}].concat(_toConsumableArray(Object.keys(((_theme$vars3 = theme.vars) != null ? _theme$vars3 : theme).palette).filter(function (key) {
|
|
41633
|
+
var _theme$vars4;
|
|
41634
|
+
return ((_theme$vars4 = theme.vars) != null ? _theme$vars4 : theme).palette[key].main;
|
|
41635
|
+
}).map(function (color) {
|
|
41636
|
+
return {
|
|
41637
|
+
props: {
|
|
41638
|
+
color: color,
|
|
41639
|
+
track: 'inverted'
|
|
41640
|
+
},
|
|
41641
|
+
style: _extends({}, theme.vars ? {
|
|
41642
|
+
backgroundColor: theme.vars.palette.Slider["".concat(color, "Track")],
|
|
41643
|
+
borderColor: theme.vars.palette.Slider["".concat(color, "Track")]
|
|
41644
|
+
} : _extends({
|
|
41645
|
+
backgroundColor: lighten(theme.palette[color].main, 0.62),
|
|
41646
|
+
borderColor: lighten(theme.palette[color].main, 0.62)
|
|
41647
|
+
}, theme.applyStyles('dark', {
|
|
41648
|
+
backgroundColor: darken(theme.palette[color].main, 0.5)
|
|
41649
|
+
}), theme.applyStyles('dark', {
|
|
41650
|
+
borderColor: darken(theme.palette[color].main, 0.5)
|
|
41651
|
+
})))
|
|
41652
|
+
};
|
|
41653
|
+
})))
|
|
41654
|
+
};
|
|
41502
41655
|
});
|
|
41503
41656
|
var SliderThumb = styled$1('span', {
|
|
41504
41657
|
name: 'MuiSlider',
|
|
@@ -41508,9 +41661,9 @@
|
|
|
41508
41661
|
return [styles.thumb, styles["thumbColor".concat(capitalize(ownerState.color))], ownerState.size !== 'medium' && styles["thumbSize".concat(capitalize(ownerState.size))]];
|
|
41509
41662
|
}
|
|
41510
41663
|
})(function (_ref4) {
|
|
41511
|
-
var
|
|
41512
|
-
|
|
41513
|
-
return
|
|
41664
|
+
var _theme$vars5;
|
|
41665
|
+
var theme = _ref4.theme;
|
|
41666
|
+
return _defineProperty(_defineProperty({
|
|
41514
41667
|
position: 'absolute',
|
|
41515
41668
|
width: 20,
|
|
41516
41669
|
height: 20,
|
|
@@ -41523,27 +41676,15 @@
|
|
|
41523
41676
|
justifyContent: 'center',
|
|
41524
41677
|
transition: theme.transitions.create(['box-shadow', 'left', 'bottom'], {
|
|
41525
41678
|
duration: theme.transitions.duration.shortest
|
|
41526
|
-
})
|
|
41527
|
-
|
|
41528
|
-
width: 12,
|
|
41529
|
-
height: 12
|
|
41530
|
-
}, ownerState.orientation === 'horizontal' && {
|
|
41531
|
-
top: '50%',
|
|
41532
|
-
transform: 'translate(-50%, -50%)'
|
|
41533
|
-
}, ownerState.orientation === 'vertical' && {
|
|
41534
|
-
left: '50%',
|
|
41535
|
-
transform: 'translate(-50%, 50%)'
|
|
41536
|
-
}, _defineProperty(_defineProperty(_defineProperty({
|
|
41537
|
-
'&::before': _extends({
|
|
41679
|
+
}),
|
|
41680
|
+
'&::before': {
|
|
41538
41681
|
position: 'absolute',
|
|
41539
41682
|
content: '""',
|
|
41540
41683
|
borderRadius: 'inherit',
|
|
41541
41684
|
width: '100%',
|
|
41542
41685
|
height: '100%',
|
|
41543
41686
|
boxShadow: (theme.vars || theme).shadows[2]
|
|
41544
|
-
},
|
|
41545
|
-
boxShadow: 'none'
|
|
41546
|
-
}),
|
|
41687
|
+
},
|
|
41547
41688
|
'&::after': {
|
|
41548
41689
|
position: 'absolute',
|
|
41549
41690
|
content: '""',
|
|
@@ -41555,18 +41696,60 @@
|
|
|
41555
41696
|
left: '50%',
|
|
41556
41697
|
transform: 'translate(-50%, -50%)'
|
|
41557
41698
|
}
|
|
41558
|
-
}, "
|
|
41559
|
-
boxShadow: "0px 0px 0px 8px ".concat(theme.vars ? "rgba(".concat(theme.vars.palette[ownerState.color].mainChannel, " / 0.16)") : alpha(theme.palette[ownerState.color].main, 0.16)),
|
|
41560
|
-
'@media (hover: none)': {
|
|
41561
|
-
boxShadow: 'none'
|
|
41562
|
-
}
|
|
41563
|
-
}), "&.".concat(sliderClasses$1.active), {
|
|
41564
|
-
boxShadow: "0px 0px 0px 14px ".concat(theme.vars ? "rgba(".concat(theme.vars.palette[ownerState.color].mainChannel, " / 0.16)") : alpha(theme.palette[ownerState.color].main, 0.16))
|
|
41565
|
-
}), "&.".concat(sliderClasses$1.disabled), {
|
|
41699
|
+
}, "&.".concat(sliderClasses$1.disabled), {
|
|
41566
41700
|
'&:hover': {
|
|
41567
41701
|
boxShadow: 'none'
|
|
41568
41702
|
}
|
|
41569
|
-
}))
|
|
41703
|
+
}), "variants", [].concat(_toConsumableArray(Object.keys(((_theme$vars5 = theme.vars) != null ? _theme$vars5 : theme).palette).filter(function (key) {
|
|
41704
|
+
var _theme$vars6;
|
|
41705
|
+
return ((_theme$vars6 = theme.vars) != null ? _theme$vars6 : theme).palette[key].main;
|
|
41706
|
+
}).map(function (color) {
|
|
41707
|
+
return {
|
|
41708
|
+
props: {
|
|
41709
|
+
color: color
|
|
41710
|
+
},
|
|
41711
|
+
style: _defineProperty(_defineProperty({}, "&:hover, &.".concat(sliderClasses$1.focusVisible), _extends({}, theme.vars ? {
|
|
41712
|
+
boxShadow: "0px 0px 0px 8px rgba(".concat(theme.vars.palette[color].mainChannel, " / 0.16)")
|
|
41713
|
+
} : {
|
|
41714
|
+
boxShadow: "0px 0px 0px 8px ".concat(alpha(theme.palette[color].main, 0.16))
|
|
41715
|
+
}, {
|
|
41716
|
+
'@media (hover: none)': {
|
|
41717
|
+
boxShadow: 'none'
|
|
41718
|
+
}
|
|
41719
|
+
})), "&.".concat(sliderClasses$1.active), _extends({}, theme.vars ? {
|
|
41720
|
+
boxShadow: "0px 0px 0px 14px rgba(".concat(theme.vars.palette[color].mainChannel, " / 0.16)}")
|
|
41721
|
+
} : {
|
|
41722
|
+
boxShadow: "0px 0px 0px 14px ".concat(alpha(theme.palette[color].main, 0.16))
|
|
41723
|
+
}))
|
|
41724
|
+
};
|
|
41725
|
+
})), [{
|
|
41726
|
+
props: {
|
|
41727
|
+
size: 'small'
|
|
41728
|
+
},
|
|
41729
|
+
style: {
|
|
41730
|
+
width: 12,
|
|
41731
|
+
height: 12,
|
|
41732
|
+
'&::before': {
|
|
41733
|
+
boxShadow: 'none'
|
|
41734
|
+
}
|
|
41735
|
+
}
|
|
41736
|
+
}, {
|
|
41737
|
+
props: {
|
|
41738
|
+
orientation: 'horizontal'
|
|
41739
|
+
},
|
|
41740
|
+
style: {
|
|
41741
|
+
top: '50%',
|
|
41742
|
+
transform: 'translate(-50%, -50%)'
|
|
41743
|
+
}
|
|
41744
|
+
}, {
|
|
41745
|
+
props: {
|
|
41746
|
+
orientation: 'vertical'
|
|
41747
|
+
},
|
|
41748
|
+
style: {
|
|
41749
|
+
left: '50%',
|
|
41750
|
+
transform: 'translate(-50%, 50%)'
|
|
41751
|
+
}
|
|
41752
|
+
}]));
|
|
41570
41753
|
});
|
|
41571
41754
|
var SliderValueLabel = styled$1(SliderValueLabel$1, {
|
|
41572
41755
|
name: 'MuiSlider',
|
|
@@ -41574,17 +41757,16 @@
|
|
|
41574
41757
|
overridesResolver: function overridesResolver(props, styles) {
|
|
41575
41758
|
return styles.valueLabel;
|
|
41576
41759
|
}
|
|
41577
|
-
})(function (
|
|
41578
|
-
var theme =
|
|
41579
|
-
|
|
41580
|
-
|
|
41581
|
-
|
|
41582
|
-
}
|
|
41760
|
+
})(function (_ref6) {
|
|
41761
|
+
var theme = _ref6.theme;
|
|
41762
|
+
return _extends({
|
|
41763
|
+
zIndex: 1,
|
|
41764
|
+
whiteSpace: 'nowrap'
|
|
41765
|
+
}, theme.typography.body2, {
|
|
41583
41766
|
fontWeight: 500,
|
|
41584
41767
|
transition: theme.transitions.create(['transform'], {
|
|
41585
41768
|
duration: theme.transitions.duration.shortest
|
|
41586
41769
|
}),
|
|
41587
|
-
transform: "".concat(ownerState.orientation === 'vertical' ? 'translateY(-50%)' : 'translateY(-100%)', " scale(0)"),
|
|
41588
41770
|
position: 'absolute',
|
|
41589
41771
|
backgroundColor: (theme.vars || theme).palette.grey[600],
|
|
41590
41772
|
borderRadius: 2,
|
|
@@ -41592,37 +41774,67 @@
|
|
|
41592
41774
|
display: 'flex',
|
|
41593
41775
|
alignItems: 'center',
|
|
41594
41776
|
justifyContent: 'center',
|
|
41595
|
-
padding: '0.25rem 0.75rem'
|
|
41596
|
-
|
|
41597
|
-
|
|
41598
|
-
|
|
41599
|
-
|
|
41600
|
-
|
|
41601
|
-
|
|
41602
|
-
|
|
41603
|
-
|
|
41604
|
-
|
|
41605
|
-
|
|
41606
|
-
|
|
41607
|
-
|
|
41608
|
-
|
|
41609
|
-
|
|
41610
|
-
|
|
41611
|
-
|
|
41612
|
-
|
|
41613
|
-
|
|
41614
|
-
|
|
41615
|
-
|
|
41616
|
-
|
|
41617
|
-
|
|
41618
|
-
|
|
41619
|
-
|
|
41620
|
-
|
|
41621
|
-
|
|
41622
|
-
|
|
41623
|
-
|
|
41624
|
-
|
|
41625
|
-
|
|
41777
|
+
padding: '0.25rem 0.75rem',
|
|
41778
|
+
variants: [{
|
|
41779
|
+
props: {
|
|
41780
|
+
orientation: 'horizontal'
|
|
41781
|
+
},
|
|
41782
|
+
style: _defineProperty({
|
|
41783
|
+
transform: 'translateY(-100%) scale(0)',
|
|
41784
|
+
top: '-10px',
|
|
41785
|
+
transformOrigin: 'bottom center',
|
|
41786
|
+
'&::before': {
|
|
41787
|
+
position: 'absolute',
|
|
41788
|
+
content: '""',
|
|
41789
|
+
width: 8,
|
|
41790
|
+
height: 8,
|
|
41791
|
+
transform: 'translate(-50%, 50%) rotate(45deg)',
|
|
41792
|
+
backgroundColor: 'inherit',
|
|
41793
|
+
bottom: 0,
|
|
41794
|
+
left: '50%'
|
|
41795
|
+
}
|
|
41796
|
+
}, "&.".concat(sliderClasses$1.valueLabelOpen), {
|
|
41797
|
+
transform: 'translateY(-100%) scale(1)'
|
|
41798
|
+
})
|
|
41799
|
+
}, {
|
|
41800
|
+
props: {
|
|
41801
|
+
orientation: 'vertical'
|
|
41802
|
+
},
|
|
41803
|
+
style: _defineProperty({
|
|
41804
|
+
transform: 'translateY(-50%) scale(0)',
|
|
41805
|
+
right: '30px',
|
|
41806
|
+
top: '50%',
|
|
41807
|
+
transformOrigin: 'right center',
|
|
41808
|
+
'&::before': {
|
|
41809
|
+
position: 'absolute',
|
|
41810
|
+
content: '""',
|
|
41811
|
+
width: 8,
|
|
41812
|
+
height: 8,
|
|
41813
|
+
transform: 'translate(-50%, -50%) rotate(45deg)',
|
|
41814
|
+
backgroundColor: 'inherit',
|
|
41815
|
+
right: -8,
|
|
41816
|
+
top: '50%'
|
|
41817
|
+
}
|
|
41818
|
+
}, "&.".concat(sliderClasses$1.valueLabelOpen), {
|
|
41819
|
+
transform: 'translateY(-50%) scale(1)'
|
|
41820
|
+
})
|
|
41821
|
+
}, {
|
|
41822
|
+
props: {
|
|
41823
|
+
size: 'small'
|
|
41824
|
+
},
|
|
41825
|
+
style: {
|
|
41826
|
+
fontSize: theme.typography.pxToRem(12),
|
|
41827
|
+
padding: '0.25rem 0.5rem'
|
|
41828
|
+
}
|
|
41829
|
+
}, {
|
|
41830
|
+
props: {
|
|
41831
|
+
orientation: 'vertical',
|
|
41832
|
+
size: 'small'
|
|
41833
|
+
},
|
|
41834
|
+
style: {
|
|
41835
|
+
right: '20px'
|
|
41836
|
+
}
|
|
41837
|
+
}]
|
|
41626
41838
|
});
|
|
41627
41839
|
});
|
|
41628
41840
|
var SliderMark = styled$1('span', {
|
|
@@ -41635,26 +41847,40 @@
|
|
|
41635
41847
|
var markActive = props.markActive;
|
|
41636
41848
|
return [styles.mark, markActive && styles.markActive];
|
|
41637
41849
|
}
|
|
41638
|
-
})(function (
|
|
41639
|
-
var theme =
|
|
41640
|
-
|
|
41641
|
-
markActive = _ref6.markActive;
|
|
41642
|
-
return _extends({
|
|
41850
|
+
})(function (_ref7) {
|
|
41851
|
+
var theme = _ref7.theme;
|
|
41852
|
+
return {
|
|
41643
41853
|
position: 'absolute',
|
|
41644
41854
|
width: 2,
|
|
41645
41855
|
height: 2,
|
|
41646
41856
|
borderRadius: 1,
|
|
41647
|
-
backgroundColor: 'currentColor'
|
|
41648
|
-
|
|
41649
|
-
|
|
41650
|
-
|
|
41651
|
-
|
|
41652
|
-
|
|
41653
|
-
|
|
41654
|
-
|
|
41655
|
-
|
|
41656
|
-
|
|
41657
|
-
|
|
41857
|
+
backgroundColor: 'currentColor',
|
|
41858
|
+
variants: [{
|
|
41859
|
+
props: {
|
|
41860
|
+
orientation: 'horizontal'
|
|
41861
|
+
},
|
|
41862
|
+
style: {
|
|
41863
|
+
top: '50%',
|
|
41864
|
+
transform: 'translate(-1px, -50%)'
|
|
41865
|
+
}
|
|
41866
|
+
}, {
|
|
41867
|
+
props: {
|
|
41868
|
+
orientation: 'vertical'
|
|
41869
|
+
},
|
|
41870
|
+
style: {
|
|
41871
|
+
left: '50%',
|
|
41872
|
+
transform: 'translate(-50%, 1px)'
|
|
41873
|
+
}
|
|
41874
|
+
}, {
|
|
41875
|
+
props: {
|
|
41876
|
+
markActive: true
|
|
41877
|
+
},
|
|
41878
|
+
style: {
|
|
41879
|
+
backgroundColor: (theme.vars || theme).palette.background.paper,
|
|
41880
|
+
opacity: 0.8
|
|
41881
|
+
}
|
|
41882
|
+
}]
|
|
41883
|
+
};
|
|
41658
41884
|
});
|
|
41659
41885
|
var SliderMarkLabel = styled$1('span', {
|
|
41660
41886
|
name: 'MuiSlider',
|
|
@@ -41665,28 +41891,42 @@
|
|
|
41665
41891
|
overridesResolver: function overridesResolver(props, styles) {
|
|
41666
41892
|
return styles.markLabel;
|
|
41667
41893
|
}
|
|
41668
|
-
})(function (
|
|
41669
|
-
var theme =
|
|
41670
|
-
ownerState = _ref7.ownerState,
|
|
41671
|
-
markLabelActive = _ref7.markLabelActive;
|
|
41894
|
+
})(function (_ref8) {
|
|
41895
|
+
var theme = _ref8.theme;
|
|
41672
41896
|
return _extends({}, theme.typography.body2, {
|
|
41673
41897
|
color: (theme.vars || theme).palette.text.secondary,
|
|
41674
41898
|
position: 'absolute',
|
|
41675
|
-
whiteSpace: 'nowrap'
|
|
41676
|
-
|
|
41677
|
-
|
|
41678
|
-
|
|
41679
|
-
|
|
41680
|
-
|
|
41681
|
-
|
|
41682
|
-
|
|
41683
|
-
|
|
41684
|
-
|
|
41685
|
-
|
|
41686
|
-
|
|
41687
|
-
}
|
|
41688
|
-
|
|
41689
|
-
|
|
41899
|
+
whiteSpace: 'nowrap',
|
|
41900
|
+
variants: [{
|
|
41901
|
+
props: {
|
|
41902
|
+
orientation: 'horizontal'
|
|
41903
|
+
},
|
|
41904
|
+
style: {
|
|
41905
|
+
top: 30,
|
|
41906
|
+
transform: 'translateX(-50%)',
|
|
41907
|
+
'@media (pointer: coarse)': {
|
|
41908
|
+
top: 40
|
|
41909
|
+
}
|
|
41910
|
+
}
|
|
41911
|
+
}, {
|
|
41912
|
+
props: {
|
|
41913
|
+
orientation: 'vertical'
|
|
41914
|
+
},
|
|
41915
|
+
style: {
|
|
41916
|
+
left: 36,
|
|
41917
|
+
transform: 'translateY(50%)',
|
|
41918
|
+
'@media (pointer: coarse)': {
|
|
41919
|
+
left: 44
|
|
41920
|
+
}
|
|
41921
|
+
}
|
|
41922
|
+
}, {
|
|
41923
|
+
props: {
|
|
41924
|
+
markLabelActive: true
|
|
41925
|
+
},
|
|
41926
|
+
style: {
|
|
41927
|
+
color: (theme.vars || theme).palette.text.primary
|
|
41928
|
+
}
|
|
41929
|
+
}]
|
|
41690
41930
|
});
|
|
41691
41931
|
});
|
|
41692
41932
|
var useUtilityClasses$u = function useUtilityClasses(ownerState) {
|
|
@@ -41714,13 +41954,13 @@
|
|
|
41714
41954
|
};
|
|
41715
41955
|
return composeClasses(slots, getSliderUtilityClass, classes);
|
|
41716
41956
|
};
|
|
41717
|
-
var Forward = function Forward(
|
|
41718
|
-
var children =
|
|
41957
|
+
var Forward = function Forward(_ref9) {
|
|
41958
|
+
var children = _ref9.children;
|
|
41719
41959
|
return children;
|
|
41720
41960
|
};
|
|
41721
41961
|
var Slider = /*#__PURE__*/React__namespace.forwardRef(function Slider(inputProps, ref) {
|
|
41722
|
-
var
|
|
41723
|
-
var props = useThemeProps$
|
|
41962
|
+
var _ref10, _slots$root, _ref11, _slots$rail, _ref12, _slots$track, _ref13, _slots$thumb, _ref14, _slots$valueLabel, _ref15, _slots$mark, _ref16, _slots$markLabel, _ref17, _slots$input, _slotProps$root, _slotProps$rail, _slotProps$track, _slotProps$thumb, _slotProps$valueLabel, _slotProps$mark, _slotProps$markLabel, _slotProps$input;
|
|
41963
|
+
var props = useThemeProps$1({
|
|
41724
41964
|
props: inputProps,
|
|
41725
41965
|
name: 'MuiSlider'
|
|
41726
41966
|
});
|
|
@@ -41818,14 +42058,14 @@
|
|
|
41818
42058
|
var classes = useUtilityClasses$u(ownerState);
|
|
41819
42059
|
|
|
41820
42060
|
// support both `slots` and `components` for backward compatibility
|
|
41821
|
-
var RootSlot = (
|
|
41822
|
-
var RailSlot = (
|
|
41823
|
-
var TrackSlot = (
|
|
41824
|
-
var ThumbSlot = (
|
|
41825
|
-
var ValueLabelSlot = (
|
|
41826
|
-
var MarkSlot = (
|
|
41827
|
-
var MarkLabelSlot = (
|
|
41828
|
-
var InputSlot = (
|
|
42061
|
+
var RootSlot = (_ref10 = (_slots$root = slots == null ? void 0 : slots.root) != null ? _slots$root : components.Root) != null ? _ref10 : SliderRoot;
|
|
42062
|
+
var RailSlot = (_ref11 = (_slots$rail = slots == null ? void 0 : slots.rail) != null ? _slots$rail : components.Rail) != null ? _ref11 : SliderRail;
|
|
42063
|
+
var TrackSlot = (_ref12 = (_slots$track = slots == null ? void 0 : slots.track) != null ? _slots$track : components.Track) != null ? _ref12 : SliderTrack;
|
|
42064
|
+
var ThumbSlot = (_ref13 = (_slots$thumb = slots == null ? void 0 : slots.thumb) != null ? _slots$thumb : components.Thumb) != null ? _ref13 : SliderThumb;
|
|
42065
|
+
var ValueLabelSlot = (_ref14 = (_slots$valueLabel = slots == null ? void 0 : slots.valueLabel) != null ? _slots$valueLabel : components.ValueLabel) != null ? _ref14 : SliderValueLabel;
|
|
42066
|
+
var MarkSlot = (_ref15 = (_slots$mark = slots == null ? void 0 : slots.mark) != null ? _slots$mark : components.Mark) != null ? _ref15 : SliderMark;
|
|
42067
|
+
var MarkLabelSlot = (_ref16 = (_slots$markLabel = slots == null ? void 0 : slots.markLabel) != null ? _slots$markLabel : components.MarkLabel) != null ? _ref16 : SliderMarkLabel;
|
|
42068
|
+
var InputSlot = (_ref17 = (_slots$input = slots == null ? void 0 : slots.input) != null ? _slots$input : components.Input) != null ? _ref17 : 'input';
|
|
41829
42069
|
var rootSlotProps = (_slotProps$root = slotProps == null ? void 0 : slotProps.root) != null ? _slotProps$root : componentsProps.root;
|
|
41830
42070
|
var railSlotProps = (_slotProps$rail = slotProps == null ? void 0 : slotProps.rail) != null ? _slotProps$rail : componentsProps.rail;
|
|
41831
42071
|
var trackSlotProps = (_slotProps$track = slotProps == null ? void 0 : slotProps.track) != null ? _slotProps$track : componentsProps.track;
|
|
@@ -42297,7 +42537,7 @@
|
|
|
42297
42537
|
marginRight: -8
|
|
42298
42538
|
});
|
|
42299
42539
|
var SnackbarContent = /*#__PURE__*/React__namespace.forwardRef(function SnackbarContent(inProps, ref) {
|
|
42300
|
-
var props = useThemeProps$
|
|
42540
|
+
var props = useThemeProps$b({
|
|
42301
42541
|
props: inProps,
|
|
42302
42542
|
name: 'MuiSnackbarContent'
|
|
42303
42543
|
});
|
|
@@ -42419,7 +42659,7 @@
|
|
|
42419
42659
|
})));
|
|
42420
42660
|
});
|
|
42421
42661
|
var Snackbar = /*#__PURE__*/React__namespace.forwardRef(function Snackbar(inProps, ref) {
|
|
42422
|
-
var props = useThemeProps$
|
|
42662
|
+
var props = useThemeProps$b({
|
|
42423
42663
|
props: inProps,
|
|
42424
42664
|
name: 'MuiSnackbar'
|
|
42425
42665
|
});
|
|
@@ -42954,7 +43194,7 @@
|
|
|
42954
43194
|
});
|
|
42955
43195
|
});
|
|
42956
43196
|
var SpeedDial = /*#__PURE__*/React__namespace.forwardRef(function SpeedDial(inProps, ref) {
|
|
42957
|
-
var props = useThemeProps$
|
|
43197
|
+
var props = useThemeProps$b({
|
|
42958
43198
|
props: inProps,
|
|
42959
43199
|
name: 'MuiSpeedDial'
|
|
42960
43200
|
});
|
|
@@ -43516,7 +43756,7 @@
|
|
|
43516
43756
|
// TODO v6: Remove PopperComponent, PopperProps, TransitionComponent and TransitionProps.
|
|
43517
43757
|
var Tooltip = /*#__PURE__*/React__namespace.forwardRef(function Tooltip(inProps, ref) {
|
|
43518
43758
|
var _ref5, _slots$popper, _ref6, _ref7, _slots$transition, _ref8, _slots$tooltip, _ref9, _slots$arrow, _slotProps$popper, _ref10, _slotProps$popper2, _slotProps$transition, _slotProps$tooltip, _ref11, _slotProps$tooltip2, _slotProps$arrow, _ref12, _slotProps$arrow2;
|
|
43519
|
-
var props = useThemeProps$
|
|
43759
|
+
var props = useThemeProps$b({
|
|
43520
43760
|
props: inProps,
|
|
43521
43761
|
name: 'MuiTooltip'
|
|
43522
43762
|
});
|
|
@@ -44189,7 +44429,7 @@
|
|
|
44189
44429
|
});
|
|
44190
44430
|
});
|
|
44191
44431
|
var SpeedDialAction = /*#__PURE__*/React__namespace.forwardRef(function SpeedDialAction(inProps, ref) {
|
|
44192
|
-
var props = useThemeProps$
|
|
44432
|
+
var props = useThemeProps$b({
|
|
44193
44433
|
props: inProps,
|
|
44194
44434
|
name: 'MuiSpeedDialAction'
|
|
44195
44435
|
});
|
|
@@ -44383,7 +44623,7 @@
|
|
|
44383
44623
|
}));
|
|
44384
44624
|
});
|
|
44385
44625
|
var SpeedDialIcon = /*#__PURE__*/React__namespace.forwardRef(function SpeedDialIcon(inProps, ref) {
|
|
44386
|
-
var props = useThemeProps$
|
|
44626
|
+
var props = useThemeProps$b({
|
|
44387
44627
|
props: inProps,
|
|
44388
44628
|
name: 'MuiSpeedDialIcon'
|
|
44389
44629
|
});
|
|
@@ -44514,7 +44754,7 @@
|
|
|
44514
44754
|
});
|
|
44515
44755
|
});
|
|
44516
44756
|
var Step = /*#__PURE__*/React__namespace.forwardRef(function Step(inProps, ref) {
|
|
44517
|
-
var props = useThemeProps$
|
|
44757
|
+
var props = useThemeProps$b({
|
|
44518
44758
|
props: inProps,
|
|
44519
44759
|
name: 'MuiStep'
|
|
44520
44760
|
});
|
|
@@ -44705,7 +44945,7 @@
|
|
|
44705
44945
|
};
|
|
44706
44946
|
});
|
|
44707
44947
|
var StepIcon = /*#__PURE__*/React__namespace.forwardRef(function StepIcon(inProps, ref) {
|
|
44708
|
-
var props = useThemeProps$
|
|
44948
|
+
var props = useThemeProps$b({
|
|
44709
44949
|
props: inProps,
|
|
44710
44950
|
name: 'MuiStepIcon'
|
|
44711
44951
|
});
|
|
@@ -44904,7 +45144,7 @@
|
|
|
44904
45144
|
});
|
|
44905
45145
|
var StepLabel = /*#__PURE__*/React__namespace.forwardRef(function StepLabel(inProps, ref) {
|
|
44906
45146
|
var _slotProps$label;
|
|
44907
|
-
var props = useThemeProps$
|
|
45147
|
+
var props = useThemeProps$b({
|
|
44908
45148
|
props: inProps,
|
|
44909
45149
|
name: 'MuiStepLabel'
|
|
44910
45150
|
});
|
|
@@ -45068,7 +45308,7 @@
|
|
|
45068
45308
|
}));
|
|
45069
45309
|
});
|
|
45070
45310
|
var StepButton = /*#__PURE__*/React__namespace.forwardRef(function StepButton(inProps, ref) {
|
|
45071
|
-
var props = useThemeProps$
|
|
45311
|
+
var props = useThemeProps$b({
|
|
45072
45312
|
props: inProps,
|
|
45073
45313
|
name: 'MuiStepButton'
|
|
45074
45314
|
});
|
|
@@ -45202,7 +45442,7 @@
|
|
|
45202
45442
|
});
|
|
45203
45443
|
});
|
|
45204
45444
|
var StepConnector = /*#__PURE__*/React__namespace.forwardRef(function StepConnector(inProps, ref) {
|
|
45205
|
-
var props = useThemeProps$
|
|
45445
|
+
var props = useThemeProps$b({
|
|
45206
45446
|
props: inProps,
|
|
45207
45447
|
name: 'MuiStepConnector'
|
|
45208
45448
|
});
|
|
@@ -45299,7 +45539,7 @@
|
|
|
45299
45539
|
}
|
|
45300
45540
|
})({});
|
|
45301
45541
|
var StepContent = /*#__PURE__*/React__namespace.forwardRef(function StepContent(inProps, ref) {
|
|
45302
|
-
var props = useThemeProps$
|
|
45542
|
+
var props = useThemeProps$b({
|
|
45303
45543
|
props: inProps,
|
|
45304
45544
|
name: 'MuiStepContent'
|
|
45305
45545
|
});
|
|
@@ -45431,7 +45671,7 @@
|
|
|
45431
45671
|
});
|
|
45432
45672
|
var defaultConnector = /*#__PURE__*/jsxRuntime_1(StepConnector$1, {});
|
|
45433
45673
|
var Stepper = /*#__PURE__*/React__namespace.forwardRef(function Stepper(inProps, ref) {
|
|
45434
|
-
var props = useThemeProps$
|
|
45674
|
+
var props = useThemeProps$b({
|
|
45435
45675
|
props: inProps,
|
|
45436
45676
|
name: 'MuiStepper'
|
|
45437
45677
|
});
|
|
@@ -45541,7 +45781,7 @@
|
|
|
45541
45781
|
var Stepper$1 = Stepper;
|
|
45542
45782
|
|
|
45543
45783
|
var SwipeAreaRoot = styled$1('div', {
|
|
45544
|
-
shouldForwardProp: rootShouldForwardProp
|
|
45784
|
+
shouldForwardProp: rootShouldForwardProp$1
|
|
45545
45785
|
})(function (_ref) {
|
|
45546
45786
|
var theme = _ref.theme,
|
|
45547
45787
|
ownerState = _ref.ownerState;
|
|
@@ -45697,7 +45937,7 @@
|
|
|
45697
45937
|
}
|
|
45698
45938
|
var iOS = typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent);
|
|
45699
45939
|
var SwipeableDrawer = /*#__PURE__*/React__namespace.forwardRef(function SwipeableDrawer(inProps, ref) {
|
|
45700
|
-
var props = useThemeProps$
|
|
45940
|
+
var props = useThemeProps$c({
|
|
45701
45941
|
name: 'MuiSwipeableDrawer',
|
|
45702
45942
|
props: inProps
|
|
45703
45943
|
});
|
|
@@ -46613,7 +46853,7 @@
|
|
|
46613
46853
|
});
|
|
46614
46854
|
});
|
|
46615
46855
|
var Tab = /*#__PURE__*/React__namespace.forwardRef(function Tab(inProps, ref) {
|
|
46616
|
-
var props = useThemeProps$
|
|
46856
|
+
var props = useThemeProps$b({
|
|
46617
46857
|
props: inProps,
|
|
46618
46858
|
name: 'MuiTab'
|
|
46619
46859
|
});
|
|
@@ -46817,7 +47057,7 @@
|
|
|
46817
47057
|
});
|
|
46818
47058
|
var defaultComponent$4 = 'table';
|
|
46819
47059
|
var Table = /*#__PURE__*/React__namespace.forwardRef(function Table(inProps, ref) {
|
|
46820
|
-
var props = useThemeProps$
|
|
47060
|
+
var props = useThemeProps$b({
|
|
46821
47061
|
props: inProps,
|
|
46822
47062
|
name: 'MuiTable'
|
|
46823
47063
|
});
|
|
@@ -46938,7 +47178,7 @@
|
|
|
46938
47178
|
};
|
|
46939
47179
|
var defaultComponent$3 = 'tbody';
|
|
46940
47180
|
var TableBody = /*#__PURE__*/React__namespace.forwardRef(function TableBody(inProps, ref) {
|
|
46941
|
-
var props = useThemeProps$
|
|
47181
|
+
var props = useThemeProps$b({
|
|
46942
47182
|
props: inProps,
|
|
46943
47183
|
name: 'MuiTableBody'
|
|
46944
47184
|
});
|
|
@@ -47073,7 +47313,7 @@
|
|
|
47073
47313
|
* or otherwise a `<td>` element.
|
|
47074
47314
|
*/
|
|
47075
47315
|
var TableCell = /*#__PURE__*/React__namespace.forwardRef(function TableCell(inProps, ref) {
|
|
47076
|
-
var props = useThemeProps$
|
|
47316
|
+
var props = useThemeProps$b({
|
|
47077
47317
|
props: inProps,
|
|
47078
47318
|
name: 'MuiTableCell'
|
|
47079
47319
|
});
|
|
@@ -47212,7 +47452,7 @@
|
|
|
47212
47452
|
overflowX: 'auto'
|
|
47213
47453
|
});
|
|
47214
47454
|
var TableContainer = /*#__PURE__*/React__namespace.forwardRef(function TableContainer(inProps, ref) {
|
|
47215
|
-
var props = useThemeProps$
|
|
47455
|
+
var props = useThemeProps$b({
|
|
47216
47456
|
props: inProps,
|
|
47217
47457
|
name: 'MuiTableContainer'
|
|
47218
47458
|
});
|
|
@@ -47287,7 +47527,7 @@
|
|
|
47287
47527
|
};
|
|
47288
47528
|
var defaultComponent$2 = 'tfoot';
|
|
47289
47529
|
var TableFooter = /*#__PURE__*/React__namespace.forwardRef(function TableFooter(inProps, ref) {
|
|
47290
|
-
var props = useThemeProps$
|
|
47530
|
+
var props = useThemeProps$b({
|
|
47291
47531
|
props: inProps,
|
|
47292
47532
|
name: 'MuiTableFooter'
|
|
47293
47533
|
});
|
|
@@ -47366,7 +47606,7 @@
|
|
|
47366
47606
|
};
|
|
47367
47607
|
var defaultComponent$1 = 'thead';
|
|
47368
47608
|
var TableHead = /*#__PURE__*/React__namespace.forwardRef(function TableHead(inProps, ref) {
|
|
47369
|
-
var props = useThemeProps$
|
|
47609
|
+
var props = useThemeProps$b({
|
|
47370
47610
|
props: inProps,
|
|
47371
47611
|
name: 'MuiTableHead'
|
|
47372
47612
|
});
|
|
@@ -47462,7 +47702,7 @@
|
|
|
47462
47702
|
return ownerState.variant === 'regular' && theme.mixins.toolbar;
|
|
47463
47703
|
});
|
|
47464
47704
|
var Toolbar = /*#__PURE__*/React__namespace.forwardRef(function Toolbar(inProps, ref) {
|
|
47465
|
-
var props = useThemeProps$
|
|
47705
|
+
var props = useThemeProps$b({
|
|
47466
47706
|
props: inProps,
|
|
47467
47707
|
name: 'MuiToolbar'
|
|
47468
47708
|
});
|
|
@@ -47836,7 +48076,7 @@
|
|
|
47836
48076
|
*/
|
|
47837
48077
|
var TablePagination = /*#__PURE__*/React__namespace.forwardRef(function TablePagination(inProps, ref) {
|
|
47838
48078
|
var _slotProps$select;
|
|
47839
|
-
var props = useThemeProps$
|
|
48079
|
+
var props = useThemeProps$b({
|
|
47840
48080
|
props: inProps,
|
|
47841
48081
|
name: 'MuiTablePagination'
|
|
47842
48082
|
});
|
|
@@ -48192,7 +48432,7 @@
|
|
|
48192
48432
|
* based on the material table element parent (head, body, etc).
|
|
48193
48433
|
*/
|
|
48194
48434
|
var TableRow = /*#__PURE__*/React__namespace.forwardRef(function TableRow(inProps, ref) {
|
|
48195
|
-
var props = useThemeProps$
|
|
48435
|
+
var props = useThemeProps$b({
|
|
48196
48436
|
props: inProps,
|
|
48197
48437
|
name: 'MuiTableRow'
|
|
48198
48438
|
});
|
|
@@ -48340,7 +48580,7 @@
|
|
|
48340
48580
|
* A button based label for placing inside `TableCell` for column sorting.
|
|
48341
48581
|
*/
|
|
48342
48582
|
var TableSortLabel = /*#__PURE__*/React__namespace.forwardRef(function TableSortLabel(inProps, ref) {
|
|
48343
|
-
var props = useThemeProps$
|
|
48583
|
+
var props = useThemeProps$b({
|
|
48344
48584
|
props: inProps,
|
|
48345
48585
|
name: 'MuiTableSortLabel'
|
|
48346
48586
|
});
|
|
@@ -48551,7 +48791,7 @@
|
|
|
48551
48791
|
});
|
|
48552
48792
|
var TabScrollButton = /*#__PURE__*/React__namespace.forwardRef(function TabScrollButton(inProps, ref) {
|
|
48553
48793
|
var _slots$StartScrollBut, _slots$EndScrollButto;
|
|
48554
|
-
var props = useThemeProps$
|
|
48794
|
+
var props = useThemeProps$b({
|
|
48555
48795
|
props: inProps,
|
|
48556
48796
|
name: 'MuiTabScrollButton'
|
|
48557
48797
|
});
|
|
@@ -48828,7 +49068,7 @@
|
|
|
48828
49068
|
var defaultIndicatorStyle = {};
|
|
48829
49069
|
var warnedOnceTabPresent = false;
|
|
48830
49070
|
var Tabs = /*#__PURE__*/React__namespace.forwardRef(function Tabs(inProps, ref) {
|
|
48831
|
-
var props = useThemeProps$
|
|
49071
|
+
var props = useThemeProps$b({
|
|
48832
49072
|
props: inProps,
|
|
48833
49073
|
name: 'MuiTabs'
|
|
48834
49074
|
});
|
|
@@ -49539,7 +49779,7 @@
|
|
|
49539
49779
|
* - using the underlying components directly as shown in the demos
|
|
49540
49780
|
*/
|
|
49541
49781
|
var TextField = /*#__PURE__*/React__namespace.forwardRef(function TextField(inProps, ref) {
|
|
49542
|
-
var props = useThemeProps$
|
|
49782
|
+
var props = useThemeProps$b({
|
|
49543
49783
|
props: inProps,
|
|
49544
49784
|
name: 'MuiTextField'
|
|
49545
49785
|
});
|
|
@@ -49955,7 +50195,7 @@
|
|
|
49955
50195
|
var resolvedProps = resolveProps(_extends({}, contextProps, {
|
|
49956
50196
|
selected: isValueSelected(inProps.value, contextValue)
|
|
49957
50197
|
}), inProps);
|
|
49958
|
-
var props = useThemeProps$
|
|
50198
|
+
var props = useThemeProps$b({
|
|
49959
50199
|
props: resolvedProps,
|
|
49960
50200
|
name: 'MuiToggleButton'
|
|
49961
50201
|
});
|
|
@@ -50159,7 +50399,7 @@
|
|
|
50159
50399
|
}));
|
|
50160
50400
|
});
|
|
50161
50401
|
var ToggleButtonGroup = /*#__PURE__*/React__namespace.forwardRef(function ToggleButtonGroup(inProps, ref) {
|
|
50162
|
-
var props = useThemeProps$
|
|
50402
|
+
var props = useThemeProps$b({
|
|
50163
50403
|
props: inProps,
|
|
50164
50404
|
name: 'MuiToggleButtonGroup'
|
|
50165
50405
|
});
|
|
@@ -50828,7 +51068,7 @@
|
|
|
50828
51068
|
exports.useStepContext = useStepContext;
|
|
50829
51069
|
exports.useStepperContext = useStepperContext;
|
|
50830
51070
|
exports.useTheme = useTheme;
|
|
50831
|
-
exports.useThemeProps = useThemeProps$
|
|
51071
|
+
exports.useThemeProps = useThemeProps$b;
|
|
50832
51072
|
exports.withStyles = withStyles;
|
|
50833
51073
|
exports.withTheme = withTheme;
|
|
50834
51074
|
|