@mui/system 7.3.2 → 7.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,66 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 7.3.3
4
+
5
+ <!-- generated comparing v7.3.2..master -->
6
+
7
+ _Sep 30, 2025_
8
+
9
+ A big thanks to the 14 contributors who made this release possible.
10
+
11
+ ### `@mui/material@7.3.3`
12
+
13
+ - [Autocomplete] Sync highlighted index when popup is opened (#46894) @ZeeshanTamboli
14
+ - [CircularProgress] Add track slot via enableTrackSlot (#46907) @monam2
15
+ - [locale] Split locales into separate files (#46933) @christopherschroer
16
+ - [Tabs] Fix not scrolling to correct tab after refresh when auto scrollable (#46869) @Jayesh-11
17
+
18
+ ### Docs
19
+
20
+ - Add a guide for building extensible themes (#46896) @siriwatknp
21
+ - Add v7 community course to resources page (#46944) @alelthomas
22
+ - Improve performance of Default Theme Viewer (#46841) @sai6855
23
+ - Fix typo in blog component MainContent (#46868) @jonyen
24
+ - [Steppers] Replace TransitionProps with slotProps.transition (#46898) @sai6855
25
+
26
+ ### Core
27
+
28
+ - [blog] Fix year in Punta Cana retreat post (#46943) @mapache-salvaje
29
+ - [blog] Punta Cana retreat post (#46892) @mapache-salvaje
30
+ - [code-infra] Publish from CI (#46851) @Janpot
31
+ - [code-infra] Convert reportBrokenLink script to ts (#47002) @brijeshb42
32
+ - [code-infra] Update module resolution for typescript@next (#46940) @Janpot
33
+ - [code-infra] Run continuous releases during ci-check (#46948) @Janpot
34
+ - [code-infra] Fix github actions check for continuous release (#46941) @Janpot
35
+ - [code-infra] Address high/critical dependabot reports (#46937) @Janpot
36
+ - [code-infra] Update ci.yml triggers (#46860) @Janpot
37
+ - [code-infra] Exact match for renovate file name (#46916) @Janpot
38
+ - [code-infra] Disable dependency update for `@material-ui/core` in codemod (#46899) @Janpot
39
+ - [code-infra] Transpile `assertion-error` in karma tests (#46909) @Janpot
40
+ - [code-infra] Disable browserstack on circleci cron jobs (#46905) @Janpot
41
+ - [code-infra] Remove `copy-files` command usage from packages (#46902) @brijeshb42
42
+ - [code-infra] Low-hanging ts conversion (#46903) @Janpot
43
+ - [code-infra] Bring batch of changes from vitest PR (#46795) @Janpot
44
+ - [code-infra] Remove dependency on `fs-extra` (#46755) @bernardobelchior
45
+ - [code-infra] Make error code extraction independent of build (#46865) @brijeshb42
46
+ - [docs-infra] Fix markdown generation script to find correct files (#46954) @siriwatknp
47
+ - [docs-infra] Fix unnecessary redirects (#46951) @Janpot
48
+ - [docs-infra] Remove `dangerouslySetInnerHTML` for ad description (#46936) @Janpot
49
+ - [docs-infra] Display "View as Markdown" only on Material UI (#46861) @siriwatknp
50
+ - [infra] Fix JSON files not being imported in TS demos (#47000) @bernardobelchior
51
+ - [infra] Turn `literal | (string & {})` to `PropTypes.string` (#46934) @siriwatknp
52
+ - [infra] Bump node.js version and make local usage strict (#46834) @brijeshb42
53
+ - [infra] Remove "main" fields from publishable packages (#46856) @brijeshb42
54
+ - [internal] Refactor `useForkRef` TS types: tighten `cleanupRef` and simplify ref typing (#46967) @wo-o29
55
+ - [internal] Fix naming to match convention (2099cb0) @oliviertassinari
56
+ - [internal] Fix naming to match convention (29aad62) @oliviertassinari
57
+ - [internal] Use same option as other repositories (eabda77) @oliviertassinari
58
+ - [internal] Normalize <meta name='viewport' (9d1922a) @oliviertassinari
59
+ - [internal] Normalize charset='utf-8' (f1aae00) @oliviertassinari
60
+ - [test] Split infinitive (0237fda) @oliviertassinari
61
+
62
+ All contributors of this release in alphabetical order: @alelthomas, @bernardobelchior, @brijeshb42, @christopherschroer, @Janpot, @Jayesh-11, @jonyen, @mapache-salvaje, @monam2, @oliviertassinari, @sai6855, @siriwatknp, @wo-o29, @ZeeshanTamboli
63
+
3
64
  ## 7.3.2
4
65
 
5
66
  <!-- generated comparing v7.3.1..master -->
@@ -2,7 +2,7 @@ import * as React from 'react';
2
2
  import { OverridableComponent } from '@mui/types';
3
3
  import useThemeSystem from "../useTheme/index.js";
4
4
  import { GridTypeMap } from "./GridProps.js";
5
- declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../createStyled/index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
5
+ declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
6
6
  declare function useThemePropsDefault<T extends {}>(props: T): T;
7
7
  export default function createGrid(options?: {
8
8
  createStyledComponent?: typeof defaultCreateStyledComponent;
@@ -10,7 +10,7 @@ interface StyleFunctionProps {
10
10
  };
11
11
  ownerState: StackOwnerState;
12
12
  }
13
- declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../createStyled/index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
13
+ declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
14
14
  declare function useThemePropsDefault<T extends {}>(props: T): T;
15
15
  export declare const style: ({
16
16
  ownerState,
@@ -2,7 +2,7 @@ import * as React from 'react';
2
2
  import { OverridableComponent } from '@mui/types';
3
3
  import useThemeSystem from "../useTheme/index.js";
4
4
  import { GridTypeMap } from "./GridProps.js";
5
- declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../createStyled/index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
5
+ declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
6
6
  declare function useThemePropsDefault<T extends {}>(props: T): T;
7
7
  export default function createGrid(options?: {
8
8
  createStyledComponent?: typeof defaultCreateStyledComponent;
@@ -10,7 +10,7 @@ interface StyleFunctionProps {
10
10
  };
11
11
  ownerState: StackOwnerState;
12
12
  }
13
- declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../createStyled/index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
13
+ declare const defaultCreateStyledComponent: import("@mui/styled-engine").CreateStyledComponent<import("../index.js").MUIStyledCommonProps<any>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}, any>;
14
14
  declare function useThemePropsDefault<T extends {}>(props: T): T;
15
15
  export declare const style: ({
16
16
  ownerState,
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v7.3.2
2
+ * @mui/system v7.3.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -39,6 +39,7 @@ export function experimental_sx() {
39
39
  }
40
40
  export { default as unstable_getThemeValue } from "./getThemeValue/index.js";
41
41
  export { default as Box } from "./Box/index.js";
42
+ export * from "./Box/index.js";
42
43
  export { default as createBox } from "./createBox/index.js";
43
44
  export { default as createStyled } from "./createStyled/index.js";
44
45
  export * from "./createStyled/index.js";
@@ -1 +1,2 @@
1
- export default function merge(acc: object, item: object): object;
1
+ declare function merge(acc: object, item: object): object;
2
+ export default merge;
@@ -1,6 +1,6 @@
1
- export const version = "7.3.2";
1
+ export const version = "7.3.3";
2
2
  export const major = Number("7");
3
3
  export const minor = Number("3");
4
- export const patch = Number("2");
4
+ export const patch = Number("3");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v7.3.2
2
+ * @mui/system v7.3.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -501,7 +501,18 @@ Object.keys(_typography).forEach(function (key) {
501
501
  });
502
502
  var _styleFunctionSx = _interopRequireWildcard(require("./styleFunctionSx"));
503
503
  var _getThemeValue = _interopRequireDefault(require("./getThemeValue"));
504
- var _Box = _interopRequireDefault(require("./Box"));
504
+ var _Box = _interopRequireWildcard(require("./Box"));
505
+ Object.keys(_Box).forEach(function (key) {
506
+ if (key === "default" || key === "__esModule") return;
507
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
508
+ if (key in exports && exports[key] === _Box[key]) return;
509
+ Object.defineProperty(exports, key, {
510
+ enumerable: true,
511
+ get: function () {
512
+ return _Box[key];
513
+ }
514
+ });
515
+ });
505
516
  var _createBox = _interopRequireDefault(require("./createBox"));
506
517
  var _createStyled = _interopRequireWildcard(require("./createStyled"));
507
518
  Object.keys(_createStyled).forEach(function (key) {
package/merge/merge.d.ts CHANGED
@@ -1 +1,2 @@
1
- export default function merge(acc: object, item: object): object;
1
+ declare function merge(acc: object, item: object): object;
2
+ export default merge;
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "@mui/system",
3
- "version": "7.3.2",
3
+ "version": "7.3.3",
4
4
  "author": "MUI Team",
5
5
  "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.",
6
- "main": "./index.js",
7
6
  "keywords": [
8
7
  "react",
9
8
  "react-component",
@@ -25,14 +24,14 @@
25
24
  "url": "https://opencollective.com/mui-org"
26
25
  },
27
26
  "dependencies": {
28
- "@babel/runtime": "^7.28.3",
27
+ "@babel/runtime": "^7.28.4",
29
28
  "clsx": "^2.1.1",
30
29
  "csstype": "^3.1.3",
31
30
  "prop-types": "^15.8.1",
32
- "@mui/private-theming": "^7.3.2",
33
- "@mui/utils": "^7.3.2",
34
- "@mui/styled-engine": "^7.3.2",
35
- "@mui/types": "^7.4.6"
31
+ "@mui/private-theming": "^7.3.3",
32
+ "@mui/styled-engine": "^7.3.3",
33
+ "@mui/utils": "^7.3.3",
34
+ "@mui/types": "^7.4.7"
36
35
  },
37
36
  "peerDependencies": {
38
37
  "@emotion/react": "^11.5.0",
@@ -59,6 +58,7 @@
59
58
  "node": ">=14.0.0"
60
59
  },
61
60
  "type": "commonjs",
61
+ "main": "./index.js",
62
62
  "types": "./index.d.ts",
63
63
  "exports": {
64
64
  "./package.json": "./package.json",
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 = "7.3.2";
7
+ const version = exports.version = "7.3.3";
8
8
  const major = exports.major = Number("7");
9
9
  const minor = exports.minor = Number("3");
10
- const patch = exports.patch = Number("2");
10
+ const patch = exports.patch = Number("3");
11
11
  const prerelease = exports.prerelease = undefined;
12
12
  var _default = exports.default = version;