gantri-components 2.250.1 → 2.251.0

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.
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ /**
3
+ * Z-index of the enclosing Modal container. Consumed by descendant
4
+ * popovers (Overlay-based Dropdowns, Tooltips, SearchField menus, etc.)
5
+ * so their portal-rendered content layers above the modal's stacking
6
+ * context instead of disappearing behind it.
7
+ *
8
+ * `null` when not inside a Modal — descendants fall back to their
9
+ * default z-index behavior.
10
+ */
11
+ export declare const ModalStackingContext: import("react").Context<number | null>;