将无效通知传递给 ng2-bootstrap 的时间选择器

Passing a notice of invalidation to ng2-bootstrap's Timepicker

我正在使用 ng2-bootstrap 的 timepicker 组件。我有自己的由 ngModelChange() 事件触发的验证函数。现在 timepicker 组件本身有自己的验证器(例如当模型超过 mix/max 值时)并且使用 .has-error class 显示错误。如果我自己进行验证,如何通知 timepicker 组件它无效?

查看 https://github.com/valor-software/ng2-bootstrap/blob/development/components/timepicker/timepicker.component.ts 处的组件源,它有两个 public 属性。设置那些应该触发显示错误或不显示错误的组件。

  // validation
  public invalidHours:any;
  public invalidMinutes:any;