import React, {FC} from "react"; import {fieldsCache} from "../FieldsCache"; import classNames from "classnames"; export type InclusionValueValidatorListProps = { options: any/*InclusionValueValidatorOptions*/ } export const InclusionValueValidatorList: FC = ({options: {inclusionType, expectedValues}}) => { return
1, })}> {expectedValues.map((value, index) => { return
{false && expectedValues.length > 1 && (inclusionType === 'allowed'? : )} {fieldsCache.get(value)?.label || '?'}
})}
}