Skip to content

Releases: Mezzanine-UI/mezzanine

v0.15.3

30 Oct 06:44
Compare
Choose a tag to compare
v0.15.3 Pre-release
Pre-release

What's Changed

  • feat(react/autocomplete): add props.searchTextControlRef to allow customize inner search text
    • Previously, the <AutoComplete /> couldn't be controlled externally for search text, which prevented certain custom behaviors. Now, it can be controlled externally. For Example:
    const searchTextControlRef = useRef<{
        setSearchText: Dispatch<SetStateAction<string>>;
    }>();
    
    useEffect(() => {
       // do something
       // ...
       const { current: searchTextControl } = searchTextControlRef;
    
      if (searchTextControl) {
        // clear Autocomplete search text
        searchTextControl.setSearchText('');
      }
    }, []);
    
    return (
      <AutoComplete searchTextControlRef={searchTextControlRef} />
    );

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.15.2...@mezzanine-ui/react@0.15.3

v0.15.2

21 Aug 01:29
Compare
Choose a tag to compare
v0.15.2 Pre-release
Pre-release

What's Changed

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.15.1...@mezzanine-ui/react@0.15.2

v0.15.1

16 Aug 02:49
Compare
Choose a tag to compare
v0.15.1 Pre-release
Pre-release

What's Changed

Feature

Bug Fixed

  • Fix the issue that getScrollbarWidth should be called before body locked.

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.15.0...@mezzanine-ui/react@0.15.1

v0.15.0

14 Aug 05:54
Compare
Choose a tag to compare
v0.15.0 Pre-release
Pre-release

No User Notable Changes

Bump minor version to 15 just in case. For more detailed update information, see #226

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.10...@mezzanine-ui/react@0.15.0

v0.14.10

22 Jul 03:52
Compare
Choose a tag to compare
v0.14.10 Pre-release
Pre-release

What's Changed

  • Fix the bug where scroll lock will cause layout shifting by @travor20814 in #225

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.9...@mezzanine-ui/react@0.14.10

v0.13.13

22 Jul 03:51
Compare
Choose a tag to compare
v0.13.13 Pre-release
Pre-release

This update is for backward compatibility only.

New Utils:

  • function getScrollbarWidth can get the scroll bar width

Bug Fix:

  • Fix(react/utils): Fix the bug where scroll lock will cause layout shifting

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.13.12...@mezzanine-ui/react@0.13.13

v0.14.9

10 Jul 06:55
Compare
Choose a tag to compare
v0.14.9 Pre-release
Pre-release

What's Changed

Project Structure Update:

  • yarn v1 -> v4
  • storybook v7.5.2 -> v7.6.20
  • react v18.2.0 -> v18.3.1
  • rollup typescript plugin update

Storybook Update:

  • use mdx2 (prepare for storybook v8, mdx1 is not available in storybook v8)
  • remove @storybook/addon-onboarding

Feature Update / Bug fixed:

  • Remove react-beautiful-dnd and use @hello-pangea/dnd for drag-n-drop feature instead.
  • Add Drag icon definition for @mezzanine-ui/icons.
  • Fix <Message /> key spread warning.
  • Fix <TableBodyRow /> key spread warning.

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.8...@mezzanine-ui/react@0.14.9

v0.14.8

12 Apr 04:53
Compare
Choose a tag to compare
v0.14.8 Pre-release
Pre-release

What's Changed

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.7...@mezzanine-ui/react@0.14.8

v0.14.5

29 Jan 06:50
Compare
Choose a tag to compare
v0.14.5 Pre-release
Pre-release

What's Changed

  • Fixed a bug where the <Select /> component was unexpectedly closing on mobile devices, ref issue #215
  • Added the weight prop to <Typography />, allowing customization of the font weight.

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/react@0.14.4...@mezzanine-ui/react@0.14.5

v0.14.4

10 Jan 05:11
Compare
Choose a tag to compare
v0.14.4 Pre-release
Pre-release