Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to >= v3.0.2 #18

Open
kopax opened this issue Nov 26, 2019 · 0 comments
Open

Upgrade to >= v3.0.2 #18

kopax opened this issue Nov 26, 2019 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@kopax
Copy link
Contributor

kopax commented Nov 26, 2019

react-admin v3 as been released, this ticket consist of upgrading react-admin version to >3.0.2

PR: #19

List of components (WIP)

  • src/components/
  • ├── auth
  • │ ├── index.js
  • │ ├── LoginForm.js
  • │ ├── Login.js
  • │ └── Logout.js
  • ├── button
  • │ ├── BulkDeleteButton.js
  • │ ├── BulkDeleteWithConfirmButton.js
  • │ ├── BulkDeleteWithUndoButton.js
  • │ ├── Button.js
  • │ ├── CloneButton.js
  • │ ├── CreateButton.js
  • │ ├── DeleteButton.js
  • │ ├── DeleteWithConfirmButton.js
  • │ ├── DeleteWithUndoButton.js
  • │ ├── EditButton.js
  • │ ├── ExportButton.js
  • │ ├── index.js
  • │ ├── ListButton.js
  • │ ├── RefreshButton.js
  • │ ├── RefreshIconButton.js
  • │ ├── SaveButton.js
  • │ ├── ShowButton.js
  • │ └── tests
  • │ ├── CloneButton.test.js
  • │ ├── ExportButton.test.js
  • │ └── SaveButton.test.js
  • ├── detail
  • │ ├── CreateActions.js
  • │ ├── Create.js
  • │ ├── EditActions.js
  • │ ├── editFieldTypes.js
  • │ ├── EditGuesser.js
  • │ ├── Edit.js
  • │ ├── index.js
  • │ ├── ShowActions.js
  • │ ├── showFieldTypes.js
  • │ ├── ShowGuesser.js
  • │ ├── Show.js
  • │ ├── SimpleShowLayout.js
  • │ ├── TabbedShowLayout.js
  • │ ├── TabbedShowLayoutTabs.js
  • │ ├── Tab.js
  • │ └── tests
  • │ ├── Create.test.js
  • │ ├── Edit.test.js
  • │ ├── Show.test.js
  • │ └── SimpleShowLayout.test.js
  • ├── extendMui
  • │ ├── AppBar
  • │ │ └── index.js
  • │ ├── Avatar
  • │ │ └── index.js
  • │ ├── index.js
  • │ ├── Portal
  • │ │ └── index.js
  • │ ├── SelectMutiple
  • │ │ ├── index.js
  • │ │ └── theme.js
  • │ └── withWidth
  • │ ├── index.js
  • │ └── theme.js
  • ├── field
  • │ ├── ArrayField.js
  • │ ├── BooleanField.js
  • │ ├── ChipField.js
  • │ ├── DateField.js
  • │ ├── EmailField.js
  • │ ├── FileField.js
  • │ ├── FunctionField.js
  • │ ├── ImageField.js
  • │ ├── index.js
  • │ ├── NumberField.js
  • │ ├── ReferenceArrayField.js
  • │ ├── ReferenceField.js
  • │ ├── ReferenceManyField.js
  • │ ├── RichTextField.js
  • │ ├── sanitizeRestProps.js
  • │ ├── SelectField.js
  • │ ├── tests
  • │ │ ├── ArrayField.test.js
  • │ │ ├── BooleanField.test.js
  • │ │ ├── ChipField.test.js
  • │ │ ├── DateField.test.js
  • │ │ ├── EmailField.test.js
  • │ │ ├── FileField.test.js
  • │ │ ├── FunctionField.test.js
  • │ │ ├── ImageField.test.js
  • │ │ ├── NumberField.test.js
  • │ │ ├── ReferenceArrayField.test.js
  • │ │ ├── ReferenceField.test.js
  • │ │ ├── ReferenceManyField.test.js
  • │ │ ├── RichTextField.test.js
  • │ │ ├── SelectField.test.js
  • │ │ ├── TextField.test.js
  • │ │ └── UrlField.test.js
  • │ ├── TextField.js
  • │ ├── types.js
  • │ └── UrlField.js
  • ├── form
  • │ ├── FormInput.js
  • │ ├── FormTab.js
  • │ ├── getFormInitialValues.js
  • │ ├── index.js
  • │ ├── SimpleFormIterator.js
  • │ ├── SimpleForm.js
  • │ ├── TabbedForm.js
  • │ ├── tests
  • │ │ ├── SimpleForm.test.js
  • │ │ └── TabbedForm.test.js
  • │ └── Toolbar.js
  • ├── index.js
  • ├── input
  • │ ├── ArrayInput.js
  • │ ├── AutocompleteArrayInputChip.js
  • │ ├── AutocompleteArrayInput.js
  • │ ├── AutocompleteInput.js
  • │ ├── BooleanInput.js
  • │ ├── CheckboxGroupInput.js
  • │ ├── DateInput.js
  • │ ├── DateTimeInput.js
  • │ ├── DisabledInput.js
  • │ ├── FileInput.js
  • │ ├── FileInputPreview.js
  • │ ├── ImageInput.js
  • │ ├── ImageInputPreview.js
  • │ ├── index.js
  • │ ├── InputHelperText.js
  • │ ├── InputPropTypes.js
  • │ ├── Labeled.js
  • │ ├── LongTextInput.js
  • │ ├── NullableBooleanInput.js
  • │ ├── NumberInput.js
  • │ ├── RadioButtonGroupInput.js
  • │ ├── ReferenceArrayInput.js
  • │ ├── ReferenceError.js
  • │ ├── ReferenceInput.js
  • │ ├── ResettableTextField.js
  • │ ├── sanitizeRestProps.js
  • │ ├── SearchInput.js
  • │ ├── SelectArrayInput.js
  • │ ├── SelectInput.js
  • │ ├── tests
  • │ │ ├── ArrayInput.test.js
  • │ │ ├── AutocompleteArrayInput.test.js
  • │ │ ├── AutocompleteInput.test.js
  • │ │ ├── BooleanInput.test.js
  • │ │ ├── CheckboxGroupInput.test.js
  • │ │ ├── DateInput.test.js
  • │ │ ├── FileInputPreview.test.js
  • │ │ ├── FileInput.test.js
  • │ │ ├── ImageInput.test.js
  • │ │ ├── LongTextInput.test.js
  • │ │ ├── InputHelperText.test.js
  • │ │ ├── NullableBooleanInput.test.js
  • │ │ ├── NumberInput.test.js
  • │ │ ├── RadioButtonGroupInput.test.js
  • │ │ ├── ReferenceArrayInput.test.js
  • │ │ ├── ReferenceInput.test.js
  • │ │ ├── SelectArrayInput.test.js
  • │ │ ├── SelectInput.test.js
  • │ │ └── TextInput.test.js
  • │ └── TextInput.js
  • ├── layout
  • │ ├── AppBar.js
  • │ ├── AppBarMobile.js
  • │ ├── CardActions.js
  • │ ├── CardContentInner.js
  • │ ├── CardContent.js
  • │ ├── Confirm.js
  • │ ├── DashboardMenuItem.js
  • │ ├── Error.js
  • │ ├── Header.js
  • │ ├── Headroom.js
  • │ ├── index.js
  • │ ├── Layout.js
  • │ ├── LinearProgress.js
  • │ ├── LoadingIndicator.js
  • │ ├── Loading.js
  • │ ├── MenuItemLink.js
  • │ ├── Menu.js
  • │ ├── NotFound.js
  • │ ├── Notification.js
  • │ ├── RecordTitle.js
  • │ ├── Responsive.js
  • │ ├── Sidebar.js
  • │ ├── tests
  • │ │ └── Responsive.test.js
  • │ ├── TitleDeprecated.js
  • │ ├── TitleForRecord.js
  • │ ├── Title.js
  • │ ├── UserMenu.js
  • │ └── ViewTitle.js
  • ├── Link.js
  • ├── list
  • │ ├── BulkActions.js
  • │ ├── BulkActionsToolbar.js
  • │ ├── BulkDeleteAction.js
  • │ ├── DatagridBody.js
  • │ ├── DatagridCell.js
  • │ ├── DatagridHeaderCell.js
  • │ ├── Datagrid.js
  • │ ├── DatagridLoading.js
  • │ ├── DatagridRow.js
  • │ ├── FilterButton.js
  • │ ├── FilterButtonMenuItem.js
  • │ ├── FilterFormInput.js
  • │ ├── FilterForm.js
  • │ ├── Filter.js
  • │ ├── index.js
  • │ ├── ListActions.js
  • │ ├── listFieldTypes.js
  • │ ├── ListGuesser.js
  • │ ├── List.js
  • │ ├── ListToolbar.js
  • │ ├── PaginationActions.js
  • │ ├── Pagination.js
  • │ ├── PaginationLimit.js
  • │ ├── SimpleList.js
  • │ ├── SingleFieldList.js
  • │ └── tests
  • │ ├── DatagridCell.test.js
  • │ ├── DatagridHeaderCell.test.js
  • │ ├── FilterForm.test.js
  • │ ├── Filter.test.js
  • │ ├── List.test.js
  • │ ├── PaginationActions.test.js
  • │ ├── Pagination.test.js
  • │ └── SingleFieldList.test.js
  • └── theme.js

Related issues

@kopax kopax added the enhancement New feature or request label Nov 26, 2019
@kopax kopax self-assigned this Nov 26, 2019
@kopax kopax mentioned this issue Nov 26, 2019
7 tasks
@kopax kopax changed the title Upgrade to v3.0.1 Upgrade to v3.0.2 Nov 29, 2019
@kopax kopax changed the title Upgrade to v3.0.2 Upgrade to >= v3.0.2 Nov 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant