-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request