Input_datetime: set time "inline"

Hello,
I’m trying to find a way to set the time right in the card instead of having a popup and having to set it in the opened window. Tomas Loven had designed such a component time-input-row. It is said it has been deprecated for 4 years and is now a standard feature.
However I could not find a way to use it as a “standard” feature. What is the status then?
Here is the code I tried that drops an error:

type: entities
entities:
  - entity: input_datetime.id1_morning_start
    type: time-input-row

Thank you

You can add time and date sensors

# Time and Date
sensor:
  - platform: time_date
    display_options:
      - "time"
      - "date"
      - "date_time"
      - "date_time_utc"
      - "date_time_iso"
      - "time_date"
      - "time_utc"
      - "beat"
  - platform: template
    sensors:
      my_date:
        friendly_name: "My Date"
        value_template: >-
          {{ as_timestamp(states('sensor.date_time_iso')) | timestamp_custom('%A %B %-d %Y') }}
      my_time:
        friendly_name: "My Time"
        value_template: >-
          {{ as_timestamp(states('sensor.date_time_iso')) | timestamp_custom('%I:%M %p') }}

Thank you but this is not the request which is to be able to modify the time right in the card where it is displayed (instead of having a pop-up in which the time can be modiifed)

If you show what code you have could make it easier to understand what your after

Could you kindly please visit the link provided in the OP. Thank you

It’s simply


type: entities
entities:
  - entity: input_datetime.id1_morning_start

## or

  - input_datetime.id1_morning_start


I feel sorry because it seems that I did not express myself right. The question is not to related to the display of a time entity in a card, which I know how to do it, the question is to be able to modify the displayed time right in the card as it is explained in the OP and in the link posted in the OP.
Currently, when time is clicked a popup is displayed and time can be modified in the popup window.
If you visit the link posted, I put here again for convenience https://github.com/thomasloven/lovelace-time-input-row, it is said that this option became a standard feature of HA 4 years ago, which does not seem to be the case.
So what is the real status?

I get the idea. input_datetime now is per default displayed as time-input-row formerly did:. I cannot see any difference:

P.S.: You have to click the input field.

Thanks a lot. I now understand why I don’t experience the same behaviour. It is because date and time entities are used inside a custom:multiple-entity-row. In this case when a date or time entity is clicked a popup is raised and then the value can be set.

type: entities
entities:
  - entity: input_datetime.id1_week_morning_start
    show_state: false
    type: custom:multiple-entity-row
    entities:
      - input_datetime.id1_week_morning_stop
      - input_datetime.id1_week_evening_start

So I will raise an issue on Github to see whether this could be changed.
Thanks to everyone for your help in this matter.