From a0ca6528bc6b5de75473a79781b9f669fcee0949 Mon Sep 17 00:00:00 2001 From: Andy Edwards Date: Thu, 6 Feb 2020 17:00:16 -0600 Subject: [PATCH] [docs] Link a VSCode extension for working with Material-UI (#19280) --- .../discover-more/related-projects/related-projects.md | 8 ++++++-- docs/src/pages/guides/typescript/typescript.md | 3 ++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/src/pages/discover-more/related-projects/related-projects.md b/docs/src/pages/discover-more/related-projects/related-projects.md index 1f22ea29f501c5..ced7de90345e0f 100644 --- a/docs/src/pages/discover-more/related-projects/related-projects.md +++ b/docs/src/pages/discover-more/related-projects/related-projects.md @@ -21,6 +21,11 @@ You didn't find the design assets your team is looking for? Let us know! - [Unsplash](https://unsplash.com): 📷 A great resource for finding beautiful, high-resolution, free photos that you can use in your projects. - [unDraw](https://undraw.co/): 📐 Like Unsplash but for amazing vector illustrations. +## IDE Tools + +- [Material-UI Snippets](https://marketplace.visualstudio.com/items?itemName=vscodeshift.material-ui-snippets) VSCode extension providing snippets. +- [Material-UI Codemorphs](https://marketplace.visualstudio.com/items?itemName=vscodeshift.material-ui-codemorphs) VSCode extension providing codemods. + ## Components This is a collection of third-party projects that extend Material-UI. @@ -31,8 +36,7 @@ This is a collection of third-party projects that extend Material-UI. ### Tables -- [material-table](https://github.com/mbrn/material-table): A simple and powerful Datatable for React based on Material-UI Table with some additional features. -They support many different use cases (editable, filtering, grouping, sorting, selection, i18n, tree data and more). You should check it out. +- [material-table](https://github.com/mbrn/material-table): A simple and powerful Datatable for React based on Material-UI Table with some additional features. It supports many different use cases (editable, filtering, grouping, sorting, selection, i18n, tree data and more). - [dx-react-grid-material-ui](https://devexpress.github.io/devextreme-reactive/react/grid/): A data grid for Material-UI with paging, sorting, filtering, grouping and editing features ([paid license](https://js.devexpress.com/licensing/)). - [mui-datatables](https://github.com/gregnb/mui-datatables): Responsive data tables for Material-UI with filtering, sorting, search and more. - [tubular-react](https://github.com/unosquare/tubular-react): A Material-UI table with local or remote data-source. Featuring filtering, sorting, free-text search, export to CSV locally, and aggregations. diff --git a/docs/src/pages/guides/typescript/typescript.md b/docs/src/pages/guides/typescript/typescript.md index c7e279a18a4d21..c2b1255eb85ff3 100644 --- a/docs/src/pages/guides/typescript/typescript.md +++ b/docs/src/pages/guides/typescript/typescript.md @@ -242,7 +242,8 @@ And a custom theme factory with additional defaulted options: **./styles/createMyTheme**: ```ts -import createMuiTheme, { ThemeOptions } from '@material-ui/core/styles/createMuiTheme'; +import { createMuiTheme } from '@material-ui/core/styles'; +import { ThemeOptions } from '@material-ui/core/styles/createMuiTheme'; export default function createMyTheme(options: ThemeOptions) { return createMuiTheme({