@mui/system 6.1.5 → 6.1.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,57 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 6.1.6
4
+
5
+ <!-- generated comparing v6.1.5..master -->
6
+
7
+ _Oct 30, 2024_
8
+
9
+ A big thanks to the 13 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.1.6`
12
+
13
+ - [Autocomplete] Add missing `onMouseDown` type to AutocompleteRenderInputParams (#44183) @sai6855
14
+ - [Avatar] Fix AvatarGroup spacing (#44208) @aarongarciah
15
+ - [AvatarGroup] Fix spacing CSS variable (#44202) @navedqb
16
+ - [Divider] Fix CSS specificity order (#44204) @o-alexandrov
17
+ - [Slider] Fix value prop type warning (#44131) @joshkel
18
+ - Replace `useThemeProps` with `useDefaultProps` (#44193) @siriwatknp
19
+
20
+ ### `@mui/material-nextjs@6.1.6`
21
+
22
+ - Support Next 15.0.0 (#42428) @nphmuller
23
+
24
+ ### `@mui/lab@6.0.0-beta.14`
25
+
26
+ - [Tabs] Fix type of TabPanel component (#44207) @blackcow1987
27
+
28
+ ### `@mui/codemod@6.1.6`
29
+
30
+ - Fix system props default import specifier (#44170) @siriwatknp
31
+
32
+ ### `@mui/utils@6.1.6`
33
+
34
+ - Bring back useIsFocusVisible (#44256) @aarongarciah
35
+ - Bring back getReactNodeRef (#44248) @aarongarciah
36
+
37
+ ### Docs
38
+
39
+ - [material-ui][Avatar] Add AvatarGroup spacing demo (#44209) @aarongarciah
40
+ - Fix a typo in CONTRIBUTING.md (#44200) @prakhargupta1
41
+ - Mark the Hidden component as deprecated in the sidenav (#44068) @jimmycallin
42
+ - Use () when referencing functions (#44184) @oliviertassinari
43
+ - Follow types description convention (#44187) @oliviertassinari
44
+
45
+ ### Core
46
+
47
+ - Lock file maintenance (#43947)
48
+ - Run @mui/icon-material src:icons (#44097) @oliviertassinari
49
+ - [test][material-ui] Add tests for Pigment Grid and Stack (#44132) @DiegoAndai
50
+ - [test] Distinguish private with public tests API (#44188) @oliviertassinari
51
+ - [docs-infra] Add recursively the relative modules in the demos (#44150) @mnajdova
52
+
53
+ All contributors of this release in alphabetical order: @aarongarciah, @blackcow1987, @DiegoAndai, @jimmycallin, @joshkel, @mnajdova, @navedqb, @nphmuller, @o-alexandrov, @oliviertassinari, @prakhargupta1, @sai6855, @siriwatknp
54
+
3
55
  ## 6.1.5
4
56
 
5
57
  <!-- generated comparing v6.1.4..master -->
@@ -358,7 +410,7 @@ A big thanks to the 11 contributors who made this release possible.
358
410
 
359
411
  ### `@mui/material@6.0.2`
360
412
 
361
- - Fix `createTheme` with just color schemes (#43518) @siriwatknp
413
+ - Fix `createTheme()` with just color schemes (#43518) @siriwatknp
362
414
  - [Menu,Popover] Fix Backdrop props descriptions (#43503) @Michael-Hutchinson
363
415
  - [MenuList] Do not react to an event with modifier key pressed (#43505) @MateuszGroth
364
416
 
@@ -1100,7 +1152,7 @@ A big thanks to the 18 contributors who made this release possible.
1100
1152
 
1101
1153
  ### Docs
1102
1154
 
1103
- - Add `theme.applyStyles` and migrate docs (#42498) @siriwatknp
1155
+ - Add `theme.applyStyles()` and migrate docs (#42498) @siriwatknp
1104
1156
  - Fix dashboard template console error (#42594) @oliviertassinari
1105
1157
  - Migrate system props to `sx` prop (#42475) @siriwatknp
1106
1158
  - [material-ui]Fix duplicated sentence (#42521) @alexfauquette
@@ -7,45 +7,44 @@ export declare const DEFAULT_COLOR_SCHEME_STORAGE_KEY = "color-scheme";
7
7
  export declare const DEFAULT_ATTRIBUTE = "data-color-scheme";
8
8
  export interface InitColorSchemeScriptProps {
9
9
  /**
10
- * The default mode when the storage is empty (user's first visit)
10
+ * The default mode when the storage is empty (user's first visit).
11
11
  * @default 'system'
12
12
  */
13
13
  defaultMode?: 'system' | 'light' | 'dark';
14
14
  /**
15
- * The default color scheme to be used on the light mode
15
+ * The default color scheme to be used on the light mode.
16
16
  * @default 'light'
17
17
  */
18
18
  defaultLightColorScheme?: string;
19
19
  /**
20
- * The default color scheme to be used on the dark mode
20
+ * The default color scheme to be used on the dark mode.
21
21
  * * @default 'dark'
22
22
  */
23
23
  defaultDarkColorScheme?: string;
24
24
  /**
25
- * The node (provided as string) used to attach the color-scheme attribute
25
+ * The node (provided as string) used to attach the color-scheme attribute.
26
26
  * @default 'document.documentElement'
27
27
  */
28
28
  colorSchemeNode?: string;
29
29
  /**
30
- * localStorage key used to store `mode`
30
+ * localStorage key used to store `mode`.
31
31
  * @default 'mode'
32
32
  */
33
33
  modeStorageKey?: string;
34
34
  /**
35
- * localStorage key used to store `colorScheme`
35
+ * localStorage key used to store `colorScheme`.
36
36
  * @default 'color-scheme'
37
37
  */
38
38
  colorSchemeStorageKey?: string;
39
39
  /**
40
- * DOM attribute for applying color scheme
40
+ * DOM attribute for applying color scheme.
41
41
  * @default 'data-color-scheme'
42
- *
43
42
  * @example '.mode-%s' // for class based color scheme
44
43
  * @example '[data-mode-%s]' // for data-attribute without '='
45
44
  */
46
45
  attribute?: 'class' | 'data' | string;
47
46
  /**
48
- * Nonce string to pass to the inline script for CSP headers
47
+ * Nonce string to pass to the inline script for CSP headers.
49
48
  */
50
49
  nonce?: string | undefined;
51
50
  }
@@ -1,6 +1,6 @@
1
- export const version = "6.1.5";
1
+ export const version = "6.1.6";
2
2
  export const major = Number("6");
3
3
  export const minor = Number("1");
4
- export const patch = Number("5");
4
+ export const patch = Number("6");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v6.1.5
2
+ * @mui/system v6.1.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v6.1.5
2
+ * @mui/system v6.1.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1,6 +1,6 @@
1
- export const version = "6.1.5";
1
+ export const version = "6.1.6";
2
2
  export const major = Number("6");
3
3
  export const minor = Number("1");
4
- export const patch = Number("5");
4
+ export const patch = Number("6");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/system",
3
- "version": "6.1.5",
3
+ "version": "6.1.6",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.",
@@ -26,14 +26,14 @@
26
26
  "url": "https://opencollective.com/mui-org"
27
27
  },
28
28
  "dependencies": {
29
- "@babel/runtime": "^7.25.7",
29
+ "@babel/runtime": "^7.26.0",
30
30
  "clsx": "^2.1.1",
31
31
  "csstype": "^3.1.3",
32
32
  "prop-types": "^15.8.1",
33
- "@mui/private-theming": "^6.1.5",
34
- "@mui/styled-engine": "^6.1.5",
35
- "@mui/types": "^7.2.18",
36
- "@mui/utils": "^6.1.5"
33
+ "@mui/private-theming": "^6.1.6",
34
+ "@mui/utils": "^6.1.6",
35
+ "@mui/styled-engine": "^6.1.6",
36
+ "@mui/types": "^7.2.19"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@emotion/react": "^11.5.0",
package/version/index.js CHANGED
@@ -4,9 +4,9 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.version = exports.prerelease = exports.patch = exports.minor = exports.major = exports.default = void 0;
7
- const version = exports.version = "6.1.5";
7
+ const version = exports.version = "6.1.6";
8
8
  const major = exports.major = Number("6");
9
9
  const minor = exports.minor = Number("1");
10
- const patch = exports.patch = Number("5");
10
+ const patch = exports.patch = Number("6");
11
11
  const prerelease = exports.prerelease = undefined;
12
12
  var _default = exports.default = version;