Skip to content

Commit 009d8ec

Browse files
committed
docs: Update demo page description
1 parent 2b10a49 commit 009d8ec

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

website/src/components/Playground/editor-types/@data-client/core.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ interface GCAction {
382382
entities: [string, string][];
383383
endpoints: string[];
384384
}
385+
/** @see https://dataclient.io/docs/api/Actions */
385386
type ActionTypes = FetchAction | OptimisticAction | SetAction | SetResponseAction | SubscribeAction | UnsubscribeAction | InvalidateAction | InvalidateAllAction | ExpireAllAction | ResetAction | GCAction;
386387

387388
type Dispatch<Actions = ActionTypes> = (value: Actions) => Promise<void>;

website/src/components/Playground/editor-types/react.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2428,9 +2428,9 @@ declare namespace React {
24282428
// Keyboard Events
24292429
onKeyDown?: KeyboardEventHandler<T> | undefined;
24302430
onKeyDownCapture?: KeyboardEventHandler<T> | undefined;
2431-
/** @deprecated */
2431+
/** @deprecated Use `onKeyUp` or `onKeyDown` instead */
24322432
onKeyPress?: KeyboardEventHandler<T> | undefined;
2433-
/** @deprecated */
2433+
/** @deprecated Use `onKeyUpCapture` or `onKeyDownCapture` instead */
24342434
onKeyPressCapture?: KeyboardEventHandler<T> | undefined;
24352435
onKeyUp?: KeyboardEventHandler<T> | undefined;
24362436
onKeyUpCapture?: KeyboardEventHandler<T> | undefined;

website/src/pages/demos.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function DemoList() {
99
return (
1010
<Layout
1111
title="React Suspense Demos"
12-
description="Reactive Data Client Suspense Demos"
12+
description="Examples demonstrating high performance scalable applications using REST, GraphQL and Websockets"
1313
>
1414
<Tabs
1515
defaultValue="todo"

0 commit comments

Comments
 (0)