extended-dynamic-forms
Version:
Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events
11 lines (9 loc) • 425 B
TypeScript
import { ConditionalRule } from '../types';
/**
* Smart transformation of JSON Rules Engine rules to internal format
*
* Handles show/hide pairs intelligently by converting them to single remove rules
* Also handles rules that are already in internal format
*/
export declare function smartTransformJsonRulesEngine(rules: any[]): ConditionalRule[];
export { smartTransformJsonRulesEngine as transformJsonRulesEngine };