Skip to content

Commit 7f5e045

Browse files
fix name
1 parent 72aa3bf commit 7f5e045

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/AppBar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const App = () => (
6767
| `alwaysOn` | Optional | `boolean` | - | When true, the app bar is always visible |
6868
| `children` | Optional | `ReactElement` | - | What to display in the central part of the app bar |
6969
| `color` | Optional | `string` | - | The background color of the app bar |
70-
| `sx` | Optional | `SxProps` | - | Style overrides, powered by Material UI System |
70+
| `sx` | Optional | `SxProps` | - | Style overrides, powered by MUI System |
7171
| `toolbar` | Optional | `ReactElement` | - | The content of the toolbar |
7272
| `userMenu` | Optional | `ReactElement` | - | The content of the dropdown user menu |
7373

docs/Breadcrumb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Check [the ra-navigation documentation](https://marmelab.com/ra-enterprise/modul
138138
| ----------- | -------- | ------------------- | -------- | -------------------------------------- |
139139
| `children` | required | `ReactNode` | - | The Breadcrumb Items to be rendered. |
140140
| `separator` | Optional | `string | function` | '/' | The character user as separator |
141-
| `sx` | Optional | `SxProps` | - | Style overrides, powered by Material UI System |
141+
| `sx` | Optional | `SxProps` | - | Style overrides, powered by MUI System |
142142

143143
Additional props are passed down to the root `<nav>` component.
144144

docs/IconMenu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const App = () => (
7575
| Prop | Required | Type | Default | Description |
7676
| ----------- | -------- | ----------- | -------- | -------------------------------------- |
7777
| `children` | Optional | `ReactNode` | - | The Menu Item Links to be rendered. |
78-
| `sx` | Optional | `SxProps` | - | Style overrides, powered by Material UI System |
78+
| `sx` | Optional | `SxProps` | - | Style overrides, powered by MUI System |
7979

8080
Additional props are passed down to the root `<div>` component.
8181

@@ -141,7 +141,7 @@ It requires the following props:
141141
It accepts optional props:
142142

143143
- `children`: Content of a sliding panel displayed when the menu is clicked (see [Adding sub menus](#adding-sub-menus) below)
144-
- `sx`: Style overrides, powered by Material UI System
144+
- `sx`: Style overrides, powered by MUI System
145145

146146
Additional props are passed down to [the underling Material UI `<listItem>` component](https://mui.com/material-ui/api/list-item/).
147147

docs/Layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const App = () => (
5252
| `error` | Optional | `Component` | - | A React component rendered in the content area in case of error |
5353
| `menu` | Optional | `Component` | - | A React component rendered at the side of the screen |
5454
| `sidebar` | Optional | `Component` | - | A React component responsible for rendering the menu (e.g. in a drawer) |
55-
| `sx` | Optional | `SxProps` | - | Style overrides, powered by Material UI System |
55+
| `sx` | Optional | `SxProps` | - | Style overrides, powered by MUI System |
5656

5757
React-admin injects more props at runtime based on the `<Admin>` props:
5858

docs/Menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const App = () => (
6060
| Prop | Required | Type | Default | Description |
6161
| ----------- | -------- | ----------- | -------- | ------------------------------------------------------------------------------------ |
6262
| `children` | Optional | `ReactNode` | - | The Menu Item Links to be rendered. If not provided, defaults to the Resource names. |
63-
| `sx` | Optional | `SxProps` | - | Style overrides, powered by Material UI System |
63+
| `sx` | Optional | `SxProps` | - | Style overrides, powered by MUI System |
6464

6565
Additional props are passed down to the root component (the Material UI [`<MenuList>`](https://mui.com/material-ui/api/menu-list/) component)
6666

docs/MultiLevelMenu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const App = () => (
111111
| ------------- | -------- | ----------- | -------- | -------------------------------------- |
112112
| `children` | Optional | `ReactNode` | - | The Menu Items to be rendered. |
113113
| `initialOpen` | Optional | `boolean` | `false` | Whether the menu is initially open. |
114-
| `sx` | Optional | `SxProps` | - | Style overrides, powered by Material UI System |
114+
| `sx` | Optional | `SxProps` | - | Style overrides, powered by MUI System |
115115

116116
Additional props are passed down to the root `<div>` component.
117117

@@ -189,7 +189,7 @@ It accepts optional props:
189189

190190
- `icon`: the icon to display.
191191
- `children`: Other `<MultiLevelMenu.Item>` children.
192-
- `sx`: Style overrides, powered by Material UI System
192+
- `sx`: Style overrides, powered by MUI System
193193

194194
Additional props are passed down to [the underling Material UI `<listItem>` component](https://mui.com/api/list-item/#listitem-api).
195195

docs/SimpleFormIterator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ const OrderEdit = () => (
349349

350350
## `sx`
351351

352-
You can override the style of the root element (a `<div>` element) as well as those of the inner components thanks to the `sx` property. It relies on Material UI System and supports CSS and shorthand properties (see [their documentation about it](https://mui.com/material-ui/customization/how-to-customize/#overriding-nested-component-styles)).
352+
You can override the style of the root element (a `<div>` element) as well as those of the inner components thanks to the `sx` property. It relies on MUI System and supports CSS and shorthand properties (see [their documentation about it](https://mui.com/material-ui/customization/how-to-customize/#overriding-nested-component-styles)).
353353

354354
This property accepts the following subclasses:
355355

0 commit comments

Comments
 (0)