File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
components/Playground/editor-types Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -382,6 +382,7 @@ interface GCAction {
382
382
entities : [ string , string ] [ ] ;
383
383
endpoints : string [ ] ;
384
384
}
385
+ /** @see https://dataclient.io/docs/api/Actions */
385
386
type ActionTypes = FetchAction | OptimisticAction | SetAction | SetResponseAction | SubscribeAction | UnsubscribeAction | InvalidateAction | InvalidateAllAction | ExpireAllAction | ResetAction | GCAction ;
386
387
387
388
type Dispatch < Actions = ActionTypes > = ( value : Actions ) => Promise < void > ;
Original file line number Diff line number Diff line change @@ -2428,9 +2428,9 @@ declare namespace React {
2428
2428
// Keyboard Events
2429
2429
onKeyDown ?: KeyboardEventHandler < T > | undefined ;
2430
2430
onKeyDownCapture ?: KeyboardEventHandler < T > | undefined ;
2431
- /** @deprecated */
2431
+ /** @deprecated Use `onKeyUp` or `onKeyDown` instead */
2432
2432
onKeyPress ?: KeyboardEventHandler < T > | undefined ;
2433
- /** @deprecated */
2433
+ /** @deprecated Use `onKeyUpCapture` or `onKeyDownCapture` instead */
2434
2434
onKeyPressCapture ?: KeyboardEventHandler < T > | undefined ;
2435
2435
onKeyUp ?: KeyboardEventHandler < T > | undefined ;
2436
2436
onKeyUpCapture ?: KeyboardEventHandler < T > | undefined ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export default function DemoList() {
9
9
return (
10
10
< Layout
11
11
title = "React Suspense Demos"
12
- description = "Reactive Data Client Suspense Demos "
12
+ description = "Examples demonstrating high performance scalable applications using REST, GraphQL and Websockets "
13
13
>
14
14
< Tabs
15
15
defaultValue = "todo"
You can’t perform that action at this time.
0 commit comments