From 9140ee51b3109b97346cda083714e0b13b1270cf Mon Sep 17 00:00:00 2001 From: Vance Ingalls Date: Tue, 30 Jun 2026 15:37:39 -0700 Subject: [PATCH] docs(sdk): pin editing-affordances availability to @hyperframes/sdk@0.7.22 Concrete version now that the /editing subpath shipped in v0.7.22 (review follow-up). Also forces a fresh Mintlify build to register the new SDK tab. Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/sdk/guides/editing-affordances.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sdk/guides/editing-affordances.mdx b/docs/sdk/guides/editing-affordances.mdx index 93c5123cd..f99496f34 100644 --- a/docs/sdk/guides/editing-affordances.mdx +++ b/docs/sdk/guides/editing-affordances.mdx @@ -6,7 +6,7 @@ description: "Resolve capability flags and inspector sections for a selected ele `resolveElementAffordances` answers the question "what can the user do with this element right now?" given a live DOM element and its SDK model entry. It returns two objects: `capabilities` (boolean flags for each edit action) and `sections` (which inspector panels apply). You use these to conditionally render controls in your editor's detail panel rather than showing a fixed field set for all elements. - This API lives on the `@hyperframes/sdk/editing` subpath, added in the editing-affordances change (merged to `main`). It is available in any `@hyperframes/sdk` build cut from `main` after that merge — if the import fails to resolve, upgrade to the latest `0.7.x`. + This API lives on the `@hyperframes/sdk/editing` subpath, available since `@hyperframes/sdk@0.7.22`. If the import fails to resolve, upgrade: `npm install @hyperframes/sdk@latest`. ## Import