Skip to content

Commit

Permalink
[core] Bump monorepo (#9420)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasTy authored Jun 22, 2023
1 parent 66c64aa commit 725d2cb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/.link-check-errors.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Broken links found by `yarn docs:link-check` that exist:

- https://mui.com/base/api/portal/#props
- https://mui.com/base-ui/react-autocomplete/hooks-api/#use-autocomplete
- https://mui.com/base-ui/react-portal/components-api
- https://mui.com/blog/material-ui-v4-is-out/#premium-themes-store-✨
- https://mui.com/size-snapshot
- https://mui.com/x/react-data-grid/filtering/#quick-filter
- https://mui.com/x/react-data-grid/migration-v4
2 changes: 1 addition & 1 deletion docs/data/data-grid/demo/demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ We're using the Data Grid to display the following features' table.
Filtering, sorting, and grouping (by plan) are at your disposal to help you explore the list.
:::

{{"demo": "PopularFeaturesDemo.tsx", "defaultCodeOpen": false, "bg": "inline", "hideToolbar": true}}
{{"demo": "PopularFeaturesDemo.js", "defaultCodeOpen": false, "bg": "inline", "hideToolbar": true}}

## API

Expand Down
2 changes: 1 addition & 1 deletion docs/data/date-pickers/base-concepts/base-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Each _Picker_ is available in a responsive, desktop and mobile variant:

There are many components available, each fitting specific use cases. Use the form below to find the component you need:

{{"demo": "ComponentExplorerNoSnap.tsx", "hideToolbar": true}}
{{"demo": "ComponentExplorerNoSnap.js", "hideToolbar": true}}

## Accessibility

Expand Down
6 changes: 5 additions & 1 deletion docs/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { pathnameToLanguage } from 'docs/src/modules/utils/helpers';
import createEmotionCache from 'docs/src/createEmotionCache';
import findActivePage from 'docs/src/modules/utils/findActivePage';
import { LicenseInfo } from '@mui/x-license-pro';
import getProductInfoFromUrl from 'docs/src/modules/utils/getProductInfoFromUrl';

// Remove the license warning from demonstration purposes
LicenseInfo.setLicenseKey(process.env.NEXT_PUBLIC_MUI_LICENSE);
Expand Down Expand Up @@ -171,6 +172,7 @@ function AppWrapper(props) {
const { children, emotionCache, pageProps } = props;

const router = useRouter();
const { productId, productCategoryId } = getProductInfoFromUrl(router.asPath);

React.useEffect(() => {
loadDependencies();
Expand All @@ -184,7 +186,7 @@ function AppWrapper(props) {
}, []);

let fonts = [];
if (router.pathname.match(/onepirate/)) {
if (pathnameToLanguage(router.asPath).canonicalAs.match(/onepirate/)) {
fonts = [
'https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Work+Sans:300,400&display=swap',
];
Expand Down Expand Up @@ -250,6 +252,8 @@ function AppWrapper(props) {
{fonts.map((font) => (
<link rel="stylesheet" href={font} key={font} />
))}
<meta name="mui:productId" content={productId} />
<meta name="mui:productCategoryId" content={productCategoryId} />
</NextHead>
<UserLanguageProvider defaultUserLanguage={pageProps.userLanguage}>
<CodeCopyProvider>
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1949,8 +1949,8 @@
react-transition-group "^4.4.5"

"@mui/monorepo@https://github.com/mui/material-ui.git#master":
version "5.13.2"
resolved "https://github.com/mui/material-ui.git#33f879bb53343b16feac5aee5d467f63b1faf832"
version "5.13.5"
resolved "https://github.com/mui/material-ui.git#a0891125e8b726caff6b40bd560b7c3656ad5617"

"@mui/private-theming@^5.13.1":
version "5.13.1"
Expand Down

0 comments on commit 725d2cb

Please sign in to comment.