@mui/system 5.6.0 → 5.6.3

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.
Files changed (41) hide show
  1. package/Box/Box.d.ts +18 -1
  2. package/Box/Box.js +26 -0
  3. package/Box/Box.spec.d.ts +1 -1
  4. package/CHANGELOG.md +195 -32
  5. package/ThemeProvider/ThemeProvider.d.ts +7 -1
  6. package/ThemeProvider/ThemeProvider.js +9 -2
  7. package/createBox.js +0 -26
  8. package/createBox.spec.d.ts +1 -1
  9. package/createTheme/createBreakpoints.d.ts +4 -4
  10. package/createTheme/createSpacing.d.ts +10 -10
  11. package/cssVars/createCssVarsProvider.spec.d.ts +1 -1
  12. package/cssVars/createGetCssVar.d.ts +5 -5
  13. package/cssVars/cssVarsParser.d.ts +70 -70
  14. package/cssVars/getInitColorSchemeScript.d.ts +12 -12
  15. package/cssVars/index.d.ts +2 -2
  16. package/cssVars/useCurrentColorScheme.d.ts +50 -50
  17. package/esm/Box/Box.js +25 -0
  18. package/esm/ThemeProvider/ThemeProvider.js +9 -2
  19. package/esm/createBox.js +0 -25
  20. package/esm/spacing.js +3 -1
  21. package/esm/style.js +16 -1
  22. package/index.d.ts +4 -0
  23. package/index.js +1 -1
  24. package/index.spec.d.ts +1 -1
  25. package/legacy/Box/Box.js +25 -0
  26. package/legacy/ThemeProvider/ThemeProvider.js +9 -2
  27. package/legacy/createBox.js +0 -25
  28. package/legacy/index.js +1 -1
  29. package/legacy/spacing.js +3 -1
  30. package/legacy/style.js +16 -1
  31. package/modern/Box/Box.js +25 -0
  32. package/modern/ThemeProvider/ThemeProvider.js +9 -2
  33. package/modern/createBox.js +0 -25
  34. package/modern/index.js +1 -1
  35. package/modern/spacing.js +1 -1
  36. package/modern/style.js +16 -1
  37. package/package.json +5 -5
  38. package/spacing.js +3 -1
  39. package/style.js +16 -1
  40. package/styleFunctionSx/styleFunctionSx.d.ts +3 -1
  41. package/styleFunctionSx/styleFunctionSx.spec.d.ts +1 -1
