@nick-skriabin/glyph 0.1.37 → 0.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -493,7 +493,9 @@ interface JumpNavProps {
493
493
  * Press the activation key (default: Ctrl+O) to show hints next to each
494
494
  * focusable element, then press the hint key to jump to that element.
495
495
  *
496
- * When nested, only the innermost JumpNav will respond to the activation key.
496
+ * JumpNav is trap-aware: it automatically only shows hints for elements
497
+ * in the current FocusScope trap (e.g., a modal). You only need ONE JumpNav
498
+ * at the root of your app.
497
499
  */
498
500
  declare function JumpNav({ children, activationKey, hintStyle, hintBg, hintFg, hintChars, enabled, debug, }: JumpNavProps): React.JSX.Element;
499
501