Releases: Mezzanine-UI/mezzanine
v0.12.7
What's Changed
<Table />
should hide action icon whenprops.rowSelection
is given butprops.rowSelection.actions
is undefined.
Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]
v0.12.6
What's Changed
New Contributors
Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]
v0.12.5
What's Changed
<UploadPictureWall />
,<UploadPicture />
adddefaultUploadErrorLabel
,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
What's Changed
- Fix
<Select>
popper menu display bug whendisablePortal
is true.
Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]
v0.12.3
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
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
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
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 renderReactNode
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 />
addpagination.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
What's Changed
@mezzanine-ui/react v0.11.3
<NavigationSubMenu />
adddefaultOpen
#182<UploadPictureWall />
addfileHost
#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
What's Changed
- Replace form error icon
Full Changelog: https://github.com/Mezzanine-UI/mezzanine/compare/@mezzanine-ui/[email protected]...@mezzanine-ui/[email protected]