UNPKG

form-functionality-library

Version:

A modular, flexible form functionality library for Webflow forms supporting single-step, multi-step, and branching forms

17 lines 523 B
/** * ULTRA-MINIMAL Multi-step navigation - Zero Legacy Code * Focus: Show target step, hide all others. Nothing else. */ /** * ULTRA-MINIMAL: Initialize with zero complexity */ export declare function initMultiStepClean(root?: Document | Element): void; /** * ULTRA-MINIMAL: Go to step by ID */ export declare function goToStepByIdClean(stepId: string): void; /** * ULTRA-MINIMAL: Get current state */ export declare function getCleanState(): Record<string, unknown>; //# sourceMappingURL=multiStep-clean.d.ts.map