Skip to content

Commit 4da8b78

Browse files
[release] v0.4.0 (#3841)
1 parent a8d3674 commit 4da8b78

File tree

14 files changed

+298
-86
lines changed

14 files changed

+298
-86
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## 0.4.0
4+
5+
<!-- generated comparing v0.3.2..master -->
6+
7+
_Jul 25, 2024_
8+
9+
A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Adds a new `PageContainer` component to wrap page content, add titles, breadcrumbs and custom action toolbars! Also, adds the ability to add actions to the sidebar navigation. Miscellaneous fixes and docs improvements.
12+
13+
### `@toolpad/core`
14+
15+
- &#8203;<!-- 11 --> Add PageContainer component (#3713) @Janpot
16+
- &#8203;<!-- 10 --> Tweak navigation API (#3794) @Janpot
17+
- &#8203;<!-- 06 --> Add navigation actions (#3776) @apedroferreira
18+
19+
### Docs
20+
21+
- &#8203;<!-- 13 --> Bring back studio landing page (#3828) @Janpot
22+
- &#8203;<!-- 12 --> Fix mobile menu in landing page (#3829) @apedroferreira
23+
- &#8203;<!-- 05 --> Fix theme switcher in Toolpad Core landing page (#3837) @apedroferreira
24+
- &#8203;<!-- 04 --> Remove absolute url from get started button (#3832) @Janpot
25+
- &#8203;<!-- 03 --> Fix landing page warnings (#3830) @Janpot
26+
- &#8203;<!-- 02 --> Use the latest version for Toolpad Core (#3834) @bharatkashyap
27+
- &#8203;<!-- 01 --> Add Toolpad core landing page (#3690) @prakhargupta1
28+
29+
### Core
30+
31+
- &#8203;<!-- 09 --> OOM issues during build (#3825) @Janpot
32+
- &#8203;<!-- 08 --> Fix theming bugs (#3809) @apedroferreira
33+
- &#8203;<!-- 07 --> Fix create-toolpad-app content margin (#3813) @Janpot
34+
35+
All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @Janpot, @prakhargupta1
36+
337
## v0.3.2
438

539
<!-- generated comparing v0.3.1..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.3.2",
3+
"version": "0.4.0",
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
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"npmClient": "pnpm"
55
}

packages/create-toolpad-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-toolpad-app",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"keywords": [
55
"react",
66
"toolpad",

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.3.2",
3+
"version": "0.4.0",
44
"private": true,
55
"description": "Custom eslint rules for MUI.",
66
"main": "src/index.js",

packages/toolpad-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/core",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"author": "Toolpad Team",
55
"description": "Dashboard framework powered by MUI.",
66
"main": "./build/index.js",

packages/toolpad-studio-components/package.json

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

packages/toolpad-studio-runtime/package.json

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

packages/toolpad-studio/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/studio",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"license": "MIT",
55
"bin": {
66
"toolpad-studio": "./cli.mjs"

packages/toolpad-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toolpad/utils",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"description": "Shared utilities used by Toolpad packages.",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",

playground/nextjs-pages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playground-nextjs-pages",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

playground/nextjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playground-nextjs",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

pnpm-lock.yaml

+252-74
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"recharts": "alpha"
1515
},
1616
"type": "module",
17-
"version": "0.3.2"
17+
"version": "0.4.0"
1818
}

0 commit comments

Comments
 (0)