You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Features.md
+33
Original file line number
Diff line number
Diff line change
@@ -678,6 +678,39 @@ const CustomerEdit = () => (
678
678
679
679
And if you want something super custom that react-admin doesn't support out of the box, you can always use [react-hook-form](https://react-hook-form.com/) directly.
680
680
681
+
## AI-Powered Components
682
+
683
+
React-admin leverages recent breakthroughs in AI to **boost developer productivity**.
684
+
685
+
One example is [`<PredictiveTextInput>`](./PredictiveTextInput.md), which suggests completion for the input value, using your favorite AI backend. Users can accept the completion by pressing the `Tab` key. It's like Intellisense or Copilot for your forms.
See [the `<PredictiveTextInput>` documentation](./PredictiveTextInput.md) for more details.
713
+
681
714
## Optimistic Updates And Undo
682
715
683
716
When a user edits a record and hits the "Save" button, the UI shows a confirmation and displays the updated data *before sending the update query to the server*. The main benefit is that UI changes are immediate - **no need to wait for the server response**. It's a great comfort for users.
0 commit comments