@mui/system 6.4.2 → 7.0.0-alpha.0

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/README.md CHANGED
@@ -9,11 +9,11 @@ Install the package in your project directory with:
9
9
  <!-- #default-branch-switch -->
10
10
 
11
11
  ```bash
12
- npm install @mui/system @emotion/react @emotion/styled
12
+ npm install @mui/system@next @emotion/react @emotion/styled
13
13
  ```
14
14
 
15
15
  ## Documentation
16
16
 
17
17
  <!-- #default-branch-switch -->
18
18
 
19
- Visit [https://mui.com/system/getting-started/](https://mui.com/system/getting-started/) to view the full documentation.
19
+ Visit [https://next.mui.com/system/getting-started/](https://next.mui.com/system/getting-started/) to view the full documentation.
@@ -31,13 +31,13 @@ export interface Breakpoints {
31
31
  /**
32
32
  * @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
33
33
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths greater than the screen size given by the breakpoint key (inclusive).
34
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-up-key-media-query)
34
+ * @see [API documentation](https://next.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-up-key-media-query)
35
35
  */
36
36
  up: (key: Breakpoint | number) => string;
37
37
  /**
38
38
  * @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
39
39
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths less than the screen size given by the breakpoint key (exclusive).
40
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-down-key-media-query)
40
+ * @see [API documentation](https://next.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-down-key-media-query)
41
41
  */
42
42
  down: (key: Breakpoint | number) => string;
43
43
  /**
@@ -45,14 +45,14 @@ export interface Breakpoints {
45
45
  * @param end - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
46
46
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths greater than
47
47
  * the screen size given by the breakpoint key in the first argument (inclusive) and less than the screen size given by the breakpoint key in the second argument (exclusive).
48
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-between-start-end-media-query)
48
+ * @see [API documentation](https://next.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-between-start-end-media-query)
49
49
  */
50
50
  between: (start: Breakpoint | number, end: Breakpoint | number) => string;
51
51
  /**
52
52
  * @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
53
53
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths starting from
54
54
  * the screen size given by the breakpoint key (inclusive) and stopping at the screen size given by the next breakpoint key (exclusive).
55
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-only-key-media-query)
55
+ * @see [API documentation](https://next.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-only-key-media-query)
56
56
  */
57
57
  only: (key: Breakpoint) => string;
58
58
  /**
@@ -1,6 +1,6 @@
1
- export const version = "6.4.2";
2
- export const major = Number("6");
3
- export const minor = Number("4");
4
- export const patch = Number("2");
5
- export const prerelease = undefined;
1
+ export const version = "7.0.0-alpha.0";
2
+ export const major = Number("7");
3
+ export const minor = Number("0");
4
+ export const patch = Number("0");
5
+ export const prerelease = "alpha.0";
6
6
  export default version;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v6.4.2
2
+ * @mui/system v7.0.0-alpha.0
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.4.2
2
+ * @mui/system v7.0.0-alpha.0
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.4.2";
2
- export const major = Number("6");
3
- export const minor = Number("4");
4
- export const patch = Number("2");
5
- export const prerelease = undefined;
1
+ export const version = "7.0.0-alpha.0";
2
+ export const major = Number("7");
3
+ export const minor = Number("0");
4
+ export const patch = Number("0");
5
+ export const prerelease = "alpha.0";
6
6
  export default version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/system",
3
- "version": "6.4.2",
3
+ "version": "7.0.0-alpha.0",
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.26.0",
29
+ "@babel/runtime": "^7.26.7",
30
30
  "clsx": "^2.1.1",
31
31
  "csstype": "^3.1.3",
32
32
  "prop-types": "^15.8.1",
33
- "@mui/private-theming": "^6.4.2",
34
- "@mui/styled-engine": "^6.4.2",
35
- "@mui/types": "^7.2.21",
36
- "@mui/utils": "^6.4.2"
33
+ "@mui/styled-engine": "7.0.0-alpha.0",
34
+ "@mui/types": "^7.2.22",
35
+ "@mui/utils": "7.0.0-alpha.0",
36
+ "@mui/private-theming": "7.0.0-alpha.0"
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.4.2";
8
- const major = exports.major = Number("6");
9
- const minor = exports.minor = Number("4");
10
- const patch = exports.patch = Number("2");
11
- const prerelease = exports.prerelease = undefined;
7
+ const version = exports.version = "7.0.0-alpha.0";
8
+ const major = exports.major = Number("7");
9
+ const minor = exports.minor = Number("0");
10
+ const patch = exports.patch = Number("0");
11
+ const prerelease = exports.prerelease = "alpha.0";
12
12
  var _default = exports.default = version;