Skip to content

Commit 82a92fd

Browse files
committed
prettier
1 parent ff09968 commit 82a92fd

4 files changed

Lines changed: 7 additions & 2 deletions

File tree

RELEASE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
1. Copy the generated changelog from the console, clean it up, add a short summary of the release highlights and use the new version number as the title.
2626

2727
Writing good highlights:
28+
2829
- Focus on new user facing features or changes
2930
- Be concise, link to relevant documentation for extra clarity
3031

@@ -73,6 +74,7 @@
7374
1. Merge the PR changes, then check out the `master` branch and pull the last commit.
7475

7576
1. Publish the package to `npm`
77+
7678
1. If you are not logged in to `npm` in your CLI, first log in with:
7779

7880
```bash

docs/data/toolpad/studio/concepts/http-requests.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The following options are configurable here:
2222
- ### Body
2323

2424
You can configure the request body in this tab. This may be of the following types:
25+
2526
- `x-www-form-urlencoded`: The body consists of key value pairs that are encoded in tuples separated by `&`, with a `=` between the key and the value. The UI allows you to define the key value pairs. The request `content-type` will be set to `application/x-www-form-urlencoded`.
2627

2728
- `raw`: The body can be freely defined as text. The `content-type` is selectable from the dropdown.
@@ -41,6 +42,7 @@ The following options are configurable here:
4142
You can define how the response should be parsed in this tab.
4243

4344
There are two options available:
45+
4446
- `JSON`: This is the default behavior. Parse the response content as JSON and return the result.
4547

4648
- `raw`: Do not parse the response and return the response as text.

docs/data/toolpad/studio/concepts/theming.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Toolpad Studio has been deprecated. Please use [Toolpad Core](/toolpad/) instead
1515

1616
1. To change the application theme, go to the **Theme** tab in the inspector panel.
1717
2. In the theme options you can:
18+
1819
- change your UI to light or dark mode.
1920
- set primary and secondary colors for your UI, from a predefined list of colors.
2021

docs/src/components/landing/Hero.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import * as React from 'react';
22
import Typography from '@mui/material/Typography';
3+
import SvgToolpadLogo from 'docs/src/icons/SvgToolpadCoreLogo';
34
import Box from '@mui/material/Box';
5+
import GradientText from 'docs/src/components/typography/GradientText';
46
import Container from '@mui/material/Container';
57
import Alert from '@mui/material/Alert';
68
import AlertTitle from '@mui/material/AlertTitle';
79
import { Typewriter } from 'react-simple-typewriter';
8-
import SvgToolpadLogo from 'docs/src/icons/SvgToolpadCoreLogo';
9-
import GradientText from 'docs/src/components/typography/GradientText';
1010
import GetStartedButtons from './GetStartedButtons';
1111

1212
export default function Hero() {

0 commit comments

Comments
 (0)