.date-input-container
  input(
    attrs={
      type: `text`,
      placeholder: dateObj ? $helpers.formatDate(dateObj) : ``,
    }
    class={
      error: $component.isAttributeEnabled(`error`)
    }
    on={
      focus: $helpers.focusedInput,
      blur: $helpers.blurredInput,
      change: $helpers.changedInput,
    }
  )
