Releases: marmelab/react-admin
Releases · marmelab/react-admin
v0.7.2
- Fix code snippets disappearing from documentation
- Add mention of aor-postgrest-client in REST clients documentation
- Fix missed refresh in example due to aor-json-rest-client not cloning the objects
- Fix Refresh button doesn't refresh References
- Fix pagination error in console during load
v0.7.1
- Fix validation on nested fields
- Fix validation when passed as
<Input>prop in<TabbedForm>component - Fix endless spinning
<SaveButton>upon error
v0.7.0
See the V0.7.0 announcement in the marmelab blog.
- [BC Break] Remove
<RichTextInput>from core, useaor-rich-text-inputinstead - [BC Break] Introduce
<SimpleForm>component between<Edit>/<Create>and input components - [BC Break] Introduce
<SimpleShowLayout>component between<Show>and field components - [BC Break] Remove
GET_MATCHINGREST verb (and merge withGET_LIST) - [BC Break] Add a limit to the fetching of
<ReferenceInput>(set to 25 by default) - [BC Break] Custom input elements are not decorated by
<Field>by default, setaddField: trueto get it - [BC Break] Custom input elements are not decorated by
<Labeled>by default, setaddLabel: trueto get it - [BC Break] Rename
includesField: truetoaddField: falsefor Input components - [BC Break] Rename
includesLabel: truetoaddLabel: falsefor Input components - [BC Break] All Redux action creators are now exported at the root level
- Introduce
<TabbedForm>component as an example of alternative form layout - Add
<AutocompleteInput>field - Add
<NumberInput>field - Add ability to use any React component (including Fields) as
EditorCreateelement - Add support for locales and options in
<DateField> - Add animation on click in
<SaveButton> - Add Refresh button in
<Edit>view - Add support for defaultValue in
<Create>and<Edit>components - Add support for defaultValue in
<Input>components - Add support for actions in
<Create>and<Edit>components - Add a
perPageprop to<ReferenceInput>to allow fetching more or less options - Add a
sortprop to<ReferenceInput>to allow sorting of options - Add support for function as
optionTextvalue in<SelectInput>,<RadioButtonGroupInput>, and<AutocompleteInput> - Add support for element as
optionTextvalue in<SelectInput>, and<RadioButtonGroupInput> - Add double submission protection in
<SaveButton> - Add trigger to hide
<Edit>view title until record is loaded - Add support for special chars like "/" in id (dunglas)
- Add
<FormField>component to allow reuse of theaddLabel/addFielddecoration logic - Use Json REST client (http-less client) in example
- Set
allowEmptyto true by default inFilterform (was breaking<ReferenceInput>in filters by default) - Fix bad setup of
ReferenceInputvalue in filters - Fix
<SavedButton>in case of invalid form (was spinning forever)
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