( uischema: UISchemaElement, data: any, path: string, ajv: Ajv, config: unknown )
| 108 | }; |
| 109 | |
| 110 | const isRuleFulfilled = ( |
| 111 | uischema: UISchemaElement, |
| 112 | data: any, |
| 113 | path: string, |
| 114 | ajv: Ajv, |
| 115 | config: unknown |
| 116 | ): boolean => { |
| 117 | const condition = uischema.rule.condition; |
| 118 | return evaluateCondition(data, uischema, condition, path, ajv, config); |
| 119 | }; |
| 120 | |
| 121 | export const evalVisibility = ( |
| 122 | uischema: UISchemaElement, |
no test coverage detected
searching dependent graphs…