Skip to content

Commit dc69077

Browse files
v0.0.39 (#1642)
1 parent 119c4c7 commit dc69077

File tree

8 files changed

+37
-11
lines changed

8 files changed

+37
-11
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 0.0.39
4+
5+
<!-- generated comparing v0.0.39-alpha.0..master -->
6+
7+
_Feb 8, 2023_
8+
9+
A big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Edit option from preview, improved Select component behavior, updated drag & drop UI/UX, improved image columns in Data Grid, add Data Grid documentation.
12+
13+
- &#8203;<!-- 13 -->Improve behavior of image columns (#1637) @Janpot
14+
- &#8203;<!-- 12 -->Add DataGrid docs (#1616) @bytasv
15+
- &#8203;<!-- 11 -->Fix console errors @apedroferreira
16+
- &#8203;<!-- 10 -->Improve drag & drop / canvas UI (#1553) @apedroferreira
17+
- &#8203;<!-- 09 -->Add some new future components (#1631) @Janpot
18+
- &#8203;<!-- 08 -->Fix design issue template (#1636) @bytasv
19+
- &#8203;<!-- 07 -->Add design GH template (#1632) @bytasv
20+
- &#8203;<!-- 06 -->Remove - from select options (#1630) @Janpot
21+
- &#8203;<!-- 05 -->Improve deploy in iframe tests (#1622) @Janpot
22+
- &#8203;<!-- 04 -->disable server code build when not in local mode @Janpot
23+
- &#8203;<!-- 03 -->Remove firefox specific branch in tests (#1620) @Janpot
24+
- &#8203;<!-- 02 -->Add fast edit option from preview (#1603) @bytasv
25+
- &#8203;<!-- 01 -->Be more accepting of select options (#1604) @Janpot
26+
27+
All contributors of this release in alphabetical order: @apedroferreira, @bytasv, @Janpot
28+
329
## 0.0.38
430

531
<!-- generated comparing v0.0.37..master -->

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.0.39-alpha.0",
3+
"version": "0.0.39",
44
"private": true,
55
"author": "MUI Toolpad",
66
"license": "MIT",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.39-alpha.0",
2+
"version": "0.0.39",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

packages/eslint-plugin-material-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-material-ui",
3-
"version": "0.0.39-alpha.0",
3+
"version": "0.0.39",
44
"private": true,
55
"description": "Custom eslint rules for MUI.",
66
"main": "src/index.js",

packages/toolpad-app/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-app",
3-
"version": "0.0.39-alpha.0",
3+
"version": "0.0.39",
44
"license": "MIT",
55
"scripts": {
66
"build": "yarn prisma generate && concurrently \"yarn:build:*\" && rimraf ./.next/cache",
@@ -47,8 +47,8 @@
4747
"@mui/lab": "^5.0.0-alpha.119",
4848
"@mui/material": "^5.11.8",
4949
"@mui/system": "^5.11.8",
50-
"@mui/toolpad-components": "^0.0.39-alpha.0",
51-
"@mui/toolpad-core": "^0.0.39-alpha.0",
50+
"@mui/toolpad-components": "^0.0.39",
51+
"@mui/toolpad-core": "^0.0.39",
5252
"@mui/types": "^7.2.3",
5353
"@mui/utils": "^5.11.7",
5454
"@mui/x-data-grid-generator": "^5.17.20",

packages/toolpad-components/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-components",
3-
"version": "0.0.39-alpha.0",
3+
"version": "0.0.39",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@mui/material": "^5.11.8",
35-
"@mui/toolpad-core": "^0.0.39-alpha.0",
35+
"@mui/toolpad-core": "^0.0.39",
3636
"@mui/x-data-grid-pro": "^5.17.22",
3737
"@mui/x-date-pickers": "^5.0.17",
3838
"dayjs": "^1.11.7",

packages/toolpad-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-core",
3-
"version": "0.0.39-alpha.0",
3+
"version": "0.0.39",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",

packages/toolpad/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad",
3-
"version": "0.0.39-alpha.0",
3+
"version": "0.0.39",
44
"license": "MIT",
55
"scripts": {
66
"build": "tsc",
@@ -17,7 +17,7 @@
1717
"toolpad": "./index.mjs"
1818
},
1919
"dependencies": {
20-
"@mui/toolpad-app": "^0.0.39-alpha.0",
20+
"@mui/toolpad-app": "^0.0.39",
2121
"arg": "^5.0.2",
2222
"dotenv": "^16.0.3",
2323
"execa": "^6.1.0"

0 commit comments

Comments
 (0)