@mui/docs 6.0.0-beta.1 → 6.0.0-beta.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.
@@ -177,8 +177,6 @@ const Root = styled('div')(({
177
177
  boxShadow: 'none',
178
178
  fontWeight: 'inherit',
179
179
  position: 'relative',
180
- display: 'flex',
181
- alignItems: 'center',
182
180
  userSelect: 'text'
183
181
  },
184
182
  '& .anchor-icon': {
package/i18n/i18n.js CHANGED
@@ -60,6 +60,8 @@ export function useSetUserLanguage() {
60
60
  return React.useContext(UserLanguageContext).setUserLanguage;
61
61
  }
62
62
  const warnedOnce = {};
63
+
64
+ // TODO, migrate to use warnOnce() helper
63
65
  const warn = (userLanguage, key, ignoreWarning) => {
64
66
  const fullKey = `${userLanguage}:${key}`;
65
67
  // No warnings in CI env
@@ -188,8 +188,6 @@ const Root = (0, _styles.styled)('div')(({
188
188
  boxShadow: 'none',
189
189
  fontWeight: 'inherit',
190
190
  position: 'relative',
191
- display: 'flex',
192
- alignItems: 'center',
193
191
  userSelect: 'text'
194
192
  },
195
193
  '& .anchor-icon': {
package/node/i18n/i18n.js CHANGED
@@ -73,6 +73,8 @@ function useSetUserLanguage() {
73
73
  return React.useContext(UserLanguageContext).setUserLanguage;
74
74
  }
75
75
  const warnedOnce = {};
76
+
77
+ // TODO, migrate to use warnOnce() helper
76
78
  const warn = (userLanguage, key, ignoreWarning) => {
77
79
  const fullKey = `${userLanguage}:${key}`;
78
80
  // No warnings in CI env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/docs",
3
- "version": "6.0.0-beta.1",
3
+ "version": "6.0.0-beta.3",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "MUI Docs - Documentation building blocks.",
@@ -50,7 +50,7 @@
50
50
  "directory": "build"
51
51
  },
52
52
  "engines": {
53
- "node": ">=12.0.0"
53
+ "node": ">=14.0.0"
54
54
  },
55
55
  "module": "./index.js"
56
56
  }