Skip to content

Commit 81cea02

Browse files
committed
Bump React to 19
1 parent 38e3d65 commit 81cea02

File tree

28 files changed

+1040
-964
lines changed

28 files changed

+1040
-964
lines changed

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
"clean": "rimraf .next"
1010
},
1111
"dependencies": {
12-
"@pigment-css/react": "^0.0.16",
13-
"@mui/utils": "workspace:^",
12+
"@emotion/cache": "latest",
1413
"@mui/base": "workspace:^",
14+
"@mui/icons-material": "workspace:^",
1515
"@mui/lab": "workspace:^",
1616
"@mui/material": "workspace:^",
17-
"@mui/system": "workspace:^",
1817
"@mui/material-nextjs": "workspace:^",
19-
"@mui/icons-material": "workspace:^",
20-
"@emotion/cache": "latest",
18+
"@mui/system": "workspace:^",
19+
"@mui/utils": "workspace:^",
20+
"@pigment-css/react": "^0.0.16",
2121
"local-ui-lib": "workspace:^",
22-
"react": "^18.2.0",
23-
"react-dom": "^18.2.0",
24-
"next": "latest"
22+
"next": "latest",
23+
"react": "19.0.0-rc-100dfd7dab-20240701",
24+
"react-dom": "19.0.0-rc-100dfd7dab-20240701"
2525
},
2626
"devDependencies": {
2727
"@pigment-css/nextjs-plugin": "^0.0.16",
2828
"@types/node": "^20.5.7",
29-
"@types/react": "^18.2.55",
30-
"@types/react-dom": "^18.3.0",
29+
"@types/react": "npm:[email protected]",
30+
"@types/react-dom": "npm:[email protected]",
3131
"eslint": "^8.57.0",
3232
"typescript": "^5.4.5"
3333
},

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
"build": "vite build"
1010
},
1111
"dependencies": {
12-
"@pigment-css/react": "^0.0.16",
13-
"@mui/utils": "workspace:^",
1412
"@mui/base": "workspace:^",
13+
"@mui/icons-material": "workspace:^",
1514
"@mui/lab": "workspace:^",
1615
"@mui/material": "workspace:^",
1716
"@mui/system": "workspace:^",
18-
"@mui/icons-material": "workspace:^",
17+
"@mui/utils": "workspace:^",
18+
"@pigment-css/react": "^0.0.16",
1919
"clsx": "^2.1.1",
2020
"local-ui-lib": "workspace:^",
21-
"react": "^18.2.0",
22-
"react-dom": "^18.2.0",
21+
"react": "19.0.0-rc-100dfd7dab-20240701",
22+
"react-dom": "19.0.0-rc-100dfd7dab-20240701",
2323
"react-error-boundary": "^4.0.13",
2424
"react-router": "^6.23.1",
2525
"react-router-dom": "^6.23.1"
@@ -28,8 +28,8 @@
2828
"@babel/preset-react": "^7.24.7",
2929
"@babel/preset-typescript": "^7.24.7",
3030
"@pigment-css/vite-plugin": "^0.0.16",
31-
"@types/react": "^18.2.55",
32-
"@types/react-dom": "^18.3.0",
31+
"@types/react": "npm:[email protected]",
32+
"@types/react-dom": "npm:[email protected]",
3333
"@vitejs/plugin-react": "^4.3.1",
3434
"postcss": "^8.4.39",
3535
"postcss-combine-media-query": "^1.0.1",

benchmark/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"jss": "^10.10.0",
2828
"playwright": "^1.45.0",
2929
"prop-types": "^15.8.1",
30-
"react": "^18.2.0",
31-
"react-dom": "^18.2.0",
32-
"react-is": "^18.2.0",
30+
"react": "19.0.0-rc-100dfd7dab-20240701",
31+
"react-dom": "19.0.0-rc-100dfd7dab-20240701",
32+
"react-is": "19.0.0-rc-100dfd7dab-20240701",
3333
"react-jss": "^10.10.0",
3434
"react-redux": "^8.1.3",
3535
"redux": "^4.2.1",

docs/data/base/getting-started/quickstart/quickstart.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Please note that [react](https://www.npmjs.com/package/react) and [react-dom](ht
4040

4141
```json
4242
"peerDependencies": {
43-
"react": "^17.0.0 || ^18.0.0",
44-
"react-dom": "^17.0.0 || ^18.0.0"
43+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
44+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
4545
},
4646
```
4747

docs/data/joy/getting-started/installation/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Please note that [react](https://www.npmjs.com/package/react) and [react-dom](ht
3535

3636
```json
3737
"peerDependencies": {
38-
"react": "^17.0.0 || ^18.0.0",
39-
"react-dom": "^17.0.0 || ^18.0.0"
38+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
39+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
4040
},
4141
```
4242

docs/data/material/getting-started/installation/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Please note that [react](https://www.npmjs.com/package/react) and [react-dom](ht
3636

3737
```json
3838
"peerDependencies": {
39-
"react": "^17.0.0 || ^18.0.0",
40-
"react-dom": "^17.0.0 || ^18.0.0"
39+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
40+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
4141
},
4242
```
4343

docs/data/system/getting-started/installation/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Please note that [react](https://www.npmjs.com/package/react) is a peer dependen
3232

3333
```json
3434
"peerDependencies": {
35-
"react": "^17.0.0 || ^18.0.0"
35+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
3636
},
3737
```
3838

docs/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@
8888
"postcss": "^8.4.39",
8989
"postcss-import": "^16.1.0",
9090
"prop-types": "^15.8.1",
91-
"react": "^18.2.0",
92-
"react-dom": "^18.2.0",
91+
"react": "19.0.0-rc-100dfd7dab-20240701",
92+
"react-dom": "19.0.0-rc-100dfd7dab-20240701",
9393
"react-draggable": "^4.4.6",
9494
"react-final-form": "^6.5.9",
9595
"react-imask": "^7.6.1",
9696
"react-intersection-observer": "^9.10.3",
97-
"react-is": "^18.2.0",
97+
"react-is": "19.0.0-rc-100dfd7dab-20240701",
9898
"react-number-format": "^5.4.0",
9999
"react-router-dom": "^6.23.1",
100100
"react-runner": "^1.0.5",
@@ -123,8 +123,8 @@
123123
"@types/json2mq": "^0.2.2",
124124
"@types/node": "^18.19.39",
125125
"@types/prop-types": "^15.7.12",
126-
"@types/react": "^18.2.55",
127-
"@types/react-dom": "^18.3.0",
126+
"@types/react": "npm:[email protected]",
127+
"@types/react-dom": "npm:[email protected]",
128128
"@types/react-swipeable-views": "^0.13.5",
129129
"@types/react-transition-group": "^4.4.10",
130130
"@types/react-window": "^1.8.8",

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"@types/lodash": "^4.17.6",
124124
"@types/mocha": "^10.0.7",
125125
"@types/node": "^18.19.39",
126-
"@types/react": "^18.2.55",
126+
"@types/react": "npm:[email protected]",
127127
"@types/yargs": "^17.0.32",
128128
"@typescript-eslint/eslint-plugin": "^6.21.0",
129129
"@typescript-eslint/parser": "^6.21.0",
@@ -206,8 +206,8 @@
206206
"@definitelytyped/typescript-versions": "^0.1.3",
207207
"@definitelytyped/utils": "^0.1.7",
208208
"@types/node": "^18.19.39",
209-
"@types/react": "18.2.55",
210-
"@types/react-dom": "18.3.0",
209+
"@types/react": "npm:[email protected]",
210+
"@types/react-dom": "npm:[email protected]",
211211
"cross-fetch": "^4.0.0"
212212
},
213213
"nyc": {

packages-internal/scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@types/doctrine": "^0.0.9",
4444
"@types/lodash": "^4.17.6",
4545
"@types/node": "^18.19.39",
46-
"@types/react": "^18.2.55",
46+
"@types/react": "npm:[email protected]",
4747
"@types/uuid": "^9.0.8",
4848
"chai": "^4.4.1",
4949
"fast-glob": "^3.3.2",

packages-internal/test-utils/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@
5656
"@types/chai-dom": "^1.11.3",
5757
"@types/format-util": "^1.0.4",
5858
"@types/prop-types": "^15.7.12",
59-
"@types/react": "^18.2.55",
60-
"@types/react-dom": "^18.3.0",
59+
"@types/react": "npm:[email protected]",
60+
"@types/react-dom": "npm:[email protected]",
6161
"@types/sinon": "^17.0.3",
6262
"typescript": "^5.4.5"
6363
},
6464
"peerDependencies": {
65-
"react": "^18.2.0",
66-
"react-dom": "^18.2.0"
65+
"react": "19.0.0-rc-100dfd7dab-20240701",
66+
"react-dom": "19.0.0-rc-100dfd7dab-20240701"
6767
},
6868
"publishConfig": {
6969
"access": "public"

packages/mui-base/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@
5656
"@testing-library/user-event": "^14.5.2",
5757
"@types/chai": "^4.3.16",
5858
"@types/prop-types": "^15.7.12",
59-
"@types/react": "18.2.55",
60-
"@types/react-dom": "18.3.0",
59+
"@types/react": "npm:[email protected]",
60+
"@types/react-dom": "npm:[email protected]",
6161
"@types/sinon": "^17.0.3",
6262
"chai": "^4.4.1",
6363
"fast-glob": "^3.3.2",
6464
"lodash": "^4.17.21",
65-
"react": "^18.2.0",
66-
"react-dom": "^18.2.0",
65+
"react": "19.0.0-rc-100dfd7dab-20240701",
66+
"react-dom": "19.0.0-rc-100dfd7dab-20240701",
6767
"sinon": "^16.1.3"
6868
},
6969
"peerDependencies": {
70-
"@types/react": "^17.0.0 || ^18.0.0",
71-
"react": "^17.0.0 || ^18.0.0",
72-
"react-dom": "^17.0.0 || ^18.0.0"
70+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
71+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
72+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
7373
},
7474
"peerDependenciesMeta": {
7575
"@types/react": {

packages/mui-docs/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@
4646
"@mui/material": "workspace:*",
4747
"@types/node": "^18.19.39",
4848
"@types/prop-types": "^15.7.12",
49-
"@types/react": "^18.2.55",
49+
"@types/react": "npm:[email protected]",
5050
"next": "^13.5.1",
51-
"react": "^18.2.0"
51+
"react": "19.0.0-rc-100dfd7dab-20240701"
5252
},
5353
"peerDependencies": {
5454
"@mui/base": "*",
5555
"@mui/icons-material": "^5.0.0",
5656
"@mui/material": "^5.0.0",
5757
"@mui/system": "^5.0.0",
58-
"@types/react": "^17.0.0 || ^18.0.0",
58+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
5959
"next": "^13.5.1 || ^14",
60-
"react": "^17.0.0 || ^18.0.0"
60+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
6161
},
6262
"peerDependenciesMeta": {
6363
"@types/react": {

packages/mui-envinfo/test/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"@mui/base": "5.0.0-beta.30",
99
"@mui/joy": "5.0.0-beta.22",
1010
"@mui/material": "5.15.4",
11-
"react": "^18.2.0",
12-
"react-dom": "^18.2.0"
11+
"react": "19.0.0-rc-100dfd7dab-20240701",
12+
"react-dom": "19.0.0-rc-100dfd7dab-20240701"
1313
},
1414
"devDependencies": {
15-
"@types/react": "^18.2.55"
15+
"@types/react": "npm:[email protected]"
1616
}
1717
}

packages/mui-icons-material/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,24 @@
5252
"@mui/internal-waterfall": "workspace:^",
5353
"@mui/material": "workspace:^",
5454
"@types/chai": "^4.3.16",
55-
"@types/react": "^18.2.55",
55+
"@types/react": "npm:[email protected]",
5656
"chai": "^4.4.1",
5757
"chalk": "^5.3.0",
5858
"cross-fetch": "^4.0.0",
5959
"fast-glob": "^3.3.2",
6060
"fs-extra": "^11.2.0",
6161
"lodash": "^4.17.21",
6262
"mustache": "^4.2.0",
63-
"react": "^18.2.0",
63+
"react": "19.0.0-rc-100dfd7dab-20240701",
6464
"rimraf": "^5.0.7",
6565
"shx": "^0.3.4",
6666
"svgo": "^3.3.2",
6767
"yargs": "^17.7.2"
6868
},
6969
"peerDependencies": {
7070
"@mui/material": "workspace:*",
71-
"@types/react": "^17.0.0 || ^18.0.0",
72-
"react": "^17.0.0 || ^18.0.0"
71+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
72+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
7373
},
7474
"peerDependenciesMeta": {
7575
"@types/react": {

packages/mui-joy/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -52,23 +52,23 @@
5252
"@mui/material": "workspace:^",
5353
"@types/chai": "^4.3.16",
5454
"@types/prop-types": "^15.7.12",
55-
"@types/react": "^18.2.55",
56-
"@types/react-dom": "^18.3.0",
55+
"@types/react": "npm:[email protected]",
56+
"@types/react-dom": "npm:[email protected]",
5757
"@types/sinon": "^17.0.3",
5858
"chai": "^4.4.1",
5959
"fast-glob": "^3.3.2",
6060
"lodash": "^4.17.21",
6161
"next": "^13.4.19",
62-
"react": "^18.2.0",
63-
"react-dom": "^18.2.0",
62+
"react": "19.0.0-rc-100dfd7dab-20240701",
63+
"react-dom": "19.0.0-rc-100dfd7dab-20240701",
6464
"sinon": "^16.1.3"
6565
},
6666
"peerDependencies": {
6767
"@emotion/react": "^11.5.0",
6868
"@emotion/styled": "^11.3.0",
69-
"@types/react": "^17.0.0 || ^18.0.0",
70-
"react": "^17.0.0 || ^18.0.0",
71-
"react-dom": "^17.0.0 || ^18.0.0"
69+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
70+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
71+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
7272
},
7373
"peerDependenciesMeta": {
7474
"@types/react": {

packages/mui-lab/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@
5353
"@mui/material": "workspace:*",
5454
"@types/chai": "^4.3.16",
5555
"@types/prop-types": "^15.7.12",
56-
"@types/react": "^18.2.55",
57-
"@types/react-dom": "^18.3.0",
56+
"@types/react": "npm:[email protected]",
57+
"@types/react-dom": "npm:[email protected]",
5858
"@types/sinon": "^17.0.3",
5959
"chai": "^4.4.1",
60-
"react": "^18.2.0",
61-
"react-dom": "^18.2.0",
60+
"react": "19.0.0-rc-100dfd7dab-20240701",
61+
"react-dom": "19.0.0-rc-100dfd7dab-20240701",
6262
"sinon": "^16.1.3"
6363
},
6464
"peerDependencies": {
6565
"@emotion/react": "^11.5.0",
6666
"@emotion/styled": "^11.3.0",
6767
"@mui/material": "workspace:^",
68-
"@types/react": "^17.0.0 || ^18.0.0",
69-
"react": "^17.0.0 || ^18.0.0",
70-
"react-dom": "^17.0.0 || ^18.0.0"
68+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
69+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
70+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
7171
},
7272
"peerDependenciesMeta": {
7373
"@types/react": {

packages/mui-material-nextjs/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@
4242
"@emotion/cache": "^11.11.0",
4343
"@emotion/react": "^11.11.4",
4444
"@emotion/server": "^11.11.0",
45-
"@types/react": "^18.2.55",
45+
"@types/react": "npm:[email protected]",
4646
"next": "13.5.1",
47-
"react": "^18.2.0"
47+
"react": "19.0.0-rc-100dfd7dab-20240701"
4848
},
4949
"peerDependencies": {
5050
"@emotion/cache": "^11.11.0",
5151
"@emotion/server": "^11.11.0",
5252
"@mui/material": "workspace:*",
53-
"@types/react": "^17.0.0 || ^18.0.0",
53+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
5454
"next": "^13.0.0 || ^14.0.0",
55-
"react": "^17.0.0 || ^18.0.0"
55+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
5656
},
5757
"peerDependenciesMeta": {
5858
"@types/react": {

0 commit comments

Comments
 (0)