/** * Declarative z-index tokens. * * Intra-input stacking: * * - `z-input-field` → native field / interactive foreground (e.g. an * `` or trigger button) sitting above the * input's own background surface, icons, and * adornments so keyboard/mouse focus is never * hijacked by a decorative sibling. * - `z-input-popup` → inline (non-teleported) overlays anchored to the * input — dropdown menus, option lists, popovers — * that must sit above surrounding form content but * within the current stacking context. * - `z-input-overlay` → teleported overlays (rendered under `` via * ``) that must clear application chrome * such as drawers, modals, and fixed headers. * * Values are intentionally small and well-spaced to make future additions * obvious. Consume as `z-[var(--z-input-*)]` in components — do not * introduce ad-hoc numeric z-index in input `.vue` files. */ export const zIndicesData: { 'z-input-field': { _: string; }; 'z-input-popup': { _: string; }; 'z-input-overlay': { _: string; }; }; declare namespace _default { export { zIndicesData }; } export default _default; //# sourceMappingURL=z-indices.data.d.ts.map