Skip to content

Commit 5aad5f2

Browse files
[core] Batch of small changes (mui#20349)
1 parent 396e4ef commit 5aad5f2

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

docs/notifications.json

+6
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,11 @@
1414
"date": "2020-01-25",
1515
"title": "New blog post",
1616
"text": "<a style=\"color: inherit;\" target=\"_blank\" rel=\"noopener\" href=\"https://medium.com/material-ui/2019-in-review-and-beyond-34f85e29926\">2019 in review and beyond</a>. 2019 was a great year for Material-UI. It puts us on an exciting path to solve even greater challenges in the coming years!"
17+
},
18+
{
19+
"id": 49,
20+
"date": "2020-03-30",
21+
"title": "Sketch",
22+
"text": "<a style=\"color: inherit;\" target=\"_blank\" rel=\"noopener\" href=\"https://twitter.com/MaterialUI/status/1244519729978437633\">Introducing Material-UI for Sketch</a>. Today, we’re excited to introduce the Sketch symbols 💎 for Material-UI."
1723
}
1824
]

netlify.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[build]
2+
# Directory (relative to root of your repo) that contains the deploy-ready
3+
# HTML files and assets generated by the build. If a base directory has
4+
# been specified, include it in the publish directory path.
5+
publish = "docs/export/"
6+
7+
# Default build command.
8+
command = "yarn docs:build && yarn docs:export"
9+
10+
[build.environment]
11+
YARN_VERSION = "1.21.1"
12+
NODE_VERSION = "10"
13+
NODE_OPTIONS = "--max_old_space_size=4096"

packages/material-ui/src/styles/overrides.d.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ import { OutlinedInputClassKey } from '../OutlinedInput';
6767
import { PaperClassKey } from '../Paper';
6868
import { PopoverClassKey } from '../Popover';
6969
import { RadioClassKey } from '../Radio';
70+
import { ScopedCssBaselineClassKey } from '../ScopedCssBaseline';
7071
import { SelectClassKey } from '../Select';
7172
import { SliderClassKey } from '../Slider';
7273
import { SnackbarClassKey } from '../Snackbar';
@@ -83,8 +84,8 @@ import { SwitchClassKey } from '../Switch';
8384
import { TabClassKey } from '../Tab';
8485
import { TableBodyClassKey } from '../TableBody';
8586
import { TableCellClassKey } from '../TableCell';
86-
import { TableContainerClassKey } from '../TableContainer';
8787
import { TableClassKey } from '../Table';
88+
import { TableContainerClassKey } from '../TableContainer';
8889
import { TableFooterClassKey } from '../TableFooter';
8990
import { TableHeadClassKey } from '../TableHead';
9091
import { TablePaginationClassKey } from '../TablePagination';
@@ -169,6 +170,7 @@ export interface ComponentNameToClassKey {
169170
MuiPaper: PaperClassKey;
170171
MuiPopover: PopoverClassKey;
171172
MuiRadio: RadioClassKey;
173+
MuiScopedCssBaseline: ScopedCssBaselineClassKey;
172174
MuiSelect: SelectClassKey;
173175
MuiSlider: SliderClassKey;
174176
MuiSnackbar: SnackbarClassKey;

0 commit comments

Comments
 (0)