Popup Card with time input row

Hi, can anyone help me with popup-card/time-input-row. I have popup-card installed by the instructions on thomasloven githubpage. There was no mentioning about needing the time-input-row but i assumed that it also needs to be installed. The problem is that there is no instructions on how to install it. I just added it to my resources as a type: js. When i go and click my popupcard i get this:

resources:
  - type: js
    url: /local/card-tools.js?v=0.1
  - type: js
    url: /local/popup-card.js?v=0.1
  - type: js
    url: /local/time-input-row.js?v=0.1

- cards:
      - entities:
          - light.tvled
        type: entities
    icon: 'mdi:home-assistant'
    popup_cards:
      light.tvled:
        card:
          entities:
            - light.tvled
            - entity: input_datetime.on_time
              type: 'custom:time-input-row'
            - entity: input_datetime.off_time
              type: 'custom:time-input-row'
            - input_boolean.weekdays_only
          type: entities
        title: TVLED settings
    title: My view

and this i have in my configuration.yaml file

input_datetime:
  both_date_and_time:
    name: Input with both date and time
    has_date: true
    has_time: true
  only_date:
    name: Input with only date
    has_date: true
    has_time: false
  only_time:
    name: Input with only time
    has_date: false
    has_time: true

@thomasloven
I also join the question
Boolean variables should be made
So that they are entities
input_datetime.on_time
input_datetime.off_time
input_boolean.weekdays_only

But I do not know how to do it

Well. the EXAMPLE configuration in the github readme is the code required to (as is stated) produce the screenshot at the top of that page.

If you want your tv to turn on and off at set times, and only at weekdays - that’s outside the scope of popup-card.

@thomasloven
Well I understood thank you very much.
I appreciate all your work and support