@@ -1,10 +1,10 @@
1
- export declare type SpacingOptions = number | Spacing | ((abs: number) => number | string) | ((abs: number | string) => number | string) | ReadonlyArray<string | number>;
2
- export declare type SpacingArgument = number | string;
3
- export interface Spacing {
4
- (): string;
5
- (value: number): string;
6
- (topBottom: SpacingArgument, rightLeft: SpacingArgument): string;
7
- (top: SpacingArgument, rightLeft: SpacingArgument, bottom: SpacingArgument): string;
8
- (top: SpacingArgument, right: SpacingArgument, bottom: SpacingArgument, left: SpacingArgument): string;
9
- }
10
- export default function createSpacing(spacingInput?: SpacingOptions): Spacing;
1
+ export declare type SpacingOptions = number | Spacing | ((abs: number) => number | string) | ((abs: number | string) => number | string) | ReadonlyArray<string | number>;
2
+ export declare type SpacingArgument = number | string;
3
+ export interface Spacing {
4
+ (): string;
5
+ (value: number): string;
6
+ (topBottom: SpacingArgument, rightLeft: SpacingArgument): string;
7
+ (top: SpacingArgument, rightLeft: SpacingArgument, bottom: SpacingArgument): string;
8
+ (top: SpacingArgument, right: SpacingArgument, bottom: SpacingArgument, left: SpacingArgument): string;
9
+ }
10
+ export default function createSpacing(spacingInput?: SpacingOptions): Spacing;
@@ -1 +1 @@
1
- export {};
1
+ export {};
@@ -1,5 +1,5 @@
1
- /**
2
- * The benefit of this function is to help developers get CSS var from theme without specifying the whole variable
3
- * and they does not need to remember the prefix (defined once).
4
- */
5
- export default function createGetCssVar<T extends string = string>(prefix?: string): <AdditionalVars extends string = never>(field: T | AdditionalVars, ...vars: (T | AdditionalVars)[]) => string;
1
+ /**
2
+ * The benefit of this function is to help developers get CSS var from theme without specifying the whole variable
3
+ * and they does not need to remember the prefix (defined once).
4
+ */
5
+ export default function createGetCssVar<T extends string = string>(prefix?: string): <AdditionalVars extends string = never>(field: T | AdditionalVars, ...vars: (T | AdditionalVars)[]) => string;
@@ -1,70 +1,70 @@
1
- declare type NestedRecord<V = any> = {
2
- [k: string | number]: NestedRecord<V> | V;
3
- };
4
- /**
5
- * This function create an object from keys, value and then assign to target
6
- *
7
- * @param {Object} obj : the target object to be assigned
8
- * @param {string[]} keys
9
- * @param {string | number} value
10
- *
11
- * @example
12
- * const source = {}
13
- * assignNestedKeys(source, ['palette', 'primary'], 'var(--palette-primary)')
14
- * console.log(source) // { palette: { primary: 'var(--palette-primary)' } }
15
- *
16
- * @example
17
- * const source = { palette: { primary: 'var(--palette-primary)' } }
18
- * assignNestedKeys(source, ['palette', 'secondary'], 'var(--palette-secondary)')
19
- * console.log(source) // { palette: { primary: 'var(--palette-primary)', secondary: 'var(--palette-secondary)' } }
20
- */
21
- export declare const assignNestedKeys: <Object_1 = NestedRecord<any>, Value = any>(obj: Object_1, keys: Array<string>, value: Value) => void;
22
- /**
23
- *
24
- * @param {Object} obj : source object
25
- * @param {Function} callback : a function that will be called when
26
- * - the deepest key in source object is reached
27
- * - the value of the deepest key is NOT `undefined` | `null`
28
- *
29
- * @example
30
- * walkObjectDeep({ palette: { primary: { main: '#000000' } } }, console.log)
31
- * // ['palette', 'primary', 'main'] '#000000'
32
- */
33
- export declare const walkObjectDeep: <Value, T = Record<string, any>>(obj: T, callback: (keys: Array<string>, value: Value, scope: Record<string, string | number>) => void, shouldSkipPaths?: ((keys: Array<string>) => boolean) | undefined) => void;
34
- /**
35
- * a function that parse theme and return { css, vars }
36
- *
37
- * @param {Object} theme
38
- * @param {{
39
- * prefix?: string,
40
- * basePrefix?: string,
41
- * shouldSkipGeneratingVar?: (objectPathKeys: Array<string>, value: string | number) => boolean
42
- * }} options.
43
- * `basePrefix`: defined by design system.
44
- * `prefix`: defined by application
45
- *
46
- * the CSS variable value will be adjusted based on the provided `basePrefix` & `prefix` which can be found in `parsedTheme`.
47
- *
48
- * @returns {{ css: Object, vars: Object, parsedTheme: typeof theme }} `css` is the stylesheet, `vars` is an object to get css variable (same structure as theme), and `parsedTheme` is the cloned version of theme.
49
- *
50
- * @example
51
- * const { css, vars, parsedTheme } = parser({
52
- * fontSize: 12,
53
- * lineHeight: 1.2,
54
- * palette: { primary: { 500: 'var(--color)' } }
55
- * }, { prefix: 'foo' })
56
- *
57
- * console.log(css) // { '--foo-fontSize': '12px', '--foo-lineHeight': 1.2, '--foo-palette-primary-500': 'var(--foo-color)' }
58
- * console.log(vars) // { fontSize: '--foo-fontSize', lineHeight: '--foo-lineHeight', palette: { primary: { 500: 'var(--foo-palette-primary-500)' } } }
59
- * console.log(parsedTheme) // { fontSize: 12, lineHeight: 1.2, palette: { primary: { 500: 'var(--foo-color)' } } }
60
- */
61
- export default function cssVarsParser<T extends Record<string, any>>(theme: T, options?: {
62
- prefix?: string;
63
- basePrefix?: string;
64
- shouldSkipGeneratingVar?: (objectPathKeys: Array<string>, value: string | number) => boolean;
65
- }): {
66
- css: NestedRecord<string>;
67
- vars: NestedRecord<string>;
68
- parsedTheme: T;
69
- };
70
- export {};
1
+ declare type NestedRecord<V = any> = {
2
+ [k: string | number]: NestedRecord<V> | V;
3
+ };
4
+ /**
5
+ * This function create an object from keys, value and then assign to target
6
+ *
7
+ * @param {Object} obj : the target object to be assigned
8
+ * @param {string[]} keys
9
+ * @param {string | number} value
10
+ *
11
+ * @example
12
+ * const source = {}
13
+ * assignNestedKeys(source, ['palette', 'primary'], 'var(--palette-primary)')
14
+ * console.log(source) // { palette: { primary: 'var(--palette-primary)' } }
15
+ *
16
+ * @example
17
+ * const source = { palette: { primary: 'var(--palette-primary)' } }
18
+ * assignNestedKeys(source, ['palette', 'secondary'], 'var(--palette-secondary)')
19
+ * console.log(source) // { palette: { primary: 'var(--palette-primary)', secondary: 'var(--palette-secondary)' } }
20
+ */
21
+ export declare const assignNestedKeys: <Object_1 = NestedRecord<any>, Value = any>(obj: Object_1, keys: Array<string>, value: Value) => void;
22
+ /**
23
+ *
24
+ * @param {Object} obj : source object
25
+ * @param {Function} callback : a function that will be called when
26
+ * - the deepest key in source object is reached
27
+ * - the value of the deepest key is NOT `undefined` | `null`
28
+ *
29
+ * @example
30
+ * walkObjectDeep({ palette: { primary: { main: '#000000' } } }, console.log)
31
+ * // ['palette', 'primary', 'main'] '#000000'
32
+ */
33
+ export declare const walkObjectDeep: <Value, T = Record<string, any>>(obj: T, callback: (keys: Array<string>, value: Value, scope: Record<string, string | number>) => void, shouldSkipPaths?: ((keys: Array<string>) => boolean) | undefined) => void;
34
+ /**
35
+ * a function that parse theme and return { css, vars }
36
+ *
37
+ * @param {Object} theme
38
+ * @param {{
39
+ * prefix?: string,
40
+ * basePrefix?: string,
41
+ * shouldSkipGeneratingVar?: (objectPathKeys: Array<string>, value: string | number) => boolean
42
+ * }} options.
43
+ * `basePrefix`: defined by design system.
44
+ * `prefix`: defined by application
45
+ *
46
+ * the CSS variable value will be adjusted based on the provided `basePrefix` & `prefix` which can be found in `parsedTheme`.
47
+ *
48
+ * @returns {{ css: Object, vars: Object, parsedTheme: typeof theme }} `css` is the stylesheet, `vars` is an object to get css variable (same structure as theme), and `parsedTheme` is the cloned version of theme.
49
+ *
50
+ * @example
51
+ * const { css, vars, parsedTheme } = parser({
52
+ * fontSize: 12,
53
+ * lineHeight: 1.2,
54
+ * palette: { primary: { 500: 'var(--color)' } }
55
+ * }, { prefix: 'foo' })
56
+ *
57
+ * console.log(css) // { '--foo-fontSize': '12px', '--foo-lineHeight': 1.2, '--foo-palette-primary-500': 'var(--foo-color)' }
58
+ * console.log(vars) // { fontSize: '--foo-fontSize', lineHeight: '--foo-lineHeight', palette: { primary: { 500: 'var(--foo-palette-primary-500)' } } }
59
+ * console.log(parsedTheme) // { fontSize: 12, lineHeight: 1.2, palette: { primary: { 500: 'var(--foo-color)' } } }
60
+ */
61
+ export default function cssVarsParser<T extends Record<string, any>>(theme: T, options?: {
62
+ prefix?: string;
63
+ basePrefix?: string;
64
+ shouldSkipGeneratingVar?: (objectPathKeys: Array<string>, value: string | number) => boolean;
65
+ }): {
66
+ css: NestedRecord<string>;
67
+ vars: NestedRecord<string>;
68
+ parsedTheme: T;
69
+ };
70
+ export {};
@@ -1,12 +1,12 @@
1
- /// <reference types="react" />
2
- export declare const DEFAULT_MODE_STORAGE_KEY = "mui-mode";
3
- export declare const DEFAULT_COLOR_SCHEME_STORAGE_KEY = "mui-color-scheme";
4
- export declare const DEFAULT_ATTRIBUTE = "data-mui-color-scheme";
5
- export default function getInitColorSchemeScript(options?: {
6
- enableSystem?: boolean;
7
- defaultLightColorScheme?: string;
8
- defaultDarkColorScheme?: string;
9
- modeStorageKey?: string;
10
- colorSchemeStorageKey?: string;
11
- attribute?: string;
12
- }): JSX.Element;
1
+ /// <reference types="react" />
2
+ export declare const DEFAULT_MODE_STORAGE_KEY = "mui-mode";
3
+ export declare const DEFAULT_COLOR_SCHEME_STORAGE_KEY = "mui-color-scheme";
4
+ export declare const DEFAULT_ATTRIBUTE = "data-mui-color-scheme";
5
+ export default function getInitColorSchemeScript(options?: {
6
+ enableSystem?: boolean;
7
+ defaultLightColorScheme?: string;
8
+ defaultDarkColorScheme?: string;
9
+ modeStorageKey?: string;
10
+ colorSchemeStorageKey?: string;
11
+ attribute?: string;
12
+ }): JSX.Element;
@@ -1,2 +1,2 @@
1
- export { default } from './createCssVarsProvider';
2
- export type { CreateCssVarsProviderResult } from './createCssVarsProvider';
1
+ export { default } from './createCssVarsProvider';
2
+ export type { CreateCssVarsProviderResult } from './createCssVarsProvider';
@@ -1,50 +1,50 @@
1
- export declare type Mode = 'light' | 'dark' | 'system';
2
- export declare type SystemMode = Exclude<Mode, 'system'>;
3
- export interface State<SupportedColorScheme extends string> {
4
- /**
5
- * User selected mode.
6
- * Note: on the server, mode is always undefined
7
- */
8
- mode: Mode | undefined;
9
- /**
10
- * Only valid if `mode: 'system'`, either 'light' | 'dark'.
11
- */
12
- systemMode: SystemMode | undefined;
13
- /**
14
- * The color scheme for the light mode.
15
- */
16
- lightColorScheme: SupportedColorScheme;
17
- /**
18
- * The color scheme for the dark mode.
19
- */
20
- darkColorScheme: SupportedColorScheme;
21
- }
22
- export declare type Result<SupportedColorScheme extends string> = State<SupportedColorScheme> & {
23
- /**
24
- * The current application color scheme. It is always `undefined` on the server.
25
- */
26
- colorScheme: SupportedColorScheme | undefined;
27
- /**
28
- * `mode` is saved to internal state and localStorage
29
- * If `mode` is null, it will be reset to the defaultMode
30
- */
31
- setMode: (mode: Mode | null) => void;
32
- /**
33
- * `colorScheme` is saved to internal state and localStorage
34
- * If `colorScheme` is null, it will be reset to the defaultColorScheme (light | dark)
35
- */
36
- setColorScheme: (colorScheme: SupportedColorScheme | Partial<{
37
- light: SupportedColorScheme | null;
38
- dark: SupportedColorScheme | null;
39
- }> | null) => void;
40
- };
41
- export declare function getSystemMode(mode: undefined | string): SystemMode | undefined;
42
- export declare function getColorScheme<SupportedColorScheme extends string>(state: State<SupportedColorScheme>): SupportedColorScheme | undefined;
43
- export default function useCurrentColorScheme<SupportedColorScheme extends string>(options: {
44
- defaultLightColorScheme: SupportedColorScheme;
45
- defaultDarkColorScheme: SupportedColorScheme;
46
- supportedColorSchemes: Array<SupportedColorScheme>;
47
- defaultMode?: Mode;
48
- modeStorageKey?: string;
49
- colorSchemeStorageKey?: string;
50
- }): Result<SupportedColorScheme>;
1
+ export declare type Mode = 'light' | 'dark' | 'system';
2
+ export declare type SystemMode = Exclude<Mode, 'system'>;
3
+ export interface State<SupportedColorScheme extends string> {
4
+ /**
5
+ * User selected mode.
6
+ * Note: on the server, mode is always undefined
7
+ */
8
+ mode: Mode | undefined;
9
+ /**
10
+ * Only valid if `mode: 'system'`, either 'light' | 'dark'.
11
+ */
12
+ systemMode: SystemMode | undefined;
13
+ /**
14
+ * The color scheme for the light mode.
15
+ */
16
+ lightColorScheme: SupportedColorScheme;
17
+ /**
18
+ * The color scheme for the dark mode.
19
+ */
20
+ darkColorScheme: SupportedColorScheme;
21
+ }
22
+ export declare type Result<SupportedColorScheme extends string> = State<SupportedColorScheme> & {
23
+ /**
24
+ * The current application color scheme. It is always `undefined` on the server.
25
+ */
26
+ colorScheme: SupportedColorScheme | undefined;
27
+ /**
28
+ * `mode` is saved to internal state and localStorage
29
+ * If `mode` is null, it will be reset to the defaultMode
30
+ */
31
+ setMode: (mode: Mode | null) => void;
32
+ /**
33
+ * `colorScheme` is saved to internal state and localStorage
34
+ * If `colorScheme` is null, it will be reset to the defaultColorScheme (light | dark)
35
+ */
36
+ setColorScheme: (colorScheme: SupportedColorScheme | Partial<{
37
+ light: SupportedColorScheme | null;
38
+ dark: SupportedColorScheme | null;
39
+ }> | null) => void;
40
+ };
41
+ export declare function getSystemMode(mode: undefined | string): SystemMode | undefined;
42
+ export declare function getColorScheme<SupportedColorScheme extends string>(state: State<SupportedColorScheme>): SupportedColorScheme | undefined;
43
+ export default function useCurrentColorScheme<SupportedColorScheme extends string>(options: {
44
+ defaultLightColorScheme: SupportedColorScheme;
45
+ defaultDarkColorScheme: SupportedColorScheme;
46
+ supportedColorSchemes: Array<SupportedColorScheme>;
47
+ defaultMode?: Mode;
48
+ modeStorageKey?: string;
49
+ colorSchemeStorageKey?: string;
50
+ }): Result<SupportedColorScheme>;
package/esm/Box/Box.js CHANGED
@@ -1,3 +1,28 @@
1
+ import PropTypes from 'prop-types';
1
2
  import createBox from '../createBox';
