public checkFieldsExistence()

in src/services/form-validation/FormValidationService.ts [240:248]


  public checkFieldsExistence(formSchemaInput: Readonly<FormSchema>, fields: string[]): Map<string, boolean> {
    const result: Map<string, boolean> = new Map();
    fields.forEach((field) => {
      if (!result.has(field)) {
        result.set(field, !!this._findComponentInComponents(formSchemaInput.components, field));
      }
    });
    return result;
  }