Changelog History
Page 19
-
v4.11.1 Changes
November 24, 2020Nov 24 2020 π Big thanks to the 12 contributors who made this release possible.
- π± π Fix integration issue with TypeScript 4.1 (#23692) @ldrick
- π± π Fix right-to-left support of Tabs since Chrome 85 (#22830) @ankit
- π± π Fix two issues with React 17 (#22263, #23367) @eps1lon
π» v4.11.1 doesn't have official support for React 17 like v5 has.
Be careful, use React 17 at your own risk.
π»
@material-ui/[email protected]
- π [styles] Add support for TypeScript 4.1 (#23692) @ldrick
- π» [ClickAwayListener] Fix mounting behavior in Portals in React 17 (#23367) @eps1lon
- π» [TrapFocus] Prevent possible crash in React 17 (#22263) @eps1lon
- π» [Tabs] Fix RTL scrollbar with Chrome 85 (#22830) @ankit
π
@material-ui/[email protected]
π Docs
- π» [blog] Allow to support card preview (#23087) @oliviertassinari
- π» [blog] Danail Hadjiatanasov joins Material-UI (#23223) @oliviertassinari
- π» [blog] New posts (#22607) @oliviertassinari
- β‘οΈ [blog] Q2 2020 Update (#21822) @oliviertassinari
- β‘οΈ [blog] Q3 2020 Update (#23055) @oliviertassinari
- π» [docs] Add Backstage to showcase (#22428) @stefanalund
- π» [docs] Add Design resources in installation (#22209) @oliviertassinari
- π» [docs] Add DoiT diamond sponsor (#22436) @oliviertassinari
- π» [docs] Add LightyearVPN to showcase (#22568) @lightyearvpn
- π [docs] Add Material-UI Builder to in-house ads (#23342) @mbrookes
- π» [docs] Add Octopus diamond sponsor (#22178) @oliviertassinari
- π» [docs] Add Spotify to users (#22776) @mbrookes
- π» [docs] Add ethicalads.io (#21752) @oliviertassinari
- π» [docs] Add live demo with DataGrid (#22697) @oliviertassinari
- π [docs] Add notification about survey @oliviertassinari
- π» [docs] Add notification for MUI for Figma v4.12.0 (#23212) @mbrookes
- π» [docs] Add redirection for links published on npm (#22575) @oliviertassinari
- π» [docs] Allow to host code in a different repo (#23390) @oliviertassinari
- π» [docs] Avoid confusion between layout grid and data grid (#22681) @oliviertassinari
- π [docs] Backport _redirect from next @oliviertassinari
- π» [docs] Change "Let Us Know" button URL (#22521) @mbrookes
- π [docs] Clear the different between table vs data grid right at the start @oliviertassinari
- π» [docs] Encourage DataGrid in /components/tables/ over alternatives (#22637) @oliviertassinari
- π [docs] Engage with more Russian users @oliviertassinari
- π [docs] Fix 404 reported by Moz.com @oliviertassinari
- π [docs] Fix codesandbox link @oliviertassinari
- π [docs] Fix static asset loading with X @oliviertassinari
- π [docs] Fix theme.palette.type usage @oliviertassinari
- π» [docs] Forward x data-grid (#22400) @oliviertassinari
- π [docs] Improve SEO on titles (#22742) @oliviertassinari
- π [docs] Improve ad display @oliviertassinari
- π» [docs] Improve codesandbox generation logic (#22221) @oliviertassinari
- π» [docs] Improve export to CodeSandbox (#22346) @oliviertassinari
- π [docs] Improve position in the side nav of DataGrid @oliviertassinari
- π [docs] Include new video on customization @oliviertassinari
- π» [docs] Option to disable ads (#22574) @oliviertassinari
- π [docs] Point to the production branch of x @oliviertassinari
- π» [docs] Reduce tracking events (#21710) @eps1lon
- π [docs] Remove codefund Ads (#21714) @eps1lon
- π [docs] Remove expansion-panels @oliviertassinari
- π [docs] Remove v5 docs capability @oliviertassinari
- π [docs] Sync translation (#21638, #21751, #21925, #22751, #22850, #22887, #23357) @oliviertassinari
- β‘οΈ [docs] Update homepage quotes (#23326) @mbrookes
- π [docs] Use codesandbox deploy for demos created from deploy previews (#22616) @eps1lon
- π§ [docs] configuring redirects for MUI X (#22632) @dtassone
Core
- π [core] Remove Alert codeowner @oliviertassinari
- π» [core] Small changes (master) (#22022) @oliviertassinari
- β [test] Add skip ci to Crowdin commit message (#22684) @mbrookes
- π· [test] Fix CI @oliviertassinari
- β [test] Only run on push for master/next (#22627) @eps1lon
- β [test] Run CircleCI anytime (#22686) @eps1lon
- β‘οΈ [test] Update react next patch (#22393) @eps1lon
-
v4.11.0 Changes
June 30, 2020July 1, 2020 π Big thanks to the 8 contributors who made this release possible.
π»
@material-ui/[email protected]
π» [ExpansionPanel] Prepare renaming to Accordion in v5 (#21560) @mnajdova
It uses a more common naming convention:-import ExpansionPanel from '@material-ui/core/ExpansionPanel';-import ExpansionPanelSummary from '@material-ui/core/ExpansionPanelSummary';-import ExpansionPanelDetails from '@material-ui/core/ExpansionPanelDetails';-import ExpansionPanelActions from '@material-ui/core/ExpansionPanelActions';+import Accordion from '@material-ui/core/Accordion';+import AccordionSummary from '@material-ui/core/AccordionSummary';+import AccordionDetails from '@material-ui/core/AccordionDetails';+import AccordionActions from '@material-ui/core/AccordionActions';-\<ExpansionPanel\>+\<Accordion\>- \<ExpansionPanelSummary\>+ \<AccordionSummary\> \<Typography\>Location\</Typography\> \<Typography\>Select trip destination\</Typography\>- \</ExpansionPanelSummary\>+ \</AccordionSummary\>- \<ExpansionPanelDetails\>+ \<AccordionDetails\> \<Chip label="Barbados" onDelete={() =\> {}} /\> \<Typography variant="caption"\>Select your destination of choice\</Typography\>- \</ExpansionPanelDetails\>+ \</AccordionDetails\> \<Divider /\>- \<ExpansionPanelActions\>+ \<AccordionActions\> \<Button size="small"\>Cancel\</Button\> \<Button size="small"\>Save\</Button\>- \</ExpansionPanelActions\>+ \</AccordionActions\>-\</ExpansionPanel\>+\</Accordion\>
π Docs
- π» [blog] Post survey results 2020 (#21555) @mnajdova
- π [docs] Add new gold sponsor @oliviertassinari
- π» [docs] CodeFund is shutting down (#21632) @oliviertassinari
- π» [docs] Enable next.material-ui.com sub-domain @oliviertassinari
- π [docs] Fix ad issues @oliviertassinari
- π» [docs] Fix version in localized urls (#21442) @tchmnn
- π [docs] Sync translations (#21445) @oliviertassinari
- π [docs] Sync translations (#21535) @oliviertassinari
Core
- π» [core] Batch small changes (#21419) @oliviertassinari
- π» [core] Fix react next patch and prevent regression (#21482) @eps1lon
-
v4.10.2 Changes
June 11, 2020June 11, 2020 π β οΈ This release marks the end of the active development on the v4.x versions, after 18 months of development.
π± We are moving all ongoing efforts to v5 (next
branch) β¨.
π This means a feature freeze on v4. The development of this version will be limited to important bug fixes, security patches, and easing the upgrade path to v5.π You can follow our progress on the v5 milestone. We will make the documentation of the v5 alpha releases available under https://next.material-ui.com/, starting next week (weekly releases, as usual).
π Big thanks to the 19 contributors who made this release possible. Here are some highlights β¨:
π» Introduce a new Timeline component (#21331) @mnajdova.
π» You can find the component in the lab.π» Simplify the theme overrides with TypeScript for the components in the lab (#21279) @CarsonF.
0οΈβ£ In order to benefit from the CSS overrides with the theme and the lab components, TypeScript users need to import the following types. Internally, it uses module augmentation to extend the default theme structure with the extension components available in the lab.
// 1. augment the themeimport type '@material-ui/lab/themeAugmentation';// 2. overrideconst theme = createMuiTheme({overrides: {MuiTimeline: {root: {backgroundColor: 'red',},},},});
π» Minify error messages in production (#21214) @eps1lon.
π» Using the React error decoder as inspiration, the exceptions thrown by Material-UI in production are now minified.
π You will be redirected to the documentation to decode the error.π»
@material-ui/[email protected]
- π» [Checkbox] Fix custom icon fontSize prop support (#21362) @kn1ves
- π» [Dialog] Fix dialog children being announced as clickable (#21285) @eps1lon
- β [Select] Improve native validation, autofill, and testability (#21192) @netochaves
- π» [Stepper] Always pass state props to connector (#21370) @baterson
- π» [Stepper] Only render label container if a label exists (#21322) @Floriferous
π»
@material-ui/[email protected]
- π» [Autocomplete] Fix scroll reset after unselect the only option (#21280) @svikhristyuk
- 0οΈβ£ [Autocomplete] Prevent default event for disabled options (#21390) @GregoryAndrievskiy
- π» [SpeedDial] Improve tooltip work break (#21359) @SugiKent
- π» [Timeline] Introduce new component (#21331) @mnajdova
- π» [TypeScript] Allow lab components to have overrides in theme (#21279) @CarsonF
π»
@material-ui/[email protected]
π Docs
- π» [docs] Add palette TypeScript override example (#21319) @WillSquire
- π» [docs] Always consider code as left-to-right (#21386) @eps1lon
- π» [docs] Correct the name of a prop in the Table docs (#21384) @fedde-s
- π» [docs] Improve CONTRIBUTING.md (#21303) @pedrooa
- π» [docs] Improve ad display (#21246) @oliviertassinari
- π» [docs] Improve legibility of required star (#21369) @eps1lon
- π» [docs] List all the Tab components under the API section (#21241) @emretapci
- π [docs] Move more prop docs into IntelliSense (#21002) @eps1lon
- π [docs] Move more prop docs into IntelliSense (#21368) @eps1lon
- π [docs] Move more prop docs into IntelliSense (#21375) @eps1lon
- π [docs] Sync translations (#21336) @oliviertassinari
- β‘οΈ [docs] Update builderbook.org image in showcase (#21360) @klyburke
- β‘οΈ [docs] Update builderbook.org showcase (#21274) @klyburke
- β‘οΈ [docs] Update minimum TypeScript version to 3.2 (#21197) @NMinhNguyen
- π± [docs] Use rem in responsive font sizes chart (#21373) @thewidgetsmith
Core
- β [test] Speed up slow TablePagination tests (#21374) @eps1lon
- β [test] Type-test event handlers on ListItem (#21298) @eps1lon
- π» [core] Batch small changes (#21335) @oliviertassinari
- β [core] Don't ship type tests (#21300) @eps1lon
- π» [core] Minify error messages in production (#21214) @eps1lon
- π» [core] Switch from
$ExpectError
to@ts-expect-error
(#21308) @eps1lon - π» [core] Use custom $ExpectType assertion (#21309) @eps1lon
-
v4.10.1 Changes
June 01, 2020June 1, 2020 π Big thanks to the 21 contributors who made this release possible.
π»
@material-ui/[email protected]
- π» [CircularProgress] Fix IE 11 wobbling (#21248) @AmirAhrari
- π [l10n] Improve Ukrainian translation (#21239) @goodwin64
- π» [LinearProgress] Set aria-valuemin and aria-valuemax (#21195) @eps1lon
- π» [List] Add βalignItemsFlexStartβ to ListItemIconClassKey #21256) @YoonjiJang
- π» [Slider] Fix missing type definitions (#21244) @konekoya
- π» [Stepper] Add focus ripple to StepButton (#21223) @mnajdova
- π» [SvgIcon] Add displayName in react-devtools (#21134) @gndplayground
- π» [Table] Add React node support to TablePagination.labelRowsPerPage (#21226) @oliviertassinari
- π» [TextField] Fix missing autofill events (#21237) @maksimgm
- π» [Tooltip] Improve arrow customization (#21203) @mnajdova
- π» [Transition] Prevent passing undefined argument to callbacks (#21158) @iamhosseindhv
π»
@material-ui/[email protected]
- π» [Autocomplete] Document how to use a 3rd party input (#21257) @maksimgm
- π» [Autocomplete] Fix dynamic changes of multiple={boolean} (#21194) @weizhi9958
- β [Autocomplete] Improve getOptionLabel usage warning (#21207) @rhuanbarreto
- π» [Skeleton] Improve component (#21255) @oliviertassinari
- π» [Skeleton] Improve contrast on light themes (#21122) @eps1lon
- π [Pagination] Fix selected item style (#21252) @svikhristyuk
π Docs
- π― [docs] Adapt CONTRIBUTING.md for https instead of SSH git clone (#21187) @cjoecker
- π» [docs] Add Progress value label examples (#21190) @cjoecker
- π» [docs] Document the onClick handler on Button (#21234) @hoop71
- π» [docs] English improvements in api.md (#21159) @dandv
- 0οΈβ£ [docs] Fix typo in default palette value (#21243) @dbgb
- π» [docs] Fix typo, principals -> principles (#21160) @dandv
- π» [docs] Improve ad display (#21219) @oliviertassinari
- π» [docs] Mention laying out radio buttons horizontally (#21186) @dandv
- π» [docs] Replace typefaces with fontsource (#21153) @DecliningLotus
- π» [docs] Simplify CONTRIBUTING.md (#21196) @NMinhNguyen
- π» [docs] Small grammar fix (#21161) @dandv
- π [docs] Sync translations (#21275) @oliviertassinari
- π» [docs] Track pixel ratio (#21209) @eps1lon
Core
- π» [TrapFocus] Make an unstable version public (#21201) @dmtrKovalenko
- β
[test] Track size of
@material-ui/utils
(#21240) @eps1lon - π» [core] Batch small changes (#21156) @oliviertassinari
- π» [core] Batch small changes (#21249) @oliviertassinari
-
v4.10.0 Changes
May 23, 2020May 23, 2020 π Big thanks to the 30 contributors who made this release possible.
π± Here are some highlights β¨:
π± 𦴠Allow Skeleton to infer its dimensions from the children (#21097) @mikew.
In the following example, the skeleton will take the size of the avatar.<Skeleton><Avatar /></Skeleton>
π» Follow the docs to learn more.
- π± βΏοΈ Add tabs accessibility docs section (#20965) @eps1lon.
π» The behavior of the keyboard navigation can be customized with theselectionFollowsFocus
prop. - π± βΉ Improve tooltip arrow customizability (#21095) @sakulstra.
The arrow background color and border can now be customized independently.
- π± π Add vertical support to the ToggleButton component (#21051) @xiaomaini
- π± And many more π bug fixes and π improvements.
π»
@material-ui/[email protected]
- π» [AppBar] Fix z-index issue on Firefox (#21063) @pedrooa
- π» [Avatar] Fix group positioning (#21141) @CarsonF
- π» [Button] Fix disableFocusRipple prop description (#21116) @umairfarooq44
- π» [CircularProgress] Improve custom bar demo (#21005) @id0Sch
- π» [l10n] Add new keys to Finnish (fi-FI) locale (#21087) @SampsaKaskela
- π» [l10n] Prepare iteration on number formatting (#20656) @oliviertassinari
- π [Popper] Remove duplicate handleOpen call from effect (#21106) @inomdzhon
- π» [Select] Fix possible crash when clicking on the label (#21047) @eps1lon
- π» [Slide] Fix double negation in CSS translate (#21115) @scristall
- π» [Snackbar] Explain how to place the snackbar (#21052) @dandv
- π» [Snackbar] Fix double click issue on demos (#21059) @joshwooding
- π» [Tabs] Add a11y docs section (#20965) @eps1lon
- π» [theme] Fix types, reject undefined coefficient in darken, lighten (#21006) @dellink
- π» [Tooltip] Add PopperComponent prop (#21039) @joshwooding
- π» [Tooltip] Improve arrow customizability (#21095) @sakulstra
π
@material-ui/[email protected]
π»
@material-ui/[email protected]
- π» [Autocomplete] Improve value type inference (#20949) @kanoshin
- π» [Autocomplete] Fix autoHighlight for dynamic options (#21090) @mstykow
- π» [Autocomplete] Fix iOS double tap (#21060) @kaplantm
- π» [Pagination] Document difference with TablePagination (#21107) @hoop71
- π» [Skeleton] Allow children to influence width and height (#21097) @mikew
- β [Skeleton] Reduce SkeletonChildren test flakyness (#21121) @eps1lon
- π» [TabPanel] Allow flow content (#21017) @eps1lon
- π» [ToggleButton] Add orientation prop (#21051) @xiaomaini
- β [TreeView] Add test for undesired behavior (#21043) @eps1lon
π Docs
- π» [docs] Add CssBaseline to auto dark mode example (#21094) @fantasyui-com
- π» [docs] Add new twitter quotes to the homepage (#21061) @mbrookes
- π» [docs] Fix anchor link to using inline vs. classes (#21151) @dandv
- π» [docs] Fix autocomplete attributes (#21138) @socsieng
- π» [docs] Fix typo in Modal accessibility description (#21062) @arthur-melo
- π» [docs] Improve mui-treasury integration (#21054) @siriwatknp
- π» [docs] Improve text based sizing for larger font scales (#21131) @eps1lon
- π» [docs] Keep the same header between locales (#21041) @jaironalves
- π» [docs] Minor fixes in theming, link to Context (#21149) @dandv
- π» [docs] Recommend no-restricted-imports to catch treeshake issues (#21035) @eps1lon
- π» [docs] Reduce confusion around higher order component (#21056) @ravshansbox
- π» [docs] Show font smoothing override (#21057) @mattstobbs
- π» [docs] Sort ways to support MUI; clarify clsx (#21150) @dandv
- π [docs] Sync translations (#21155) @oliviertassinari
Core
- π» [core] Add issue template for material design issues (#21120) @eps1lon
- π» [core] Batch small changes (#20980) @oliviertassinari
- π» [core] Explicitly declare children (#21014) @eps1lon
- π» [core] Narrow type definition for useControlled hook (#21027) @EdwardSalter
- π» [core] Small changes (#21064) @oliviertassinari
- π [Security] Bump handlebars from 4.5.3 to 4.7.6 (#21033) @dependabot-preview
- β [test] Fix react next patch (#21109) @eps1lon
- β [test] Improve isolation of tests using mount() (#21034) @eps1lon
- β [test] Isolate transition tests (#21032) @eps1lon
- β [test] Migrate some tests to testing-library (#21058) @joshwooding
-
v4.9.14 Changes
May 11, 2020May 11, 2020 π Big thanks to the 19 contributors who made this release possible.
π± Here are some highlights β¨:
- π An experimental extension of the Tab API (#20806) @eps1lon.
- π± βοΈ An improved version of unstable strict mode support (#20952, #20985) @eps1lon @DrewVartanian.
- π± And many more π bug fixes and π improvements.
π»
@material-ui/[email protected]
- π» [l10n] Add Hindi (hi-IN) locale (#20916) @chandan-singh
- π» [Popper] Fix keepMounted visibility (#20937) @weslenng
- π» [Select] Focus labelled element on click (#20833) @qkdreyer
- π» [Slider] Fix center label in IE 11 (#20942) @Uneetpatel7
- π» [Tabs] Add
selectionFollowsFocus
(#20936) @eps1lon - π» [Tabs] Forward aria-label* attributes to tablist (#20986) @eps1lon
- π» [TextField] Fix typography inheritance issue (#20908) @esseswann
- π» [theme] Fix missing args to createMuiStrictModeTheme (#20985) @DrewVartanian
- π» [theme] Add support #rrggbbaa pattern in hexToRgb function (#20931) @dellink
- π» [theme] Fix override breakpoints (#20901) @JasonHK
- π» [Tooltip] Fix arrow placement overlap (#20900) @esseswann
π
@material-ui/[email protected]
π»
@material-ui/[email protected]
- π» [system] Add csstype as dependency to material-ui-system (#20922) @govizlora
π»
@material-ui/[email protected]
- π» [Autocomplete] Add new handleHomeEndKeys prop (#20910) @p00000001
- β [Autocomplete] Fix Google Map demo warnings (#20983) @oliviertassinari
- π» [Autocomplete] Fix onHighlightChange when filtering (#20923) @marcosvega91
- π» [Tabs] Add new experimental Tabs API (#20806) @eps1lon
- π» [ToggleButton] Reduce gap with ButtonGroup (#20967) @rehanmohiuddin
π»
@material-ui/[email protected]
π Docs
- π» [docs] Add missing spot do DiamondSponsors (#20958) @eps1lon
- π [docs] Fix leaking lazy stylesheets (#20903) @eps1lon
- π» [docs] Label accessibility for native select (#20876) @mkesavan13
- π» [docs] Reduce likelyhood of overflow in ToC (#20961) @eps1lon
- π [docs] Remove redirection to v0 (#17637) (#20902) @dellink
- π [docs] Sychronize translations (#20982) @oliviertassinari
Core
- β [test] Improve assertion mismatch messages (#20964) @eps1lon
- β [test] Migrate all Table components to testing-library (#20914) @marcosvega91
- β [test] Migrate CircularProgress and Collapse to testing-library (#20789) @marcosvega91
- β
[test] Prepare patch for
react@next
(#20966) @eps1lon - β [test] Use actual element over document.activeElement (#20945) @eps1lon
- π [core] Remove unstable_StrictMode transition components (#20952) @eps1lon
- π» [core] Fix typo in internal ScrollbarSize (#20934) @liujiajun
- β [core] Fix typo in test description (#20943) @kunal-mandalia
-
v4.9.13 Changes
May 04, 2020May 4, 2020 π Big thanks to the 27 contributors who made this release possible.
π± Here are some highlights β¨:
- π± π A new diamond sponsor: Sencha, thank you!
- π± βοΈ More tests migrated from enzyme to testing-library @marcosvega91.
- π± And many more π bug fixes and π improvements.
π»
@material-ui/[email protected]
- π» [AvatarGroup] Improve limit display (#20793) @let-aurn
- π [ClickAwayListener] Remove misleading code comment (#20743) @eps1lon
- π» [l10n] Improve es-ES locale (#20794) @eloyrubinos
- π» [Modal] Should propagate event if disableEscapeKeyDown (#20786) @weslenng
- π¨ [Pagination] Refactor boundaryCount (#20826) @mbrookes
- π» [Select] Fix height overflow (#20822) @esseswann
- π» [Slider] Fix RTL support (#20851) @weslenng
- π» [Tabs] Implement keyboard navigation (#20781) @eps1lon
- π» [Tabs] Improve customizability of the scroll buttons (#20783) @netochaves
- π» [TextField] Fix caret color in autofill dark theme (#20857) @CarsonF
- π» [Tooltip] Fix disableTouchListener behavior (#20807) @weslenng
- π» [unstable_TrapFocus] Guard against dropped memo cache (#20848) @eps1lon
π
@material-ui/[email protected]
- π [styles] Fix wording in indexCounter comment (#20874) @iamclaytonray
- π [styles] Improve component props inference of styled (#20830) @vlazh
π»
@material-ui/[email protected]
- π» [system] Improve breakpoints types (#20753) @nodeTempest
π»
@material-ui/[email protected]
- π» [Autocomplete] Display loading feedback with freeSolo (#20869) @weslenng
- π» [Autocomplete] Fix support for limitTags={0} (#20850) @tykdn
- π» [Skeleton] Fix z-index elevation issue (#20803) @luminaxster
- π» [SpeedDial] Fix direct dependency on react-transition-group (#20847) @squirly
- π» [TreeView] Add onIconClick and onLabelClick (#20657) @tonyhallett
π Docs
- π» [docs] Add collapsible table demo (#19795) @LorenzHenk
- π» [docs] Fix "Find the source" link in localization.md (#20791) @ValentinH
- π» [docs] Fix emojis/html being included in toc (#20841) @eps1lon
- π» [docs] Fix groups name in autocomplete virtualization example (#20898) @Uneetpatel7
- π» [docs] Fix header and row shift on pagination click (#20873) @ankitasingh170190
- π [docs] Fix incorrect signature of createStyles (#20866) @eps1lon
- π» [docs] Fix table zebra customization demo (#20870) @rkrueger11
- π» [docs] Fix typo in Select type definitions (#20817) @qkdreyer
- π» [docs] Implement keyboard navigation for demo toolbar (#20798) @eps1lon
- π [docs] Improve svgr documentation (#20893) @tavantzo
- π» [docs] Make CSS interoperability examples easier to use (#20860) @weisk
- π» [docs] Use mathematical interval notation for breakpoints (#20843) @eps1lon
- π» [examples] Add next.js SSG clarification comment (#20810) @sospedra
Core
- β [test] Migrate colorManipulator from assert to expect (#20792) @marcosvega91
- β [test] Migrate from assert to expect (#20799) @oliviertassinari
- β [test] Replace all assert with expect (#20853) @marcosvega91
- π» [core] Batch small changes (#20823) @oliviertassinari
- π» [core] Batch small changes (#20877) @oliviertassinari
-
v4.9.12 Changes
April 26, 2020Apr 27, 2020 π Big thanks to the 32 contributors who made this release possible.
π± Here are some highlights β¨:
- π± βοΈ A first module written in TypeScript (#20685) @eps1lon.
- π π§π· A documentation fully translated in Brazilian (@jaironalves).
- π± And many more π bug fixes and π improvements.
π»
@material-ui/[email protected]
- π» [ButtonBase] Fix ripple size when clientX or clientY is 0 (#20654) @jin60641
- π» [ButtonGroup] Add disableElevation prop (#20747) @Andrew5569
- π» [ClickAwayListener] Fix support of leading edge (#20647) @oliviertassinari
- π» [ExpansionPanel] Increase contrast for focus state (#20720) @petermikitsh
- π» [l10n] Document how far Material-UI should go (#20737) @eloyrubinos
- π» [l10n] Improve az-AZ locale (#20659) @rommelmamedov
- π» [l10n] Improve bg-BG locale (#20668) @panayotoff
- π» [l10n] Improve cs-CZ locale (#20670) @char0n
- π» [l10n] Improve de-DE locale (#20684) @eps1lon
- π» [l10n] Improve et-EE locale (#20682) @villuv
- π» [l10n] Improve hu-HU locale (#20658) @vgaborabs
- π» [l10n] Improve it-IT locale (#20674) @Angelk90
- π» [l10n] Improve pl-PL locale (#20672) @eXtreme
- π» [l10n] Improve pt-BR locale (#20734) @jaironalves
- π» [l10n] Improve pt-PT locale (#20673) @hrafaelveloso
- π» [l10n] Improve ro-RO locale (#20681) @raduchiriac
- π» [l10n] Improve tr-TR locale (#20754) @yunusemredilber
- π» [l10n] Port locale to TypeScript (#20685) @eps1lon
- π [Modal] Prevent focus steal from other windows (#20694) @eps1lon
- π» [Popper] Add ref type definition (#20688) @takakobem
- π» [Select] Fix height inconsistency between input and select (#20780) @esseswann
- π» [Select] Pass onClick to menuItem (#20739) @marcosvega91
- π» [Slider] Fix focus after click (#20651) @davidcalhoun
- π» [Snackbar] Improve consecutive demos (#20721) @calbatr0ss
- π» [Tabs] Use a native element for the tabpanel role (#20648) @oliviertassinari
- π» [TextField] Fix required outlined label space with no asterisk (#20715) @eps1lon
- π» [TextField] Use aria-hidden on required asterisk (#20742) @alorek
- π» [Tooltip] Fix flip invalid CSS property error (#20745) @j-mendez
- π [useScrollTrigger] Fix out of sync trigger (#20678, #20680) @ohlr @marcosvega91.
π»
@material-ui/[email protected]
π₯ Breaking changes
- π [Autocomplete] Remove startAfter props (#20729) @marcosvega91
π Change
- π» [Autocomplete] Add new onHighlightChange callback (#20691) @marcosvega91
- π» [Autocomplete] Fix "fixed tags" demo (#20687) @kthyer
- π» [Autocomplete] Fix popup open logic when non empty (#20732) @marcosvega91
- π [Autocomplete] Remove dead code (#20663) @oliviertassinari
- β‘οΈ [TreeView] Update firstCharMap when a TreeItem is removed (#20085) @tonyhallett
π»
@material-ui/[email protected]
- β [core] Avoid test with instanceof HTMLElement (#20646) @oliviertassinari
π Docs
- π» [docs] Add "Persian" to the list of RTL languages (#20679) @mirismaili
- π» [docs] Add "reset focus" control to demo tools (#20724) @eps1lon
- 0οΈβ£ [docs] Allow default actions of nested elements (#20777) @eps1lon
- π» [docs] Batch small changes (#20644) @oliviertassinari
- π» [docs] English fix: fewer boilerplate -> less boilerplate (#20775) @dandv
- π» [docs] Fix dropped iframe content in firefox (#20686) @eps1lon
- π» [docs] Fix typo in vision.md (#20649) @Flavyoo
- β [docs] Fix warning and crash in dev mode (#20623) @oliviertassinari
- π» [docs] Improve infrastructure (#20751) @oliviertassinari
- π» [docs] Modernize DemoFrame (#20664) @eps1lon
- π» [docs] Never transition preview if not shown (#20784) @eps1lon
- π [docs] Parse markdown on mount (#20601) @eps1lon
- π» [docs] Replace react-frame-component with concurrent safe impl (#20677) @eps1lon
- π [docs] Sync translations (#20779) @oliviertassinari
- π» [material-ui-docs] Fix missing/extraneous dependencies (#20771) @eps1lon
Core
- β [AppBar] Migrate to testing-library (#20693) @marcosvega91
- β [Avatar] Migrate to testing-library (#20697) @marcosvega91
- β [Badge] Migrate to testing-library (#20710) @marcosvega91
- β [BottomNavigation] Migrate to testing-library (#20728) @marcosvega91
- β [Box] Migrate to testing-library (#20736) @marcosvega91
- β [Card] Migrate to testing-library (#20773) @marcosvega91
- π» [core] Bump
@material-ui/react-transition-group
(#20699) @eps1lon - π¨ [core] Force visibility on a few components in ink save print mode (#20749) @coktopus
- β [test] Improve textToHash test (#20770) @eps1lon
- π [test] Relax lint rules in test (#20702) @eps1lon
-
v4.9.11 Changes
April 18, 2020Apr 18, 2020 π Big thanks to the 25 contributors who made this release possible.
π»
@material-ui/[email protected]
- π» [Backdrop] Document Fade inherited component (#20500) @Josh-Weston
- β [Checkbox] Add test showcase for checked checkbox (#20571) @eps1lon
- π» [ExpansionPanel] Unify paddings with ListItem and similar components (#20586) @esseswann
- π» [l10n] Improve persian (fa-IR) locale (#20543) @ali4heydari
- π» [List] Fix ListItemIcon
children
type from element to Node (#20577) @alielkhateeb - π» [Popper] Fix support for TypeScript 3.2 (#20550) @NMinhNguyen
- π» [SwitchBase] Prepare v5 removal of the second argument of onChange (#20541) @samuliasmala
- π» [Tabs] Fix the types of the color props (#20595) @sirajalam049
- π» [TextareaAutosize] Fix height inconsistency for empty last row (#20575) @benwiley4000
- π» [TextField] Fix long label scrollbar (#20535) @Uzwername
- π» [theme] Allow palette tonalOffset light and dark values (#20567) @TidyIQ
π»
@material-ui/[email protected]
- π» [Autocomplete] Add fullWidth prop (#20538) @Uzwername
- β [Autocomplete] Add test cases for createFilterOptions (#20499) @netochaves
- π» [Autocomplete] Fix autoHighlight behavior (#20606) @qkdreyer
- [Autocomplete] Fix correcy core peer-dependency @oliviertassinari
- π» [Autocomplete] Fix missing startAfter type (#20542) @dohomi
- π» [Autocomplete] Fix reset input on blur for freeSolo mode too (#20603) @goffioul
- π» [Pagination] Fix missing renderItem types (#20592) @ankitasingh170190
π Docs
- β‘οΈ [blog] Q1 2020 Update (#20536) @oliviertassinari
- π» [docs] Add link for help on creating a custom transition (#20524) @zeckdude
- π» [docs] Correct "row" to "col" in Table (#20566) @sdpaulsen
- π» [docs] Fix command to start docs server (#20612) @plug-n-play
- π» [docs] Fix filerOption typo in autocomplete (#20572) @qkdreyer
- π» [docs] Fix punctuation and english grammar (#20596) @samisnotinsane
- π» [docs] Fix small typo in Container (#20589) @plug-n-play
- π» [docs] Improve a11y of the chip array example (#20294) @m4theushw
- π¨ [docs] Refactor markdown parsing (#20549) @eps1lon
- π [docs] Remove old workarounds (#20587) @eps1lon
- π [docs] Remove unnecessary webpack loaders (#20563) @eps1lon
- π [docs] Sync translations (#20498) @oliviertassinari
- π» [docs] Use reactStrictMode over custom switch (#20522) @eps1lon
Core
-
v4.9.10 Changes
April 11, 2020Apr 11, 2020 π Big thanks to the 20 contributors who made this release possible.
π± Here are some highlights β¨:
- π± βοΈ Migrate more descriptions of the props to TypeScript (#20342) @eps1lon.
The coverage has increased from 50 to 75 components. We are working on migrating the 48 missing components. - π± π¦ Fix support for portals and dropped events with ClickAwayListener (#20406, #20409) @NMinhNguyen, @seare-kidane.
- π± βΏοΈ Fix 3 accessibility issues (#20489, #20432, #20475) @arturbien, @ShehryarShoukat96.
- π± And many more π bug fixes and π improvements.
π Over the last 3 months, we have focused exclusively on making patch releases. We have done 11 so far. We have optimized for stability. In the coming weeks, we will initiate our work on the next major: v5. You can expect the following:
- A feature freeze on v4.
- β¬οΈ The introduction of deprecation messages in the next v4 minors. These messages will help developers upgrade to v5.
- π A progressive bug fixes freeze on v4, to the exception of security issues and important bugs.
- π At least 6 months of work on v5 to get to a stable release (probably more). You can follow our milestone. We will look for hiring a new full-time member on the core team to move faster.
π»
@material-ui/[email protected]
- π» [Breadcrumbs] Keep focus in the component after expanding (#20489) @ShehryarShoukat96
- π» [ButtonBase] Warn with wrong component prop (#20401) @oliviertassinari
- π» [ClickAwayListener] Fix support for portal (#20406) @NMinhNguyen
- π [ClickAwayListener] Fix support for removed DOM node (#20409) @seare-kidane
- π» [CssBaseline] Add limitation for ScopedCssBaseline (#20481) @newrice
- π» [CssBaseline] Fix typings for
@global
override (#20454) @eps1lon - π» [Dialog] Fix TypeScript type for
children
(#20450) @NMinhNguyen - π» [Popper] Fix links to popper.js (#20464) @eps1lon
- π» [Popper] Fix outdated TypeScript props docs (#20465) @eps1lon
- π [Popper] Fix popper.js deprecation npm warning (#20433) @oliviertassinari
- π» [Select] Add aria-disabled attribute (#20432) @arturbien
- β [Select] Add new test for onChange (#20444) @arturbien
- π» [Slider] Allow individual mark customization (#17057) @mstrugo
- 0οΈβ£ [Table] Add role if the default role of elements can't be used (#20475) @arturbien
- β‘οΈ [TextareaAutosize] Update rows/rowMax to use number for better clarity (#20469) @esemeniuc
- π» [theme] Fix typings to pass array for spacing (#20486) @denys-pavlenko
- π» [theme] Fix typings for theme.spacing (#20435) @m4theushw
- π» [theme] Support string args in theme.spacing (#20408) @m4theushw
- π [TypeScript] Move more prop docs into IntelliSense (#20342) @eps1lon
- π» [TypeScript] Fix support for TypeScript 3.2 (#20443) @NMinhNguyen
- π» [TypeScript] Fix TypeScript type for optional
children
(#20458) @NMinhNguyen
π
@material-ui/[email protected]
- π» [TypeScript] Fix support for TypeScript 3.2 (#20443) @NMinhNguyen
π»
@material-ui/[email protected]
- π» [TypeScript] Fix support for TypeScript 3.2 (#20443) @NMinhNguyen
π»
@material-ui/[email protected]
- π» [TypeScript] Fix support for TypeScript 3.2 (#20443) @NMinhNguyen
π»
@material-ui/[email protected]
- π» [Alert] Fix support for nested elements (#20490) @developerKumar
- π» [Autocomplete] Improve virtualization example (#20496) @galkadaw
- π» [Autocomplete] Warn when mixing controlled/uncontrolled inputValue states (#20403) @vileppanen
- π» [Rating] Warn if precision prop is below 0.1 (#20491) @AlexAndriyanenko
- 0οΈβ£ [ToggleButton] Don't set default for disableRipple prop (#20493) @cp
π Docs
- π» [examples] Fix Next.js AMP support (#20463) @timneutkens
- π» [examples] Fix Next.js prop-type (#20474) @Izhaki
- π» [docs] Material-UI Developer Survey 2020 @oliviertassinari
- π» [docs] Add Component name section to API docs (#20434) @Josh-Weston
- π» [docs] Fix various issues with heading structure (#20389) @eps1lon
- π [docs] Synchronize translations (#20405) @oliviertassinari
Core
- π± βοΈ Migrate more descriptions of the props to TypeScript (#20342) @eps1lon.