Releases: marmelab/react-admin
Releases · marmelab/react-admin
v0.6.2
- Fix bad
_endargument forjsonServerREST client - Clarify CORS headers documentation and exception message
- Fix wrong table cell wrap in
<Datagrid> - Add custom layout documentation to Theming chapter
- Fix
<NumberField>when record has no value for the source - Fix
<DateField>for null values
v0.6.1
- Fix notification background colors to use mui theme
- Fix missing
lodash.defaultdeepnot mentioned as dependency
v0.6.0
- [BC Break] The
filterprop of the component now expects an element rather than a component (<List filter={<MyFilter/>} >rather than<List filter={MyFilter} >) - [BC Break] The
titleprop of all view components now expect an element rather than a component (<List title={<MyTitle/>} > rather than<List title={MyTitle} >) - [BC Break] Rename
styletoelStyleand let style override container element - Add special design for non-sortable columns in datagrid
- Add
style,elStyleto all components - Add
headerStyleto Field components (ability to style<th>) - Add
rowStyleto<Datagrid>(ability to style<tr>according to the value) - Add
defaultSortto<Datagrid>(ability to set default sort order on list) - Add
actions,perPage, andpaginationprops to the<List>component - Add List view documentation
- Add
<BooleanField>component - Add
<BooleanInput>component - Add
<NullableBooleanInput>component - Add
<NumberField>component - Add
<FunctionField>component - Align datagrid first column to the page title
- Hide resources in the Menu when they don't have a list view
- Fix warning for fields with no source and no label
- Fix FilterButton for fields without label
v0.5.4
- Document conditional formatting
- Fix node incompatibility error caused by
quillwhen installing withyarn(tinhnguyen-ea) - Fix pagination when the number of pages exceeds 8
- Fix React 14.4 compatibility by updating
react-tap-eventdependency (petetnt) - Fix regression in material UI Popover
- Update dependencies (
react,material-ui,redux-form,redux-saga)
v0.5.3
- Fix
jsonServerGET_MANYwhen overridinghtpClient(aceofspades) - Fix bad refresh of list after create, update, and delete
- Fix unstable state after create, update, and delete
v0.5.2
- Fix
<SelectInput>subcomponent key in case of duplicate value (rweindl) - Fix
make test-watchcommand - Fix datagrid margins to accomodate more content
- Fix cannot set empty value on
<ReferenceInput/> - Fix bad error message in
restClientwhen no count header is found - Fix Infinite loop when two menu clicked quickly
- Fix Warning when Datagrid contains two action buttons
- Add ability to intercept HTTP request and add custom headers
v0.5.1
- Fix bad built files
v0.5.0
See the v0.5.0 announcement in the marmelab blog.
- [BC Break] Remove
credentials: includeHTTP option enabled by default - Add
<Show>View - Add custom headers support
- Add support for the
styleattribute in all components - Add Theming Documentation (by MattWilliamsDev)
- Update the
<Datagrid>to use real tables (and auto-size columns) - Upgrade to material-ui 0.16
- Update package to bundle quill
- Export more components and functions to ease customization
- Fix multiple ReferenceFields in a list incorrectly loads data
- Fix spinner not stopping after delete
- Fix Router now scrolls to top
- Fix
<RadioButtonGroupInput> - Fix datagrid layout to make columns adapt width to content
- Fix doc on reducers in CustomApp (by ArnaudD)
- Fix custom app docs now that redux form is required
- Fix RadioButtonGroupInput
- Fix Pagination when list has no filter
- Fix clearing text filter doesn't fetch the unfiltered list
- Fix Warning when Datagrid contains two action buttons
v0.4.0
- [BC Break] Pass Headers object to
restClient - Add loads of documentation
- Use
sourceas implicitlabelin fields and input components - Add
<RichTextField>and<RichTextInput>components (powered by quill) - Add
<UrlField>component - Add Form Validation in
<Edit>and<Create>views (powered by redux-form) - Add material-ui theme support in the
<Admin>component (by fnberta) - Add option to show date with time (by fnberta)
- Add UUID support (by bjet007)
- Add deep field selection
- Add unit tests
- Fix form display issue when single or no fields
- Fix and speedup filters
- Fix create form
- Fix filter value reset when filter is removed
v0.3.0
See the v0.3.0 announcement post in the marmelab blog.
- [BC Break]
<List>takes an iterator child (like<Datagrid>) - [BC Break]
<ReferenceField>replacesreferenceSourceby a child field - [BC Break]
<ReferenceInput>replacesreferenceSourceby a child input - [BC Break] Rename
fetchJSONtofetchJson - Switch FakeRest as an external dependency
- Add ability to customize admin title
- Add
<Labeled>component, and introduce theincludesLabelprop on inputs - Add
<SingleFieldList>and<ChipField>components - Add
<ReferenceManyField>component and related reducer logic - Add
<RadioButtonGroupInput>component - Add
<SelectInput>component - Add notifications
- Add Custom App doc