@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 +3 -1
- package/dist/index.js +14 -4819
- package/dist/index.js.map +1 -1
- package/package.json +4 -10
- package/dist/index.cjs +0 -4858
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -680
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
|
-
*
|
|
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
|
|