Skip to content

Commit 3fdfc35

Browse files
Merge branch 'master' into autocomplete-docs-get-opt-key
2 parents d729da3 + d4070a2 commit 3fdfc35

File tree

104 files changed

+2241
-4111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+2241
-4111
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,3 @@ jobs:
4848
env:
4949
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5050
- run: pnpm validate-declarations
51-
- name: pnpm release:tag
52-
run: |
53-
git remote -v
54-
pnpm release:tag --dryRun

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020
# Initializes the CodeQL tools for scanning.
2121
- name: Initialize CodeQL
22-
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
22+
uses: github/codeql-action/init@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
2323
with:
2424
languages: typescript
2525
config-file: ./.github/codeql/codeql-config.yml
@@ -30,4 +30,4 @@ jobs:
3030
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
3131
# queries: security-extended,security-and-quality
3232
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
33+
uses: github/codeql-action/analyze@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6

.github/workflows/publish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ on:
1717
required: false
1818
type: boolean
1919
default: true
20+
dist-tag:
21+
description: 'npm dist tag to publish to'
22+
required: false
23+
type: string
24+
default: 'latest'
2025

2126
permissions: {}
2227

@@ -48,5 +53,8 @@ jobs:
4853
if [ "${{ inputs.github-release }}" = "true" ]; then
4954
ARGS="$ARGS --github-release"
5055
fi
56+
if [ -n "${{ inputs.dist-tag }}" ]; then
57+
ARGS="$ARGS --tag ${{ inputs.dist-tag }}"
58+
fi
5159
5260
pnpm code-infra publish $ARGS

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
persist-credentials: false
2828
- name: Run analysis
29-
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
29+
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
3030
with:
3131
results_file: results.sarif
3232
results_format: sarif
@@ -40,6 +40,6 @@ jobs:
4040
publish_results: true
4141
# Upload the results to GitHub's code scanning dashboard.
4242
- name: Upload to code-scanning
43-
uses: github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
43+
uses: github/codeql-action/upload-sarif@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
4444
with:
4545
sarif_file: results.sarif

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# [Versions](https://mui.com/versions/)
22

3+
## 7.3.4
4+
5+
<!-- generated comparing v7.3.3..master -->
6+
7+
_Oct 2, 2025_
8+
9+
A big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Small update to revert a change that broke the `<Tabs>` component. Also publishing a beta version of `@mui/lab` which was accidentally published as a stable release.
12+
13+
14+
15+
- [Tabs] Revert "Fix not scrolling to correct tab after refresh when auto scrollable (#46869)" (#47014) @ZeeshanTamboli
16+
17+
### Docs
18+
19+
- Sort package manager automatically (#46897) @Janpot
20+
21+
### Core
22+
23+
- Bring @mui/lab back to unstable version (#47012) @Janpot
24+
- Fix `ThemeOptions` and `createTheme*` cyclic dependency (#47007) @siriwatknp
25+
26+
All contributors of this release in alphabetical order: @Janpot, @siriwatknp, @ZeeshanTamboli
27+
328
## 7.3.3
429

530
<!-- generated comparing v7.3.2..master -->

apps/bare-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"devDependencies": {
2525
"@pigment-css/nextjs-plugin": "0.0.30",
26-
"@types/node": "^20.19.17",
26+
"@types/node": "^20.19.19",
2727
"@types/react": "^19.1.13",
2828
"@types/react-dom": "^19.1.9",
2929
"eslint": "^9.36.0",

apps/pigment-css-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@pigment-css/nextjs-plugin": "0.0.30",
25-
"@types/node": "^20.19.17",
25+
"@types/node": "^20.19.19",
2626
"@types/react": "^19.1.13",
2727
"@types/react-dom": "^19.1.9",
2828
"eslint": "^9.36.0",

apps/pigment-css-vite-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
"@types/react": "^19.1.13",
3232
"@types/react-dom": "^19.1.9",
3333
"@types/webfontloader": "^1.6.38",
34-
"@vitejs/plugin-react": "^4.7.0",
34+
"@vitejs/plugin-react": "^5.0.4",
3535
"postcss": "^8.5.6",
3636
"postcss-combine-media-query": "^2.0.0",
37-
"vite": "5.4.20",
37+
"vite": "7.1.9",
3838
"vite-plugin-node-polyfills": "0.24.0",
3939
"vite-plugin-pages": "^0.33.1"
4040
},

apps/pigment-css-vite-app/vite.config.ts

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { defineConfig, splitVendorChunkPlugin } from 'vite';
1+
import { defineConfig } from 'vite';
22
import reactPlugin from '@vitejs/plugin-react';
33
import Pages from 'vite-plugin-pages';
44
import { nodePolyfills } from 'vite-plugin-node-polyfills';
55
import { pigment } from '@pigment-css/vite-plugin';
66
import { extendTheme } from '@mui/material/styles';
77

88
const theme = extendTheme({
9-
getSelector: function getSelector(colorScheme, css) {
9+
getSelector: function getSelector(colorScheme: string, css: string) {
1010
if (colorScheme) {
1111
return {
1212
[`@media (prefers-color-scheme: ${colorScheme})`]: {
@@ -43,10 +43,27 @@ export default defineConfig({
4343
sourceMap: true,
4444
displayName: true,
4545
}),
46-
splitVendorChunkPlugin(),
4746
Pages({
4847
exclude: ['**/*.test.*'],
4948
}),
5049
nodePolyfills(),
5150
],
51+
build: {
52+
rollupOptions: {
53+
output: {
54+
manualChunks: {
55+
mui: [
56+
'@mui/base',
57+
'@mui/icons-material',
58+
'@mui/lab',
59+
'@mui/material',
60+
'@mui/system',
61+
'@mui/utils',
62+
],
63+
react: ['react', 'react-dom', 'react-error-boundary', 'react-router-dom'],
64+
vendor: ['clsx'],
65+
},
66+
},
67+
},
68+
},
5269
});

docs/.env

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)