2
3
  const Box = createBox();
4
+ process.env.NODE_ENV !== "production" ? Box.propTypes
5
+ /* remove-proptypes */
6
+ = {
7
+ // ----------------------------- Warning --------------------------------
8
+ // | These PropTypes are generated from the TypeScript type definitions |
9
+ // | To update them edit the d.ts file and run "yarn proptypes" |
10
+ // ----------------------------------------------------------------------
11
+
12
+ /**
13
+ * @ignore
14
+ */
15
+ children: PropTypes.node,
16
+
17
+ /**
18
+ * The component used for the root node.
19
+ * Either a string to use a HTML element or a component.
20
+ */
21
+ component: PropTypes.elementType,
22
+
23
+ /**
24
+ * The system prop that allows defining system overrides as well as additional CSS styles.
25
+ */
26
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
27
+ } : void 0;
3
28
  export default Box;
@@ -38,7 +38,14 @@ function ThemeProvider(props) {
38
38
  });
39
39
  }
40
40
 
41
- process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes = {
41
+ process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes
42
+ /* remove-proptypes */
43
+ = {
44
+ // ----------------------------- Warning --------------------------------
45
+ // | These PropTypes are generated from the TypeScript type definitions |
46
+ // | To update them edit the d.ts file and run "yarn proptypes" |
47
+ // ----------------------------------------------------------------------
48
+
42
49
  /**
43
50
  * Your component tree.
44
51
  */
@@ -47,7 +54,7 @@ process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes = {
47
54
  /**
48
55
  * A theme object. You can provide a function to extend the outer theme.
49
56
  */
50
- theme: PropTypes.oneOfType([PropTypes.object, PropTypes.func]).isRequired
57
+ theme: PropTypes.oneOfType([PropTypes.func, PropTypes.object]).isRequired
51
58
  } : void 0;
52
59
 
53
60
  if (process.env.NODE_ENV !== 'production') {
package/esm/createBox.js CHANGED
@@ -2,7 +2,6 @@ import _extends from "@babel/runtime/helpers/esm/extends";
2
2
  import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
3
3
  const _excluded = ["className", "component"];
4
4
  import * as React from 'react';
5
- import PropTypes from 'prop-types';
6
5
  import clsx from 'clsx';
7
6
  import styled from '@mui/styled-engine';
8
7
  import defaultStyleFunctionSx, { extendSxProp } from './styleFunctionSx';
@@ -33,29 +32,5 @@ export default function createBox(options = {}) {
33
32
  theme: theme
34
33
  }, other));
35
34
  });
