Releases: marmelab/react-admin
Releases · marmelab/react-admin
v0.8.4
- Fix
defaultValue
assignment for nested resource attributes (cytomich) - Fix typo in Inputs documentation (FallDi)
- Fix Custom App install instructions
- Add Hebrew translation link (mstmustisnt)
- Add link to Feathers
restClient
(josx)
v0.8.3
- Fix Edit view shows stale data
- Fix anchor typo on documentation index (szappacosta)
- Fix missing import in the Getting Started tutorial (SilentKernel)
- Add demo video in doc and GitHub homepage
- Add Russian translation link (cytomich)
v0.8.2
- Fix scroll to top during navigation when auth is disabled
- Fix fetch saga to avoid mutating actions
- Fix custom app documentation
- Fix SelectInput arrow click hides input
- Fix missing status in fetch when error is thrown (wadjeroudi)
- Remove documentation images from package
- Add Chinese translation link (downup2u)
- Add German translation link (der-On)
- Add link to powershell script for building (mantis)
v0.8.1
v0.8.0
Read the v0.8 announcement in the marmelab blog
- [BC Break] Rename
defaultSort
prop tosort
in<List>
component, to make it consistent with the props of<ReferenceInput>
and<ReferenceManyField>
- [BC Break] Rename
filter
props (the one accepting a<Filter>
element) tofilters
in<List>
component - Add I18n
- Add Authentication
- Add
<ImageField>
and<ImageInput>
to upload images - Add
<CheckboxGroupInput>
component - Add the ability to hook up custom sagas in
<Admin>
- Add the ability to hook up custom reducers in
<Admin>
- Add
filter
prop to<List>
component for permanent filters - Add support for
defaultValue
in filters - Add support for functions as value for the
defaultValue
prop - Add ability to disable sorting on datagrid headers
- Add
perPage
,sort
, andfilter
props to ``` - Add
label
prop to all buttons - Add Custom Actions documentation
- Add CSS prefix to flex-box elements (yshing)
- Improve Delete button labels
- Update optimistic rendering to also work with custom fetch actions
- Speed up
<Datagrid>
rendering - Refactor response side effects to a normal saga
- Upgrade
redux-saga
to v0.14.2 - Fix disconnection on dashboard
- Fix edge case where list filter isn't shown
- Fix validation for
<AutocompleteInput>
,<ReferenceInput>
, and<SelectInput>
(AkselsLedins)
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-input
instead - [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_MATCHING
REST 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: true
to get it - [BC Break] Custom input elements are not decorated by
<Labeled>
by default, setaddLabel: true
to get it - [BC Break] Rename
includesField: true
toaddField: false
for Input components - [BC Break] Rename
includesLabel: true
toaddLabel: false
for 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
Edit
orCreate
element - 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
perPage
prop to<ReferenceInput>
to allow fetching more or less options - Add a
sort
prop to<ReferenceInput>
to allow sorting of options - Add support for function as
optionText
value in<SelectInput>
,<RadioButtonGroupInput>
, and<AutocompleteInput>
- Add support for element as
optionText
value 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/addField
decoration logic - Use Json REST client (http-less client) in example
- Set
allowEmpty
to true by default inFilter
form (was breaking<ReferenceInput>
in filters by default) - Fix bad setup of
ReferenceInput
value in filters - Fix
<SavedButton>
in case of invalid form (was spinning forever)
v0.6.2
- Fix bad
_end
argument forjsonServer
REST 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.defaultdeep
not mentioned as dependency