Skip to content

Releases: Mezzanine-UI/mezzanine

v0.12.7

14 Jun 06:32
Compare
Choose a tag to compare
v0.12.7 Pre-release
Pre-release

What's Changed

  • <Table /> should hide action icon when props.rowSelection is given but props.rowSelection.actions is undefined.

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.6

08 Jun 03:30
Compare
Choose a tag to compare
v0.12.6 Pre-release
Pre-release

What's Changed

  • fix(react/modal-actions): modal-actions loading priority, closed #190 by @ngnl666 in #194

New Contributors

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.5

08 May 09:27
Compare
Choose a tag to compare
v0.12.5 Pre-release
Pre-release

What's Changed

  • <UploadPictureWall />, <UploadPicture /> add defaultUploadErrorLabel, defaultUploadingLabel, defaultUploadLabel for label customization (i18n issue)

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.4

10 Mar 06:38
Compare
Choose a tag to compare
v0.12.4 Pre-release
Pre-release

What's Changed

  • Fix <Select> popper menu display bug when disablePortal is true.

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.3

02 Mar 01:45
Compare
Choose a tag to compare
v0.12.3 Pre-release
Pre-release

What's Changed

  • <Autocomplete> support case-insensitive search

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.2

20 Feb 06:17
Compare
Choose a tag to compare
v0.12.2 Pre-release
Pre-release

What's Changed

  • add icons that defined in figma, please see Icons storybook for detail.
  • workaround for body scroll lock

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.1

06 Feb 04:14
Compare
Choose a tag to compare
v0.12.1 Pre-release
Pre-release

What's Changed

@mezzanine-ui/react v0.12.1

  • fix calendar year offset bug

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.12.0

16 Nov 08:25
Compare
Choose a tag to compare
v0.12.0 Pre-release
Pre-release

What's Changed

@mezzanine-ui/react v0.12.0

BREAKING CHANGES

  • <Table /> column.render refactor

previously:

columns={[{
  render: (column, rowData, index) => `${rowData.data}`,
}]}

currently:

columns={[{
  render: (rowData, index, column) => `${rowData.data}`,
}]}

The reason why we do refactor is that we found column is not needed at most times, and row data is what user concern about mostly.

Other Changes

  • <Table /> expandedRowRender allow render ReactNode type, which means the codes below are available now:
expandable={{
  expandedRowRender: (rowData) => (
    <div>MY CUSTOM EXPAND ROW</div>
  ),
}}
  • <Table /> pagination.options implement all Pagination props now.
  • <Table /> add pagination.options.renderPagingationSummary to customize left side pagination summary.
  • <Pagination /> add <PaginationPageSize /> and all the component props to implement "change page size" feature

@mezzanine-ui/core v0.12.0

  • Fix style linter issues
  • add PaginationPageSize style

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.11.3

08 Nov 08:44
Compare
Choose a tag to compare
v0.11.3 Pre-release
Pre-release

What's Changed

@mezzanine-ui/react v0.11.3

  • <NavigationSubMenu /> add defaultOpen #182
  • <UploadPictureWall /> add fileHost #173
  • Fix: TextField / Select Trigger should stop propagation when clicked

@mezzanine-ui/core v0.11.3

  • Fix: upload block image should fit container size

Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]

v0.11.2

28 Sep 02:19
Compare
Choose a tag to compare