material-ui

Material UI: Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google's Material Design.

MIT License

Downloads
179M
Stars
91.4K
Committers
3.2K
material-ui - v6.0.0-beta.6 Latest Release

Published by siriwatknp 2 months ago

A big thanks to the 18 contributors who made this release possible.

@mui/[email protected]

  • [Autocomplete] Improve the options prop description (#41591) @pluvio72
  • [Autocomplete] Remove autocomplete warning regarding value not equal to option (#43314) @ZeeshanTamboli
  • [Divider] Add aria-orientation (#43241) @aarongarciah
  • [IconButton] Fix hover background color behavior (#43271) @mnajdova
  • [TypeScript] Refactor types so they're compatible with upcoming React 19 (#43276) @DiegoAndai
  • [Typography] Replace dot notation color value to work with Pigment CSS (#43288) @siriwatknp
  • [pigment-css] Fix getSelector prefers-color-scheme to be object (#43237) @siriwatknp
  • Remove display="block" usage to work with Pigment CSS (#43307) @siriwatknp

@mui/[email protected]

  • [codemod] Skip sx spread transformation (#43291) @siriwatknp

@mui/[email protected]

  • [styles] Fix issues reported by eslint-plugin-react-compiler (#43118) @jlewins

Docs

  • [material-ui] Audit and copyedit the v6 migration doc (#43073) @samuelsycamore
  • [material-ui] Fix Material Icon search lag and other improvements (#41330) @anle9650
  • [material-ui][Popover] Fix description and title of hover interaction section (#43290) @ZeeshanTamboli
  • [material-ui] Refine and unify custom template themes (#43220) @zanivan
  • [joy-ui] Fix data grid redirection (#43247) @sai6855
  • [mui-system] Add import statement in docs (#43223) @sai6855
  • Update babel config (#43286) @romgrk
  • Fix outdated references to Materal UI version (#43321) @oliviertassinari
  • Polish migration git diff experience @oliviertassinari
  • Update LTS to match format (#43212) @oliviertassinari
  • Fix Pigment CSS migration content (#43217) @siriwatknp

Core

  • [code-infra] Remove userEvent export from @mui/internal-test-utils (#43313) @LukasTy
  • [code-infra] Remove unnecessary alias (#43320) @Janpot
  • [code-infra] Fix utils bundle size entrypoint (#43304) @Janpot
  • [core] missing and incorrect scripts (#43209) @Jay-Karia
  • [core] Set Node 14 as minimum version in all browserslist envs (#43326) @aarongarciah
  • [core] Add React 19 as peer dependency (#43216) @aarongarciah
  • [core] Pin eslint-plugin-jsx-a11y version to 6.7.1 (#43292) @Janpot
  • [core] Update supported Node.js version to 14 (#43315) @Janpot
  • [core] Use fs instead of fs-extra in script utils (#43234) @DiegoAndai
  • [core] Refactor system theme props (#43120) @romgrk
  • [docs-infra] Fix some TS issues for X docs (#43285) @Janpot
  • [docs-infra] Move API pages to TS (#43199) @alexfauquette
  • [docs-infra] Fix broken sandboxes with relative module imports (#42767) @bharatkashyap
  • [docs-infra] Simplify API sections typing (#43128) @alexfauquette
  • [examples] Fix import (#43316) @aarongarciah
  • [examples] Add material-ui-pigment-css for Next.js and Vite (#43065) @siriwatknp
  • [examples] Replace wrong import with @mui/material/styles (#43236) @siriwatknp
  • [useMediaQuery] Adapt test implementation for React 19 (#43269) @aarongarciah
  • [test] Update matchMedia mocks (#43240) @cherniavskii
  • [test] Remove unnecessary ref param (#43282) @aarongarciah
  • [website] Update showcase to include Toolpad Core (#43226) @bharatkashyap
  • [website] Replace React.MutableRefObject with React.RefObject (#43284) @aarongarciah

All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @anle9650, @bharatkashyap, @cherniavskii, @DiegoAndai, @Janpot, @Jay-Karia, @jlewins, @mnajdova, @oliviertassinari, @pluvio72, @renovate[bot], @romgrk, @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli

material-ui -

Published by mnajdova 2 months ago

Aug 9, 2024

A big thanks to the 3 contributors who made this release possible.

@mui/[email protected]

  • [material-ui][mui-system] Add support for version runtime checks (#43233) @DiegoAndai

Docs

  • [docs] Fix 301 @oliviertassinari

Core

  • [website] Fix wrong link in pricing table (@zanivan) (#43143) @zanivan
  • [website] Add blog link to pricing table (@zanivan) (#43140) @zanivan

All contributors of this release in alphabetical order: @DiegoAndai, @oliviertassinari, @zanivan

material-ui -

Published by mnajdova 3 months ago

Aug 8, 2024

A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:

  • Remove some deprecated props from the ListItem component (#41566) @thathva
  • Bumped the minimum supported version of TypeScript to v4.7 (#43116) @mnajdova

@mui/[email protected]

BREAKING CHANGES

  • [material-ui][ListItem] Removing deprecated props (#41566) @thathva

    ListItem's props autoFocus, button, disabled, and selected, deprecated in v5, have been removed. To replace the button prop, use ListItemButton instead. The other removed props are available in the ListItemButton component as well.

    -<ListItem button />
    +<ListItemButton />
    

    Use this codemod to migrate your project to the ListItemButton component:

    npx @mui/codemod@next v6.0.0/list-item-button-prop <path/to/folder>
    

    As the ListItem no longer supports these props, the class names related to these props were removed. You should use the listItemButtonClasses object instead.

    -import { listItemClasses } from '@mui/material/ListItem';
    +import { listItemButtonClasses } from '@mui/material/ListItemButton';
    
    - listItemClasses.button
    + listItemButtonClasses.root
    
    - listItemClasses.focusVisible
    + listItemButtonClasses.focusVisible
    
    - listItemClasses.disabled
    + listItemButtonClasses.disabled
    
    - listItemClasses.selected
    + listItemButtonClasses.selected
    

Changes

  • [material-ui][Autocomplete] Fix default value for multiple mode getting redefined with React 19 (#43189) @DiegoAndai
  • [material-ui] Merge CssVarsProvider into ThemeProvider (#43115) @siriwatknp
  • [material-ui] Make tests compatible with React 19 (#43155) @DiegoAndai
  • [material-ui] Refine Blog template (#42825) @zanivan
  • [material-ui] Element ref access React 19 compatibility (#43132) @DiegoAndai
  • [material-ui][mui-system] Add support for version runtime checks (#43190) @DiegoAndai

@mui/[email protected]

  • Reexport Pigment CSS from index file (#43218) @siriwatknp

@mui/[email protected]

  • Fix codemod crash on MuiDivider property (#43125) @Janpot

Docs

  • Fix resolution of @mui/material-ui in docs (#43108) @Janpot
  • Refine and polish out Templates page (#43131) @zanivan
  • Fix the link test script (#43195) @alexfauquette
  • Fix alpha usage (#43194) @siriwatknp
  • Link Toolpad Core components from Material UI docs (#43036) @prakhargupta1
  • Link Toolpad core docs to the docs menu (#42952) @prakhargupta1
  • Polish migration guide (#43021) @oliviertassinari
  • Fix 404 link to migration pages @oliviertassinari
  • Support inject dynamic theme (#42879) @Vxee
  • Fix 301 @oliviertassinari
  • [blog] Announcing pricing changes Sep 2024 (#43061) @joserodolfofreitas
  • [material-ui][TextField] Remove mentions of redux-form from TextField documentation (#43176) @AbdurRahman2004

Core

  • [code-infra] Fix @mui/internal-test-utils screen export type (#43150) @LukasTy
  • [code-infra] Do not look for changes with previous commit when releasing a canary version (#43129) @michaldudak
  • [code-infra] Automate canary releases (#43066) @michaldudak
  • [core] Apply top-level eslint rule to docs and fix violations (#43126) @Janpot
  • [core] Patch styled-components to use React.JSX namespace (#43205) @aarongarciah
  • [core] Replace JSX namespace usages with React.JSX (#43204) @aarongarciah
  • [core] Remove react-router package from pigment-css-vite-app (#43201) @ZeeshanTamboli
  • [core] Remove unnecessary types packages from @mui/internal-babel-macros (#43193) @ZeeshanTamboli
  • [docs-infra] Move ApiPage to TS (#43149) @alexfauquette
  • [test] Remove unnecessary prop type check in test (#43211) @aarongarciah
  • [test] Make conformance tests work with async render function (#43156) @michaldudak
  • [typescript] Update the minimum supported version (#43116) @mnajdova
  • [website] Add icons to core page products (#43151) @zanivan
  • [website] Copyedit Docs and Product menu taglines (#43075) @samuelsycamore
  • [website] Fix wrong link in pricing table (#43141) @zanivan
  • [website] Add blog link to pricing table (#43123) @zanivan

All contributors of this release in alphabetical order: @aarongarciah, @AbdurRahman2004, @alexfauquette, @DiegoAndai, @Janpot, @joserodolfofreitas, @LukasTy, @michaldudak, @mnajdova, @oliviertassinari, @prakhargupta1, @samuelsycamore, @siriwatknp, @thathva, @Vxee, @zanivan, @ZeeshanTamboli

material-ui - v5.16.6

Published by DiegoAndai 3 months ago

Jul 30, 2024

A big thanks to the 5 contributors who made this release possible.

@mui/[email protected]

  • [Divider] Enable borderStyle enhancement in divider with children (#43059) @anuujj

Docs

  • [material-ui][Card] Update CardMedia description (#43121) @shahzaibdev1
  • [material-ui] Replace deprecated <ListItem button/> with ListItemButton component in routing libraries list example (#43114) @aliharis99
  • [material-ui][Snackbar] Improve close reason type in demos (#43105) @sai6855

Core

  • [code-infra] Use the same CI names on master & next (#43064) @mnajdova

All contributors of this release in alphabetical order: @aliharis99, @anuujj, @mnajdova, @sai6855, @shahzaibdev1

material-ui - v6.0.0-beta.4

Published by DiegoAndai 3 months ago

Jul 30, 2024

A big thanks to the 12 contributors who made this release possible.

@mui/[email protected]

  • [Accordion] Render a heading wrapping AccordionSummary button per W3C Accordion Pattern standards (#42914) @ZeeshanTamboli
  • [Divider] Enable borderStyle enhancement in divider with children (#42715) @anuujj
  • [ImageListItemBar] Deprecate composed classes (#42905) @sai6855
  • Attach selector for default color scheme (#43035) @siriwatknp
  • Stabilize Grid v2 and deprecate Grid v1 (#43054) @DiegoAndai

@mui/[email protected]

  • Make createBreakpoints independent for stringify theme (#43048) @siriwatknp

@mui/[email protected]

  • Fix issues reported by the React Compiler (#43051) @markliu2013

Docs

  • [material-ui] Replace deprecated <ListItem button/> with ListItemButton component in routing libraries list example (#43110) @aliharis99
  • [material-ui][Card] Update CardMedia description (#43067) @shahzaibdev1
  • [material-ui] Polish out data table demo (#43072) @zanivan
  • [material-ui][Snackbar] Improve reason type in demos (#43077) @sai6855
  • [pigment-css] Fix syntax in migrating-to-pigment-css guide (#43107) @KevinVandy
  • Fix page description line break @oliviertassinari

Core

  • Fix event naming convention @oliviertassinari
  • [docs-infra] Move ads to the @mui/docs package (#42944) @alexfauquette
  • [website] Fine-tune button styles on the branding theme (#43082) @zanivan

All contributors of this release in alphabetical order: @alexfauquette, @aliharis99, @anuujj, @DiegoAndai, @KevinVandy, @markliu2013, @oliviertassinari, @sai6855, @shahzaibdev1, @siriwatknp, @zanivan, @ZeeshanTamboli

material-ui - v5.16.5

Published by brijeshb42 3 months ago

Jul 25, 2024

A big thanks to the 4 contributors who made this release possible.

@mui/[email protected]

  • [utils] Add dependency to @mui/types (@mnajdova) (#43047) @mnajdova

Docs

  • [material-ui][joy-ui][Autocomplete] Fix Hint demo (@ManthanGajjar) (#43039) @ManthanGajjar
  • Fix CHANGELOG convention @oliviertassinari
  • [material-ui] Fix broken image links in blog template on master branch (#42969) @navedqb

All contributors of this release in alphabetical order: @ManthanGajjar, @mnajdova, @navedqb, @oliviertassinari

Full Changelog: https://github.com/mui/material-ui/compare/v5.16.4...v5.16.5

material-ui - v6.0.0-beta.3

Published by brijeshb42 3 months ago

Jul 24, 2024

A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:

  • 🚀 New version of the free Dashboard template, now with more components and an improved layout.

@mui/[email protected]

  • Fix Divider props codemod (#42919) @aarongarciah

@mui/[email protected]

  • Fix Accessing element.ref (#42818) @sai6855
  • Refine extendTheme and CssVarsProvider API (#42839) @siriwatknp
  • [Typography] Deprecate paragraph prop (#42383) @walston
  • [Rating] fix defaultLabelText a11y issue with undefine value input and hint (#42810) @ZouYouShun

@mui/[email protected]

  • [material-ui-nextjs] Add @emotion/react as peer dependency (#42885) @jeloagnasin
  • [material-ui-nextjs] Remove @mui/material as peer dependency (#43041) @brijeshb42

@mui/[email protected]

  • [utils] Add dependency to @mui/types (#43029) @mnajdova

Docs

  • [material-ui][joy-ui][Autocomplete] Fix Hint demo (#42990) @ManthanGajjar
  • [docs] Make DemoSandbox agnostic of productId (#43042) @Janpot
  • [docs] Use slot variants over theme.variants (#42614) @siriwatknp
  • [docs] Remove stringify theme import (#43032) @siriwatknp
  • [docs] Bring v5.x changes to the CHANGELOG @oliviertassinari
  • [docs] Fix migration typo (#42976) @mnajdova
  • [material-ui] Add improvements to Dashboard template (#42445) @zanivan
  • [material-ui] Fix broken image links in blog template (#42956) @navedqb

Core

  • [code-infra] Add toolpad npm scope to envinfo (#41942) @Janpot
  • [code-infra] Fix pnpm lock file (#43030) @Janpot
  • [code-infra] Run react-17 and react-next workflows on the next branch (#42690) @cherniavskii
  • [code-infra] Make useReactVersion script reusable in other repos (#42828) @cherniavskii
  • [code-infra] Add toolpad npm scope to envinfo (#41942) @Janpot
  • [core] Add pigment and Base UI scopes to envinfo (#43002) @Janpot
  • [core] Update minimum version of Node.js to 14.0.0 (#42920) @DiegoAndai
  • [core] Expose missing screen methods from Testing Library (#42968) @aarongarciah
  • [docs-infra] Leave TODO for warnOnce to reduce bundle size @oliviertassinari
  • [docs-infra] Remove display: flex from SectionTitle (#42979) @LukasTy
  • [test][material-ui] Remove unnecessary async act calls (#42942) @aarongarciah
  • [website] Fix strange focus-visible on hover (#42924) @oliviertassinari

All contributors of this release in alphabetical order: @aarongarciah, @bharatkashyap, @brijeshb42, @cherniavskii, @DiegoAndai, @Janpot, @jeloagnasin, @LukasTy, @ManthanGajjar, @mnajdova, @navedqb, @oliviertassinari, @sai6855, @siriwatknp, @walston, @zanivan, @ZouYouShun

material-ui - v5.16.4

Published by DiegoAndai 3 months ago

Jul 16, 2024

A big thanks to the one contributor who made this release possible.

@mui/[email protected]

  • Fix wrong import in Popover types (#42967) @mnajdova

All contributors of this release in alphabetical order: @mnajdova

material-ui - v6.0.0-beta.2

Published by siriwatknp 3 months ago

This is a hotfix release to fix the dependency issue in v6.0.0-beta.1.

@mui/[email protected]

  • [material] Add missing dependency (#42961) @mnajdova

Docs

  • [docs] Move feedback from Canny to GitHub @oliviertassinari

All contributors of this release in alphabetical order: @mnajdova, @oliviertassinari

material-ui -

Published by mnajdova 3 months ago

Jul 16, 2024

A big thanks to the 3 contributors who made this release possible.

@mui/[email protected]

  • [material] Add missing dependency (#42959) @mnajdova

Docs

  • [material-ui][Autocomplete] Add instructions about autosuggest-highlight dependency (#42953) @HoFa1997
  • Move feedback from Canny to GitHub @oliviertassinari

All contributors of this release in alphabetical order: @HoFa1997, @mnajdova, @oliviertassinari

material-ui - v6.0.0-beta.1

Published by mj12albert 3 months ago

Jul 16, 2024

A big thanks to the 6 contributors who made this release possible.

@mui/[email protected]

  • Remove dependency on @mui/base (#42907) @mnajdova
  • Set material-pigment-css to public (#42912) @siriwatknp

@mui/[email protected]

  • Support sx conditional inside spread element (#42894) @siriwatknp

Docs

  • Fix 301 link @oliviertassinari
  • [material-ui] Add script to generate template screenshots (#42903) @siriwatknp

Core

  • [core] Remove custom hooks from the mui-name-matches-component-name linting rule (#42773) @flaviendelangle
  • [core] Normalize rest / other to match the most common used @oliviertassinari
  • [docs-infra] Move Ads component to TS (#42842) @alexfauquette
  • [docs-infra] Support code tabs overflow (#42913) @arminmeh
  • [website] Sync /about page @oliviertassinari

All contributors of this release in alphabetical order: @alexfauquette, @arminmeh, @flaviendelangle, @mnajdova, @oliviertassinari, @siriwatknp

material-ui - v5.16.2

Published by mj12albert 3 months ago

Jul 16, 2024

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

  • [material] Remove dependency to @mui/base (@mnajdova) (#42917) @mnajdova

Core

  • [website] Sync /about page @oliviertassinari

All contributors of this release in alphabetical order: @mnajdova, @oliviertassinari

material-ui - v6.0.0-beta.0

Published by aarongarciah 3 months ago

A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:

  • 🎉 This is the first v6 beta release! A huge thanks to everyone who helped to make this happen! The target date for a stable release is the 28th of July. The next month will be used to polish v6, and ease the migration from v5. You can follow the v6 stable milestone for more details.
  • 🚀 All planned breaking changes are completed.

@mui/[email protected]

  • Revert deprecation warnings for *Components and *Props for v6 (#42466) @lhilgert9
  • Performance: lazy Ripple (#41061) @romgrk
  • [AppBar] Fix inherit color is inconsistent between ThemeProvider and CssVarsProvider (#42714) @ZeeshanTamboli
  • [Autocomplete] Add new AutocompleteInputChangeReason (#37301) @binh1298

@mui/[email protected]

  • Create a wrapper package over Pigment CSS (#42819) @brijeshb42

@mui/[email protected]

  • [Autocomplete] Add new AutocompleteInputChangeReason (#37301) @binh1298

Docs

  • Replace v6 "alpha" mentions with "beta" (#42895) @DiegoAndai
  • Fix typos (#42862) @omahs
  • Fix issues reported by react compiler in docs folder (#42881) @sai6855
  • Fix 301 @oliviertassinari
  • [LinearProgress] Fix buffer demo (#42858) @mbrookes
  • Adjust site to add Toolpad on the homepage (#38604) @bharatkashyap

Core

  • Fix imports in Demo component (#42857) @LukasTy
  • Use @mui/docs/HighlightedCodeWithTabs in markdown (#42841) @Janpot
  • Simpler pnpm dedupe error message to act on @oliviertassinari
  • Fix split infinitive use in tests @oliviertassinari
  • [lab] Fix issues reported by react-compiler in mui-lab (#42880) @sai6855

All contributors of this release in alphabetical order: @bharatkashyap, @brijeshb42, @DiegoAndai, @Janpot, @lhilgert9, @LukasTy, @mbrookes, @oliviertassinari, @omahs, @romgrk, @sai6855, @ZeeshanTamboli

material-ui - v5.16.1

Published by aarongarciah 3 months ago

A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:

  • ⚛️ All packages, including Material UI, are now compatible with React 18.3.1

@mui/[email protected]

  • [AppBar] Fix inherit color is inconsistent between ThemeProvider and CssVarsProvider (#42713) @ZeeshanTamboli

@mui/[email protected]

  • [Autocomplete] Fix React spread key warning (#42856) @aarongarciah

Docs

  • [material-ui] Fix React 18.3 key spread warnings in Autocomplete demos (#42854) @aarongarciah
  • [material-ui] Fix type error in virtualized table demo (#42852) @aarongarciah
  • Fix typos (@omahs) (#42888) @omahs
  • Fix 301 @oliviertassinari

Core

  • [core] Bump React to 18.3.1 (#42846) @aarongarciah
  • [core] Remove react-test-renderer (#42853) @aarongarciah
  • [core] Replace enzyme in describeConformance (#42847) @aarongarciah
  • [test] Remove enzyme (#42850) @aarongarciah
  • [test] Remove createMount test util (#42849) @aarongarciah
  • [base-ui] Fix React spread key warning in test (#42855) @aarongarciah
  • [styles][withStyles] Expect React defaultProps warning in test (#42752) (#42851) @aarongarciah

All contributors of this release in alphabetical order: @aarongarciah, @oliviertassinari, @omahs, @ZeeshanTamboli

material-ui - v5.16.0

Published by siriwatknp 4 months ago

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

  • 🚀 Added InitColorSchemeScript for Next.js App Router (#42829) @siriwatknp

@mui/[email protected]

  • [Alert] Add ability to override slot props (@alexey-kozlenkov) (#42808) @alexey-kozlenkov
  • Add InitColorSchemeScript for Next.js App Router (#42829) @siriwatknp
  • Add DefaultPropsProvider (#42820) @siriwatknp
  • Support CssVarsTheme in responsiveFontSizes return type (@jxdp) (#42806) @jxdp
  • Remove warning from getInitColorSchemeScript (#42838) @siriwatknp

Docs

  • [docs] Fix 301 MDN redirections @oliviertassinari

Core

  • [mui-utils][test] Remove usages of deprecated react-dom APIs (@aarongarciah) (#42813) @aarongarciah

All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @jxdp, @oliviertassinari, @siriwatknp

material-ui -

Published by siriwatknp 4 months ago

A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:

  • ✨ Updated Grid v2 to match PigmentGrid (#42742) @DiegoAndai

@mui/[email protected]

BREAKING CHANGES

  • [Grid] Update Grid props to match PigmentGrid (#42742) @DiegoAndai

    Use the codemod below to migrate the props:

    npx @mui/codemod@next v6.0.0/grid-v2-props /path/to/folder
    

Changes

  • [Alert] Add ability to override slot props (#42787) @alexey-kozlenkov
  • [Dialog] Revert incorrect textAlign style removal (#42778) @DiegoAndai
  • [theme] Support CssVarsTheme in responsiveFontSizes return type (#42786) @jxdp

Docs

  • [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal
  • [material-ui] Fix issues reported by react-compiler in docs folder (#42830) @sai6855
  • [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal
  • [base-ui] Fix wrong description for UseTabParameters.onChange (#42749) @ohgree
  • Fix 301 MDN redirections @oliviertassinari

Core

  • [core] Bump React to 18.3.1 (#42047) @renovate[bot]
  • [core] Revert lint for useThemeProps (#42817) @siriwatknp
  • [core] Remove useIsFocusVisible util (#42467) @DiegoAndai
  • [core] Remove react-test-renderer (#42784) @aarongarciah
  • [core][mui-utils] Remove remaining IE11 references (#42777) @DiegoAndai
  • [code-infra] Move HighlightedCode test into @mui/docs package (#42835) @LukasTy
  • [code-infra] Cleanup @mui/docs usage and legacy re-exports (#42833) @LukasTy
  • [docs-infra] Fix React Compiler ESLint issues in website components (#42566) @aarongarciah
  • [docs-infra] Add batch of design polish (#42823) @danilo-leal
  • [test][mui-utils] Remove usages of deprecated react-dom APIs (#42780) @aarongarciah
  • [test][joy-ui][Autocomplete] Fix spread key error in test (#42775) @aarongarciah

All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @danilo-leal, @DiegoAndai, @Janpot, @jxdp, @LukasTy, @ohgree, @oliviertassinari, @renovate[bot], @sai6855, @siriwatknp

material-ui - v6.0.0-alpha.13

Published by siriwatknp 4 months ago

A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 🚀 Added layout components for Pigment CSS integration (#42693) @siriwatknp

@mui/[email protected]

  • [Autocomplete] Fix more React 18.3 key spread warnings in demos (#42639) @wbt
  • [Container][Grid][Stack][Hidden] Export Pigment CSS layout components (#42693) @siriwatknp
  • [Text Field] when click password visibility button, text caret position change to very front. (#42595) @appleSimple
  • [Modal] migrate useSlotProps to useSLot (#42150) @sai6855

@mui/[email protected]

  • [withStyles] Expect React defaultProps warning in test (#42752) @aarongarciah
material-ui -

Published by mnajdova 4 months ago

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/[email protected]

  • [Autocomplete] Fix renderOption props type (@DiegoAndai) (#42709) @DiegoAndai
  • [Stepper] Generate class for nonLinear prop (@alexismo) (#42677) @alexismo

Docs

  • Use new email for sponsoring @oliviertassinari
  • Fix 301 links (@alexfauquette) (#42700) @alexfauquette
  • [material-ui][Select] Fix the SelectAutoWidth demo menu item value (@Danielkhakbaz) (#42696) @Danielkhakbaz
  • [material-ui][Autocomplete] Fix more React 18.3 key spread warnings in demos (#42766) @wbt
  • [material-ui] Fix sign in side image (#42708) @zanivan
  • [website] Add Ale to team (#42769) @alelthomas

Core

  • [core] Cherry pick pnpm updates (#42763) @DiegoAndai
  • [website] Add Armin to the team members (@arminmeh) (#42681) @arminmeh
  • [website] Open Staff Engineer role for Pigment CSS (@mnajdova) (#42669) @mnajdova

All contributors of this release in alphabetical order: @alexfauquette, @alexismo, @arminmeh, @Danielkhakbaz, @DiegoAndai, @mnajdova, @oliviertassinari

material-ui -

Published by mnajdova 4 months ago

Jun 24, 2024

A big thanks to the 17 contributors who made this release possible.

@mui/[email protected]

  • Add InitColorSchemeScript for Next.js App Router (#42247) @siriwatknp
  • [Autocomplete] Fix renderOption props type (#42689) @DiegoAndai
  • [Autocomplete] Fix React 18.3 key spread warnings in Autocomplete demos (#42691) @aarongarciah
  • Support Pigment CSS for CssBaseline, ScopedCssBaseline and Popper (#42640) @siriwatknp
  • Add DefaultPropsProvider for Pigment CSS integration (#42638) @siriwatknp
  • [Stepper] Generate class for nonLinear prop (#42620) @alexismo
  • [Tab] Fix failing test (#42686) @aarongarciah
  • [Tab] Deprecate iconWrapper class for icon class (#42647) @sai6855
  • [TableSortLabel] Deprecate composed classes (#42281) @sai6855
  • [usePagination] Update pagination siblingsEnd calculation logic (#42667) @Mini-ghost

@mui/[email protected]

  • Support dynamic props styled transformation (#42683) @siriwatknp

@mui/[email protected]

  • Fix issues reported by react compiler in mui-system package (#42637) @sai6855
  • [useMediaQuery] Remove deprecated types (#42560) @aarongarciah

@mui/[email protected]

  • Fix issues reported by the React Compiler (#42671) @anuujj
  • [Autocomplete] Fix React spread key warning (#42741) @aarongarciah

@mui/[email protected]

  • [LoadingButton] Apply wrapping element to prevent React crash on Google page translation (#35198) @BartJanvanAssen

Docs

  • Fix git diff format in migration to v6 (#42711) @oliviertassinari
  • Use new email for sponsoring @oliviertassinari
  • Fix 301 links (#42697) @alexfauquette
  • Normalize the capitalization of Design Kit @oliviertassinari
  • Recommend setting HTML attribute instead of DOM property for RTL (#42599) @aarongarciah
  • [material-ui][Select] Fix the SelectAutoWidth demo menu item value (#42648) @Danielkhakbaz

Core

  • [code-infra] Try disabling animations when taking screenshots (#42537) @Janpot
  • [code-infra] Fix benchmark package (#42553) @Janpot
  • [core] Replace enzyme in describeConformance (#42447) @DiegoAndai
  • [docs-infra] Fix layout shift demo toolbar (#42743) @oliviertassinari
  • [docs-infra] Fix visual look of in-house ad (#42735) @oliviertassinari
  • [docs-infra] Add stray design polish (#42646) @danilo-leal
  • [docs-infra] Fix wrong migration (#42675) @siriwatknp
  • [docs-infra] Fine tune markdown elements design (#42643) @danilo-leal
  • [docs-infra] Revamp the product switcher design (#42603) @danilo-leal
  • [docs-infra] Allow Link component to receive the role attribute (#42629) @danilo-leal
  • [infra] Add support donation button (#42499) @oliviertassinari
  • [infra] Raise tsconfig/tsc target to es2022 (#42645) @LukasTy
  • [test] Fix tests on CI (#42670) @michaldudak
  • [test] Fix issues reported by react-compiler in test packages (#42626) @sai6855
  • [website] Add Armin to the team members (#42679) @arminmeh
  • [website] Open Staff Engineer role for Pigment CSS (#42531) @mnajdova

All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @alexismo, @anuujj, @arminmeh, @BartJanvanAssen, @Danielkhakbaz, @danilo-leal, @DiegoAndai, @Janpot, @LukasTy, @michaldudak, @Mini-ghost, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp

material-ui - v5.15.20

Published by brijeshb42 4 months ago

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/[email protected]

  • [Autocomplete] Shouldn't resize when hovering (@ZeeshanTamboli) (#42535) @ZeeshanTamboli
  • [Tab] Fix applying iconWrapper styles from theme and update its description (@sai6855) (#42570) @sai6855

@mui/[email protected]

  • Allow passing NaN as defaultValue to useControlled (@iammminzzy) (#42571) @iammminzzy
  • Fix GitHub-reported prototype pollution vulnerability in deepmerge (#41652) (#42608) @DiegoAndai

Docs

  • [docs] Add Pigment CSS and Base UI logos SVGs (#42513) @danilo-leal
  • [docs] Update twitter.com to x.com @oliviertassinari
  • [docs] Simplify Example projects page @oliviertassinari
  • [material-ui] Add docs for complementary stepper components (@anle9650) (#42613) @anle9650
  • [docs] Add changelog section to the design kits page (@danilo-leal) (#42463) @danilo-leal
  • [material-ui] Fix sentence in the All components page (@danilo-leal) (#42462) @danilo-leal
  • [material-ui] Update Figma design kit doc redirect link (@danilo-leal) (#42456) @danilo-leal
  • [system] Add "dynamic values" section to sx prop page (@aarongarciah) (#42453) @aarongarciah

Core

  • [website] Move the React Engineer - X role to future roles (#42532) @DanailH
  • [examples] Remove Pigment CSS examples (#42538) @sai6855
  • [website] Close Developer Advocate / Content Engineer role @oliviertassinari
  • [website] Update DoiT description and link in Sponsors section (@erezstmn-doit) (#42511) @erezstmn-doit
  • [website] Clean up the docs-infra job ad (@danilo-leal) (#42509) @danilo-leal
  • [website] Open the Docs-infra engineer role (@danilo-leal) (#42496) @danilo-leal
  • [website] Fix locationCountry in about page @oliviertassinari

All contributors of this release in alphabetical order: @aarongarciah, @anle9650, @DanailH, @danilo-leal, @erezstmn-doit, @iammminzzy, @oliviertassinari, @sai6855, @ZeeshanTamboli