36
- process.env.NODE_ENV !== "production" ? Box.propTypes
37
- /* remove-proptypes */
38
- = {
39
- // ----------------------------- Warning --------------------------------
40
- // | These PropTypes are generated from the TypeScript type definitions |
41
- // | To update them edit the d.ts file and run "yarn proptypes" |
42
- // ----------------------------------------------------------------------
43
-
44
- /**
45
- * @ignore
46
- */
47
- children: PropTypes.node,
48
-
49
- /**
50
- * The component used for the root node.
51
- * Either a string to use a HTML element or a component.
52
- */
53
- component: PropTypes.elementType,
54
-
55
- /**
56
- * @ignore
57
- */
58
- sx: PropTypes.oneOfType([PropTypes.object, PropTypes.array, PropTypes.func])
59
- } : void 0;
60
35
  return Box;
61
36
  }
package/esm/spacing.js CHANGED
@@ -43,7 +43,9 @@ const marginKeys = ['m', 'mt', 'mr', 'mb', 'ml', 'mx', 'my', 'margin', 'marginTo
43
43
  const paddingKeys = ['p', 'pt', 'pr', 'pb', 'pl', 'px', 'py', 'padding', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft', 'paddingX', 'paddingY', 'paddingInline', 'paddingInlineStart', 'paddingInlineEnd', 'paddingBlock', 'paddingBlockStart', 'paddingBlockEnd'];
44
44
  const spacingKeys = [...marginKeys, ...paddingKeys];
45
45
  export function createUnaryUnit(theme, themeKey, defaultValue, propName) {
46
- const themeSpacing = getPath(theme, themeKey) || defaultValue;
46
+ var _getPath;
47
+
48
+ const themeSpacing = (_getPath = getPath(theme, themeKey)) != null ? _getPath : defaultValue;
47
49
 
48
50
  if (typeof themeSpacing === 'number') {
49
51
  return abs => {
package/esm/style.js CHANGED
@@ -4,9 +4,24 @@ import { handleBreakpoints } from './breakpoints';
4
4
  export function getPath(obj, path) {
5
5
  if (!path || typeof path !== 'string') {
6
6
  return null;
7
+ } // Check if CSS variables are used
8
+
9
+
10
+ if (obj && obj.vars) {
11
+ const val = `vars.${path}`.split('.').reduce((acc, item) => acc && acc[item] ? acc[item] : null, obj);
12
+
13
+ if (val != null) {
14
+ return val;
15
+ }
7
16
  }
8
17
 
9
- return path.split('.').reduce((acc, item) => acc && acc[item] ? acc[item] : null, obj);
18
+ return path.split('.').reduce((acc, item) => {
19
+ if (acc && acc[item] != null) {
20
+ return acc[item];
21
+ }
22
+
23
+ return null;
24
+ }, obj);
10
25
  }
11
26
 
12
27
  function getValue(themeMapping, transform, propValueFinal, userValue = propValueFinal) {
package/index.d.ts CHANGED
@@ -23,6 +23,10 @@ export const borderRight: SimpleStyleFunction<'borderRight'>;
23
23
  export const borderBottom: SimpleStyleFunction<'borderBottom'>;
24
24
  export const borderLeft: SimpleStyleFunction<'borderLeft'>;
25
25
  export const borderColor: SimpleStyleFunction<'borderColor'>;
26
+ export const borderTopColor: SimpleStyleFunction<'borderTopColor'>;
27
+ export const borderRightColor: SimpleStyleFunction<'borderRightColor'>;
28
+ export const borderBottomColor: SimpleStyleFunction<'borderBottomColor'>;
29
+ export const borderLeftColor: SimpleStyleFunction<'borderLeftColor'>;
26
30
  export const borderRadius: SimpleStyleFunction<'borderRadius'>;
27
31
  export type BordersProps = PropsFor<typeof borders>;
28
32
 
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.6.0
1
+ /** @license MUI v5.6.3
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/index.spec.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export {};
package/legacy/Box/Box.js CHANGED
@@ -1,3 +1,28 @@
1
+ import PropTypes from 'prop-types';
1
2
  import createBox from '../createBox';
2
3
  var Box = createBox();
4
+ process.env.NODE_ENV !== "production" ? Box.propTypes
5
+ /* remove-proptypes */
6
+ = {
7
+ // ----------------------------- Warning --------------------------------
8
+ // | These PropTypes are generated from the TypeScript type definitions |
9
+ // | To update them edit the d.ts file and run "yarn proptypes" |
10
+ // ----------------------------------------------------------------------
11
+
12
+ /**
13
+ * @ignore
14
+ */
15
+ children: PropTypes.node,
16
+
17
+ /**
18
+ * The component used for the root node.
19
+ * Either a string to use a HTML element or a component.
20
+ */
21
+ component: PropTypes.elementType,
22
+
23
+ /**
24
+ * The system prop that allows defining system overrides as well as additional CSS styles.
25
+ */
26
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
27
+ } : void 0;
3
28
  export default Box;
@@ -37,7 +37,14 @@ function ThemeProvider(props) {
37
37
  });
38
38
  }
39
39
 
40
- process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes = {
40
+ process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes
41
+ /* remove-proptypes */
42
+ = {
43
+ // ----------------------------- Warning --------------------------------
44
+ // | These PropTypes are generated from the TypeScript type definitions |
45
+ // | To update them edit the d.ts file and run "yarn proptypes" |
46
+ // ----------------------------------------------------------------------
47
+
41
48
  /**
42
49
  * Your component tree.
43
50
  */
@@ -46,7 +53,7 @@ process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes = {
46
53
  /**
47
54
  * A theme object. You can provide a function to extend the outer theme.
48
55
  */
49
- theme: PropTypes.oneOfType([PropTypes.object, PropTypes.func]).isRequired
56
+ theme: PropTypes.oneOfType([PropTypes.func, PropTypes.object]).isRequired
50
57
  } : void 0;
51
58
 
52
59
  if (process.env.NODE_ENV !== 'production') {
@@ -1,7 +1,6 @@
1
1
  import _extends from "@babel/runtime/helpers/esm/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
3
3
  import * as React from 'react';
4
- import PropTypes from 'prop-types';
5
4
  import clsx from 'clsx';
6
5
  import styled from '@mui/styled-engine';
7
6
  import defaultStyleFunctionSx, { extendSxProp } from './styleFunctionSx';
@@ -32,29 +31,5 @@ export default function createBox() {
32
31
  theme: theme
33
32
  }, other));
34
33
  });
35
- process.env.NODE_ENV !== "production" ? Box.propTypes
36
- /* remove-proptypes */
37
- = {
38
- // ----------------------------- Warning --------------------------------
39
- // | These PropTypes are generated from the TypeScript type definitions |
40
- // | To update them edit the d.ts file and run "yarn proptypes" |
41
- // ----------------------------------------------------------------------
42
-
43
- /**
44
- * @ignore
45
- */
46
- children: PropTypes.node,
47
-
48
- /**
49
- * The component used for the root node.
50
- * Either a string to use a HTML element or a component.
51
- */
52
- component: PropTypes.elementType,
53
-
54
- /**
55
- * @ignore
56
- */
57
- sx: PropTypes.oneOfType([PropTypes.object, PropTypes.array, PropTypes.func])
58
- } : void 0;
59
34
  return Box;
60
35
  }
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.6.0
1
+ /** @license MUI v5.6.3
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/legacy/spacing.js CHANGED
@@ -50,7 +50,9 @@ var marginKeys = ['m', 'mt', 'mr', 'mb', 'ml', 'mx', 'my', 'margin', 'marginTop'
50
50
  var paddingKeys = ['p', 'pt', 'pr', 'pb', 'pl', 'px', 'py', 'padding', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft', 'paddingX', 'paddingY', 'paddingInline', 'paddingInlineStart', 'paddingInlineEnd', 'paddingBlock', 'paddingBlockStart', 'paddingBlockEnd'];
51
51
  var spacingKeys = [].concat(marginKeys, paddingKeys);
52
52
  export function createUnaryUnit(theme, themeKey, defaultValue, propName) {
53
- var themeSpacing = getPath(theme, themeKey) || defaultValue;
53
+ var _getPath;
54
+
55
+ var themeSpacing = (_getPath = getPath(theme, themeKey)) != null ? _getPath : defaultValue;
54
56
 
55
57
  if (typeof themeSpacing === 'number') {
56
58
  return function (abs) {
package/legacy/style.js CHANGED
@@ -5,10 +5,25 @@ import { handleBreakpoints } from './breakpoints';
5
5
  export function getPath(obj, path) {
6
6
  if (!path || typeof path !== 'string') {
7
7
  return null;
8
+ } // Check if CSS variables are used
9
+
10
+
11
+ if (obj && obj.vars) {
12
+ var val = "vars.".concat(path).split('.').reduce(function (acc, item) {
13
+ return acc && acc[item] ? acc[item] : null;
14
+ }, obj);
15
+
16
+ if (val != null) {
17
+ return val;
18
+ }
8
19
  }
9
20
 
10
21
  return path.split('.').reduce(function (acc, item) {
11
- return acc && acc[item] ? acc[item] : null;
22
+ if (acc && acc[item] != null) {
23
+ return acc[item];
24
+ }
25
+
26
+ return null;
12
27
  }, obj);
13
28
  }
14
29
 
package/modern/Box/Box.js CHANGED
@@ -1,3 +1,28 @@
1
+ import PropTypes from 'prop-types';
1
2
  import createBox from '../createBox';
2
3
  const Box = createBox();
4
+ process.env.NODE_ENV !== "production" ? Box.propTypes
5
+ /* remove-proptypes */
6
+ = {
7
+ // ----------------------------- Warning --------------------------------
8
+ // | These PropTypes are generated from the TypeScript type definitions |
9
+ // | To update them edit the d.ts file and run "yarn proptypes" |
10
+ // ----------------------------------------------------------------------
11
+
12
+ /**
13
+ * @ignore
14
+ */
15
+ children: PropTypes.node,
16
+
17
+ /**
18
+ * The component used for the root node.
19
+ * Either a string to use a HTML element or a component.
20
+ */
21
+ component: PropTypes.elementType,
22
+
23
+ /**
24
+ * The system prop that allows defining system overrides as well as additional CSS styles.
25
+ */
26
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
27
+ } : void 0;
3
28
  export default Box;