Skip to content

Commit

Permalink
[core] Upgrade the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Sep 29, 2019
1 parent f25c643 commit 67ee1d6
Show file tree
Hide file tree
Showing 9 changed files with 1,581 additions and 1,811 deletions.
14 changes: 7 additions & 7 deletions docs/package.json
Expand Up @@ -60,10 +60,10 @@
"clipboard-copy": "^3.0.0",
"clsx": "^1.0.2",
"core-js": "^2.6.5",
"cross-env": "^5.2.1",
"cross-env": "^6.0.0",
"css-loader": "^3.1.0",
"css-mediaquery": "^0.1.2",
"date-fns": "^2.0.1",
"date-fns": "^2.4.1",
"deepmerge": "^4.0.0",
"docsearch.js": "^2.6.3",
"doctrine": "^3.0.0",
Expand All @@ -77,28 +77,28 @@
"json2mq": "^0.2.0",
"jss": "^10.0.0",
"jss-plugin-template": "^10.0.0",
"jss-rtl": "^0.2.3",
"jss-rtl": "^0.3.0",
"lodash": "^4.17.15",
"lz-string": "^1.4.4",
"markdown-to-jsx": "^6.10.2",
"marked": "^0.7.0",
"material-table": "^1.50.0",
"material-ui-popup-state": "^1.4.1",
"next": "8.1.0",
"notistack": "^0.8.9",
"notistack": "^0.9.2",
"nprogress": "^0.2.0",
"postcss": "^7.0.18",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"raw-loader": "^1.0.0",
"raw-loader": "^3.1.0",
"react": "^16.10.1",
"react-autosuggest": "^9.4.3",
"react-docgen": "^5.0.0-beta.1",
"react-dom": "^16.10.1",
"react-draggable": "^3.0.5",
"react-draggable": "^4.0.0",
"react-final-form": "^6.3.0",
"react-frame-component": "^4.1.1",
"react-inspector": "^3.0.2",
"react-inspector": "^4.0.0",
"react-number-format": "^4.0.8",
"react-redux": "^7.1.1",
"react-router": "^5.0.0",
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/material-icons/SearchIcons.js
Expand Up @@ -197,9 +197,7 @@ let DialogDetails = props => {
<MarkdownElement
className={classes.markdown}
onClick={handleClick}
text={`\`\`\`js\nimport ${selectedIcon.key}Icon from '@material-ui/icons/${
selectedIcon.key
}';\n\`\`\``}
text={`\`\`\`js\nimport ${selectedIcon.key}Icon from '@material-ui/icons/${selectedIcon.key}';\n\`\`\``}
/>
<Link
className={classes.import}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -78,7 +78,7 @@
"chai": "^4.1.2",
"chai-dom": "^1.8.1",
"compression-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.1",
"cross-env": "^6.0.0",
"danger": "^9.1.8",
"dtslint": "^0.9.3",
"enzyme": "^3.9.0",
Expand Down Expand Up @@ -107,9 +107,9 @@
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lerna": "^3.16.4",
"mocha": "^6.2.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"prettier": "1.17.0",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"puppeteer": "^1.20.0",
"react": "^16.10.1",
Expand All @@ -123,7 +123,7 @@
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.1",
"sinon": "^7.0.0",
"size-limit": "^0.21.0",
"size-limit": "^2.0.0",
"ts-node": "^8.3.0",
"tslint": "5.14.0",
"typescript": "3.2.4",
Expand Down
4 changes: 1 addition & 3 deletions packages/material-ui-icons/scripts/download.js
Expand Up @@ -31,9 +31,7 @@ function downloadIcon(icon) {
Object.keys(themeMap).map(async theme => {
const formattedTheme = themeMap[theme].split('_').join('');
const response = await fetch(
`https://fonts.gstatic.com/s/i/materialicons${formattedTheme}/${icon.name}/v${
icon.version
}/24px.svg`,
`https://fonts.gstatic.com/s/i/materialicons${formattedTheme}/${icon.name}/v${icon.version}/24px.svg`,
);
if (response.status !== 200) {
throw new Error(`status ${response.status}`);
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui-styles/src/ThemeProvider/nested.js
@@ -1,3 +1,3 @@
const hasSymbol = typeof Symbol === 'function' && Symbol.for;

export default (hasSymbol ? Symbol.for('mui.nested') : '__THEME_NESTED__');
export default hasSymbol ? Symbol.for('mui.nested') : '__THEME_NESTED__';
2 changes: 1 addition & 1 deletion packages/material-ui-styles/src/withStyles/withStyles.d.ts
Expand Up @@ -22,7 +22,7 @@ export interface CSSProperties extends BaseCSSProperties {
}

export type BaseCreateCSSProperties<Props extends object = {}> = {
[P in keyof BaseCSSProperties]: BaseCSSProperties[P] | ((props: Props) => BaseCSSProperties[P])
[P in keyof BaseCSSProperties]: BaseCSSProperties[P] | ((props: Props) => BaseCSSProperties[P]);
};

export interface CreateCSSProperties<Props extends object = {}>
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/styles/overrides.d.ts
Expand Up @@ -98,7 +98,7 @@ import { TouchRippleClassKey } from '../ButtonBase/TouchRipple';
import { TypographyClassKey } from '../Typography';

export type Overrides = {
[Name in keyof ComponentNameToClassKey]?: Partial<StyleRules<ComponentNameToClassKey[Name]>>
[Name in keyof ComponentNameToClassKey]?: Partial<StyleRules<ComponentNameToClassKey[Name]>>;
};

export interface ComponentNameToClassKey {
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/styles/props.d.ts
Expand Up @@ -98,7 +98,7 @@ import { TypographyProps } from '../Typography';
import { WithWidthOptions } from '../withWidth';

export type ComponentsProps = {
[Name in keyof ComponentsPropsList]?: Partial<ComponentsPropsList[Name]>
[Name in keyof ComponentsPropsList]?: Partial<ComponentsPropsList[Name]>;
};

export interface ComponentsPropsList {
Expand Down

0 comments on commit 67ee1d6

Please sign in to comment.